Browse code

Remote Progress

Benjamin Roth authored on17/11/2022 13:24:16
Showing1 changed files
... ...
@@ -43,15 +43,18 @@ img {
43 43
   border-bottom: 1px $color-text solid;
44 44
 }
45 45
 
46
-.ta_left {
46
+.ta_left,
47
+.-text-align-left {
47 48
   text-align: left;
48 49
 }
49 50
 
50
-.ta_right {
51
+.ta_right,
52
+.-text-align-right {
51 53
   text-align: right;
52 54
 }
53 55
 
54
-.ta_center {
56
+.ta_center,
57
+.-text-align-center {
55 58
   text-align: center;
56 59
 }
57 60
 .fl_left {
Browse code

Initial commit

Benjamin Roth authored on07/11/2022 09:19:06
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,89 @@
1
+@if not-imported("import_once_func") { @import "import_once_func"; }
2
+@if not-imported("settings") { @import "settings"; }
3
+
4
+/**
5
+ * Flexible images (videos see #4896)
6
+ *
7
+ * @see http://webdesignerwall.com/tutorials/responsive-design-with-css3-media-queries
8
+ */
9
+img {
10
+  max-width:100%;
11
+  height:auto;
12
+}
13
+.ie7 img {
14
+  -ms-interpolation-mode:bicubic;
15
+}
16
+.ie8 img {
17
+  width:auto; /* see #5789 */
18
+}
19
+
20
+/**
21
+ * Hide invisible elements
22
+ */
23
+.invisible {
24
+  border:0;
25
+  clip:rect(0 0 0 0);
26
+  height:1px;
27
+  margin:-1px;
28
+  overflow:hidden;
29
+  padding:0;
30
+  position:absolute;
31
+  width:1px;
32
+}
33
+
34
+/**
35
+ * Margins, Paddings, Alignment, Text transforms and decorations
36
+ */
37
+.tt_u {
38
+  text-transform: uppercase;
39
+  letter-spacing: 0.1em;
40
+}
41
+
42
+.td_u {
43
+  border-bottom: 1px $color-text solid;
44
+}
45
+
46
+.ta_left {
47
+  text-align: left;
48
+}
49
+
50
+.ta_right {
51
+  text-align: right;
52
+}
53
+
54
+.ta_center {
55
+  text-align: center;
56
+}
57
+.fl_left {
58
+  float: left;
59
+}
60
+.fl_right {
61
+  float: right;
62
+}
63
+
64
+.fw_light {
65
+  font-weight: 300;
66
+}
67
+.fw_normal {
68
+  font-weight: 400;
69
+}
70
+.fw_semi-bold {
71
+  font-weight: 600;
72
+}
73
+.fw_bold {
74
+  font-weight: 700;
75
+}
76
+
77
+/* --- CE SPACING --- */
78
+.spc_default {
79
+  margin-bottom: $gutter-default*2;
80
+}
81
+.spc_paragraph {
82
+  margin-bottom: 1.5rem;
83
+}
84
+.spc_boxed {
85
+  margin-bottom: 20px;
86
+}
87
+.pad_default {
88
+  padding: $gutter-default 0;
89
+}
0 90
\ No newline at end of file