-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathass.css
More file actions
54 lines (37 loc) · 691 Bytes
/
ass.css
File metadata and controls
54 lines (37 loc) · 691 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
body{
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container{
margin-top: 50px;
margin-bottom: 50px;
position: relative;
display: grid;
width: 600px;
gap: 15px;
grid-template-columns: 1fr 1fr 1fr;
grid-template-rows: 150px 150px 150px 150px;
grid-template-areas: "mo1 mo1 mo2"
"mo3 mo3"
"mo5 mo6";
}
.container .mo1{
grid-area: mo1;
}
.container .mo2{
grid-area: mo2;
}
.container .mo3{
grid-area: mo3;
}
.container .mo4{
grid-area: mo4;
}
.container .mo5{
grid-area: mo5;
}
.container .mo6{
grid-area: mo6;
}