-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgrid.css
More file actions
109 lines (88 loc) · 1.58 KB
/
Copy pathgrid.css
File metadata and controls
109 lines (88 loc) · 1.58 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
.container{
display:grid;
gap:5px;
grid-template-columns: repeat(12, 1fr);
grid-template-areas:
"a a a a a a a a a a a a"
"b b b c c c c c c c c c"
"d d d d d d d d d d d d"
"e e e e e e e e e e e e"
"f f f f f f f f f f f f"
"g g g g g g g g g g g g"
"h h h h h h h h h h h h"
"i i i i i i i i i i i i"
"j j j j j j j j j j j j"
"k k k k k k k k k k k k"
"l l l l l l l l l l l l"
"m m m m m m m m m m m m"
"n n n n n n n n n n n n"
"z z z z z z z z z z z z"
}
.item1{
grid-area: a ;
}
.item2{
grid-area: b ;
}
.item3{
grid-area: c;
}
.item4{
grid-area: d;
}
.item5{
grid-area: e;
}
.item6{
grid-area: f;
}
.item7{
grid-area: g;
}
.item8{
grid-area: h;
}
.item9{
grid-area: i;
}
.item10{
grid-area: j;
}
.item11{
grid-area: k;
}
.item12{
grid-area: l;
}
.item13{
grid-area: m;
}
.item15{
grid-area: n;
}
.itemf{
grid-area: z;
}
.aa{
display: grid;
gap:0.5rem;
grid-template-columns: repeat(auto-fit, minmax(100px,1fr));
}
.bb{
display: grid;
column-gap: 10px;
row-gap: 2rem;
grid-template-columns: repeat(auto-fit, minmax(160px,1fr));
}
.ee{
display: grid;
column-gap: 10px;
row-gap: 2rem;
grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
}
.gg{
display: grid;
column-gap: 10px;
row-gap: 2rem;
grid-template-columns: repeat(auto-fit, minmax(230px,1fr));
}