Browse code

Created repository.

DoubleBastionAdmin authored on 02/03/2022 00:26:46
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,43 @@
1
+.gg { .gg(); }
2
+.gg-fixed { table-layout: fixed; }
3
+.gg-col { .gg-col(); }
4
+.gg-row { display: table-row; }
5
+.gg-min-width { width: 1%; }
6
+
7
+.gg-top    { vertical-align: top; }
8
+.gg-middle { vertical-align: middle; }
9
+.gg-bottom { vertical-align: bottom; }
10
+
11
+.gg-padded {
12
+  margin-left: -1rem;
13
+  margin-right: -1rem;
14
+  .gg { border-spacing: 1rem 0; }
15
+}
16
+
17
+.gg-col-1,
18
+.gg-col-2,
19
+.gg-col-3,
20
+.gg-col-4,
21
+.gg-col-5,
22
+.gg-col-6,
23
+.gg-col-7,
24
+.gg-col-8,
25
+.gg-col-9,
26
+.gg-col-10,
27
+.gg-col-11,
28
+.gg-col-12 {
29
+  .gg-col();
30
+}
31
+
32
+.gg-col-1  { .gg-make-col(1,12); }
33
+.gg-col-2  { .gg-make-col(2,12); }
34
+.gg-col-3  { .gg-make-col(3,12); }
35
+.gg-col-4  { .gg-make-col(4,12); }
36
+.gg-col-5  { .gg-make-col(5,12); }
37
+.gg-col-6  { .gg-make-col(6,12); }
38
+.gg-col-7  { .gg-make-col(7,12); }
39
+.gg-col-8  { .gg-make-col(8,12); }
40
+.gg-col-9  { .gg-make-col(9,12); }
41
+.gg-col-10 { .gg-make-col(10,12); }
42
+.gg-col-11 { .gg-make-col(11,12); }
43
+.gg-col-12 { .gg-make-col(12,12); }