forked from em/receptty.org
36 lines
786 B
CSS
36 lines
786 B
CSS
|
@font-face {
|
||
|
font-family: 'icons';
|
||
|
src:
|
||
|
url('/fonts/icons.ttf?88dd9o') format('truetype'),
|
||
|
url('/fonts/icons.woff?88dd9o') format('woff'),
|
||
|
url('/fonts/icons.svg?88dd9o#icons') format('svg');
|
||
|
font-weight: normal;
|
||
|
font-style: normal;
|
||
|
font-display: block;
|
||
|
}
|
||
|
|
||
|
[class^="icon-"], [class*=" icon-"] {
|
||
|
/* use !important to prevent issues with browser extensions that change fonts */
|
||
|
font-family: 'icons' !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;
|
||
|
}
|
||
|
|
||
|
.icon-search:before {
|
||
|
content: "\e986";
|
||
|
}
|
||
|
.icon-info:before {
|
||
|
content: "\ea0c";
|
||
|
}
|
||
|
.icon-git:before {
|
||
|
content: "\eae7";
|
||
|
}
|