-
Notifications
You must be signed in to change notification settings - Fork 0
/
utils.css
96 lines (73 loc) · 1.13 KB
/
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
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
.bgcol__primary{
background-color: #1f1f1f;
}
.bgcol__secondary{
background-color: #121212;
}
.bgcol__third{
background-color: #393939;
}
.bgImg{
background-size: cover;
background-repeat: no-repeat;
background-image: url(images/index/aboutbg2.png);
}
.frostedGlass{
border: solid;
background: rgba(37, 37, 37, 0.7);
border-color: rgba(61, 61, 61, 1);
backdrop-filter: blur(.5em);
}
.txt__bold{
font-weight: 900;
}
.roundedBorder{
border-radius: 0.4em;
}
.bgcol__accent{
background-color: #0088ff;
}
.col__primary{
color: white;
}
.col__secondary{
color: #7a7a7a;
}
.col__accent{
color: #0088ff;
}
.txt__tny{
font-size: 0.8em;
}
.txt__sm{
font-size: 1.4em;
}
.txt__med{
font-size: 2em;
}
.txt__lg{
font-size: 3em;
}
.txt__center{
text-align:center;
}
.txt__left{
text-align:left;
}
.txt_decor{
text-decoration:none;
}
@media (max-width: 800px) {
.txt__sm{
font-size: 1.5em;
}
.txt__SMmed{
font-size: 1em;
}
.txt__med{
font-size: 2em;
}
.txt__lg{
font-size: 2.5em;
}
}