-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
61 lines (57 loc) · 1.09 KB
/
style.css
File metadata and controls
61 lines (57 loc) · 1.09 KB
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
body {
display: flex;
height: 100vh;
justify-content: center;
align-items: center;
}
.container {
width: 748px;
height: 748px;
background-color: #000;
display: grid;
grid-template-columns: 320px 198px 153px 50px;
grid-template-rows: 414px 130px 1fr 20px ;
gap:9px;
}
.cub1 {
background-color: #E72F24;
}
.cub2 {
background-color: #F0F1EC;
grid-column-start: 2;
grid-column-end: 5;
}
.cub3 {
background-color: #F0F1EC;
grid-area: 2/1/4/2;
}
.last {
background-color: #F0F1EC;
}
.cub4{
grid-area: 2/2/5/5;
display: grid;
background-color: #000;
grid-template-columns:198px 153px 1fr;
grid-template-rows: 130px 1fr 20px;
gap:9px;
}
.lasti{
background-color: #F0F1EC;
}
.cubi1{
grid-area:1/1/3/3;
}
.cubi2{
background-color: #004592;
border-bottom: 10px solid #000;
}
.cubi3{
grid-area:2/3/4/4;
}
.cubi4{
background-color: #F9D01E;
}
.cubi5{
background-color: #232629;
}