-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcss-text-utils.css
66 lines (52 loc) · 1.07 KB
/
css-text-utils.css
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
.css-text-align-left {
text-align: left;
}
.css-text-align-center {
text-align: center;
}
.css-text-align-right {
text-align: right;
}
.css-hidden {
display: none;
}
.css-text-bold {
font-weight: bold;
}
.css-text-extrabold {
font-weight: 1000;
}
.css-text-highlight {
background-color: yellow;
}
.css-text-border-dotted {border-style: dotted;}
.css-text-border-dashed {border-style: dashed;}
.css-text-border-solid {border-style: solid;}
.css-text-border-double {border-style: double;}
.css-text-border-groove {border-style: groove;}
.css-text-border-ridge {border-style: ridge;}
.css-text-border-inset {border-style: inset;}
.css-text-border-outset {border-style: outset;}
.css-text-border-mixed {border-style: dotted dashed solid double;}
.css-opacity-quarter {
opacity: 0.25;
}
.css-opacity-half {
opacity: 0.5;
}
.css-text-size-large {
font-size: 30px;
}
.css-text-size-extralarge {
font-size: 40px;
}
.css-text-size-medium {
font-size: 25px;
}
.css-text-size-small {
font-size: 12px;
}
.css-text-shadow {
color: white;
text-shadow: 2px 2px 4px #000000;
}