blob: bf179e36604c80b0f0b09dd2e1b9563279dd5d33 (
plain)
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
|
@import url('https://fonts.googleapis.com/css?family=Roboto:100,700,900');
@import "../../styles/mixins";
// Font Weight
.lighter{
font-weight: 100
}
.light{
font-weight: 300
}
.regular{
font-weight: 400
}
.medium{
font-weight: 500
}
.bold{
font-weight: 700
}
.bolder{
font-weight: 900
}
// Font stlye
.italic {
font-style: italic
}
.underline {
text-decoration: underline
}
.lineThrought {
text-decoration: line-through
}
// Color
.textInfo{
color: material-color('blue', '500') !important;
}
.textSuccess{
color: material-color('green', '500') !important;
}
.textWarning{
color: material-color('orange', '500') !important;
}
.textError{
color: material-color('red', '500') !important;
}
.textGreyDark{
color: material-color('blue-grey', '900') !important;
}
.textGrey{
color: material-color('blue-grey', '400') !important;
}
.textGreyLight{
color: material-color('blue-grey', '100') !important;
}
// Transform
.capitalyze{
text-transform: capitalize
}
.uppercase{
text-transform: uppercase
}
.lowercase{
text-transform: lowercase
}
// Align
.textLeft{
text-align: left
}
.textRight{
text-align: right
}
.textCenter{
text-align: center;
}
.textJustify{
text-align: justify;
}
// List
.list{
list-style: disc;
margin-left: 20px;
ul {
list-style: circle;
margin-left: 20px;
}
}
.orderedlist{
list-style: decimal;
margin-left: 20px;
ul {
list-style: lower-alpha;
margin-left: 20px;
}
}
|