-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
59 lines (50 loc) · 825 Bytes
/
Copy pathstyle.css
File metadata and controls
59 lines (50 loc) · 825 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
body{
margin: 0;
padding: 0;
background-color: black;
}
#grid{
display: grid;
grid-template-columns: 1fr 2fr 1fr 1fr;
grid-template-rows: repeat(2, 1fr);
grid-auto-columns: 1fr;
grid-auto-rows: 1fr;
height: 500px;
width: 90%;
margin: auto;
background-color: #fff;
}
#grid div{
text-align: center;
padding: 20px;
font-size: 1.6rem;
font-weight: bold;
border: 1px solid black;
}
.one{
background-color: #f90;
}
.two{
background-color: #fc0;
}
.three{
background-color: #f96;
}
.four{
background-color: #fc6;
grid-column: 4/span 2;
}
.five{
background-color: #f90;
grid-row: 2/span 3;
}
.six{
background-color: #fc0;
grid-row: 2/span 4;
}
.seven{
background-color: #f96;
}
.eight{
background-color: #fc6;
}