-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
73 lines (62 loc) · 1.13 KB
/
style.css
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
padding: 0;
}
.container{
display: grid;
width: 748px;
height: 748px;
background-color: #000;
grid-template-columns:320px 198px 153px 50px;
grid-template-rows:414px 130px 155px 20px;
gap: 9px;
}
.item{
background-color: #f0f1ec;
}
.white1{
background-color: #f0f1ec;
grid-column: span 3;
}
.white2{
background-color: #f0f1ec;
grid-row: span 2;
}
.white3{
background-color: #f0f1ec;
grid-column: span 2;
grid-row: span 2;
}
.white4{
background-color: #f0f1ec;
grid-row: span 2;
}
.red{
background-color: #E72F24;
}
.blue{
background-color: #004592;
grid-row-start: 2;
grid-row-end: 3;
grid-column-start: 4;
grid-column-end: 5;
border-bottom: 10px solid #000;
}
.black{
background-color: #232629;
grid-row-start: 4;
grid-row-end: 5;
grid-column-start: 3;
grid-column-end: 4;
}
.yellow{
background-color: #F9D01E;
grid-row-start: 4;
grid-row-end: 5;
grid-column-start: 2;
grid-column-end: 3;
}