pallote-css 0.2.12 → 0.2.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,10 +1,44 @@
|
|
|
1
1
|
// —————————————————————————————————————————————————————————————————
|
|
2
|
-
//
|
|
3
|
-
// alignement
|
|
2
|
+
// align
|
|
4
3
|
// style
|
|
5
4
|
// weight
|
|
5
|
+
// color
|
|
6
|
+
// —————————————————————————————————————————————————————————————————
|
|
7
|
+
|
|
8
|
+
// —————————————————————————————————————————————————————————————————
|
|
9
|
+
// align
|
|
10
|
+
// —————————————————————————————————————————————————————————————————
|
|
11
|
+
|
|
12
|
+
.text--left, %text--left { text-align: left !important; }
|
|
13
|
+
.text--center, %text--center { text-align: center !important; }
|
|
14
|
+
.text--right, %text--right { text-align: right !important; }
|
|
15
|
+
|
|
16
|
+
// —————————————————————————————————————————————————————————————————
|
|
17
|
+
// weight
|
|
18
|
+
// —————————————————————————————————————————————————————————————————
|
|
19
|
+
|
|
20
|
+
.text--regular, %text--regular { font-weight: $font-regular !important; }
|
|
21
|
+
.text--bold, %text--bold { font-weight: $font-bold !important; }
|
|
22
|
+
.text--black, %text--black { font-weight: $font-black !important; }
|
|
23
|
+
|
|
24
|
+
// —————————————————————————————————————————————————————————————————
|
|
25
|
+
// italic
|
|
26
|
+
// —————————————————————————————————————————————————————————————————
|
|
27
|
+
|
|
28
|
+
.text--italic, %text--italic { font-style: italic !important; }
|
|
29
|
+
|
|
30
|
+
// —————————————————————————————————————————————————————————————————
|
|
31
|
+
// underline
|
|
6
32
|
// —————————————————————————————————————————————————————————————————
|
|
7
33
|
|
|
34
|
+
.text--underline, %text--underline { text-decoration: underline !important; }
|
|
35
|
+
|
|
36
|
+
// —————————————————————————————————————————————————————————————————
|
|
37
|
+
// strikeThrough
|
|
38
|
+
// —————————————————————————————————————————————————————————————————
|
|
39
|
+
|
|
40
|
+
.text--strikeThrough, %text--strikeThrough { text-decoration: line-through !important; }
|
|
41
|
+
|
|
8
42
|
// —————————————————————————————————————————————————————————————————
|
|
9
43
|
// color
|
|
10
44
|
// —————————————————————————————————————————————————————————————————
|
|
@@ -37,27 +71,3 @@
|
|
|
37
71
|
'warning' $warning,
|
|
38
72
|
'error' $error,
|
|
39
73
|
);
|
|
40
|
-
|
|
41
|
-
// —————————————————————————————————————————————————————————————————
|
|
42
|
-
// alignement
|
|
43
|
-
// —————————————————————————————————————————————————————————————————
|
|
44
|
-
|
|
45
|
-
.text--left, %text--left { text-align: left !important; }
|
|
46
|
-
.text--center, %text--center { text-align: center !important; }
|
|
47
|
-
.text--right, %text--right { text-align: right !important; }
|
|
48
|
-
|
|
49
|
-
// —————————————————————————————————————————————————————————————————
|
|
50
|
-
// style
|
|
51
|
-
// —————————————————————————————————————————————————————————————————
|
|
52
|
-
|
|
53
|
-
.text--italic, %text--italic { font-style: italic !important; }
|
|
54
|
-
.text--underline, %text--underline { text-decoration: underline !important; }
|
|
55
|
-
.text--strikeThrough, %text--strikeThrough { text-decoration: line-through !important; }
|
|
56
|
-
|
|
57
|
-
// —————————————————————————————————————————————————————————————————
|
|
58
|
-
// weight
|
|
59
|
-
// —————————————————————————————————————————————————————————————————
|
|
60
|
-
|
|
61
|
-
.text--regular, %text--regular { font-weight: $font-regular !important; }
|
|
62
|
-
.text--bold, %text--bold { font-weight: $font-bold !important; }
|
|
63
|
-
.text--black, %text--black { font-weight: $font-black !important; }
|