mirror of
https://github.com/danbee/tube-status-server
synced 2025-03-04 08:39:12 +00:00
45 lines
1.1 KiB
SCSS
45 lines
1.1 KiB
SCSS
@font-face {
|
|
font-family: 'fontawesome';
|
|
src:url('/fonts/fontawesome.eot');
|
|
src:url('/fonts/fontawesome.eot?#iefix') format('embedded-opentype'),
|
|
url('/fonts/fontawesome.svg#fontawesome') format('svg'),
|
|
url('/fonts/fontawesome.woff') format('woff'),
|
|
url('/fonts/fontawesome.ttf') format('truetype');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
|
|
/* Use the following CSS code if you want to use data attributes for inserting your icons */
|
|
[data-icon]:before {
|
|
font-family: 'fontawesome';
|
|
content: attr(data-icon);
|
|
speak: none;
|
|
font-weight: normal;
|
|
line-height: 1;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
/* Use the following CSS code if you want to have a class per icon */
|
|
/*
|
|
Instead of a list of all class selectors,
|
|
you can use the generic selector below, but it's slower:
|
|
[class*="icon-"]:before {
|
|
*/
|
|
.icon-repeat:before, .icon-time:before, .icon-glass:before {
|
|
font-family: 'fontawesome';
|
|
speak: none;
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
line-height: 1;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
.icon-repeat:before {
|
|
content: "\e000";
|
|
}
|
|
.icon-time:before {
|
|
content: "\e001";
|
|
}
|
|
.icon-glass:before {
|
|
content: "\e002";
|
|
}
|