-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbox2.css
More file actions
35 lines (34 loc) · 779 Bytes
/
box2.css
File metadata and controls
35 lines (34 loc) · 779 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
.one{
background-color: black;
color: white;
border-radius: 12px;
text-align: center;
padding-top: 12px;
padding-bottom: 12px;
grid-row: span 1;
grid-column: span 1;
}
.two{
background-color: gray;
color: white;
border-radius: 12px;
text-align: center;
padding-top: 12px;
grid-row:span 2 ;
grid-column: span 2;
}
.three{
background-color: rgb(173, 171, 171);
color: white;
border-radius:12px;
text-align: center;
padding-top: 12px;
padding-bottom: 12px;
grid-row: span 3;
grid-column: span 3;
}
.container{
display: grid;
grid-template-columns:100px 100px 100px 100px 100px 100px ;
grid-template-rows:100px 100px 100px 100px 100px 100px ;
}