-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
51 lines (45 loc) · 1.22 KB
/
style.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
@font-face {
font-family: 'FA-Brands';
src: url("./fonts/Font Awesome 6 Brands-Regular-400.otf") format('opentype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'FA-Solid';
src: url("./fonts/Font Awesome 6 Free-Solid-900.otf") format('opentype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'FA-Regular';
src: url("./fonts/Font Awesome 6 Free-Regular-400.otf") format('opentype');
font-weight: normal;
font-style: normal;
}
:root {
--icon-font-size: 2em;
}
.icon-brands {
font-family: 'FA-Brands' !important;
font-size: var(--icon-font-size) !important;
line-height: 1 !important;
padding: 1px !important;
margin: 0px !important;
display: block !important;
}
.icon-solid {
font-family: 'FA-Solid' !important;
font-size: var(--icon-font-size) !important;
line-height: 1 !important;
padding: 1px !important;
margin: 0px !important;
display: block !important;
}
.icon-regular {
font-family: 'FA-Regular' !important;
font-size: var(--icon-font-size) !important;
line-height: 1 !important;
padding: 1px !important;
margin: 0px !important;
display: block !important;
}