blob: d85182648e1fc42ff8a741fd85a8283584d3e7a0 (
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
|
@font-face {
font-family: 'mysticBB';
src: url('/ui/fonts/mybb-icons/fonts/mysticBB.eot?f1x030');
src: url('/ui/fonts/mybb-icons/fonts/mysticBB.eot?f1x030#iefix') format('embedded-opentype'),
url('/ui/fonts/mybb-icons/fonts/mysticBB.ttf?f1x030') format('truetype'),
url('/ui/fonts/mybb-icons/fonts/mysticBB.woff?f1x030') format('woff'),
url('/ui/fonts/mybb-icons/fonts/mysticBB.svg?f1x030#mysticBB') format('svg');
font-weight: normal;
font-style: normal;
font-display: block;
}
.myb-icon {
/* use !important to prevent issues with browser extensions that change fonts */
font-family: 'mysticBB' !important;
speak: never;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
/* Better Font Rendering =========== */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.mybblogo:before {
content: "\e900";
}
|