-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path01.css
More file actions
78 lines (65 loc) · 1.08 KB
/
01.css
File metadata and controls
78 lines (65 loc) · 1.08 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,
body {
width: 100%;
height: 100%;
background-color: #dadada;
}
main {
width: 100%;
height: 100%;
padding: 1.5rem 1rem;
color: #121212;
display: flex;
justify-content: center;
}
.elem {
background-color: #787885;
}
#container {
display: grid;
gap: 1rem;
grid-template-rows: 7rem 3rem 1fr;
grid-template-columns: 1fr;
width: 1000px;
}
#container>* {
display: grid;
}
.col1 {
grid-template-columns: repeat(6, 1fr);
gap: 2rem;
}
.elem21 {
height: 2rem;
}
.col3 {
gap: 1rem;
grid-template-rows: 2rem 1fr;
}
#box {
border: 1px solid black;
}
.elem32 {
display: grid;
grid-template-columns: 1fr 2fr 1fr;
grid-template-rows: 1fr;
gap: 1rem;
}
.elem{
border: 1px solid black;
background-color: #787885;
}
.coll1 {
display: grid;
gap: 1rem;
grid-template-rows: repeat(9, 1fr);
}
.coll2 {
display: grid;
grid-column: 2/3;
}