peer-calls/src/scss/_fonts.scss
2018-12-02 17:13:09 -08:00

92 lines
2.1 KiB
SCSS
Executable File

@font-face {
font-family: 'icons';
src: url('../res/fonts/icons.eot?tcgv6b');
src: url('../res/fonts/icons.eot?tcgv6b#iefix') format('embedded-opentype'),
url('../res/fonts/icons.woff?tcgv6b') format('woff'),
url('../res/fonts/icons.ttf?tcgv6b') format('truetype'),
url('../res/fonts/icons.svg?tcgv6b#icons') format('svg');
font-weight: normal;
font-style: normal;
}
// Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it.
// Note, that will break hinting! In other OS-es font will be not as sharp as it could be
// @media screen and (-webkit-min-device-pixel-ratio:0) {
// @font-face {
// font-family: 'icons';
// src: url('./fonts/icons.svg?tcgv6b#icons') format('svg');
// }
// }
[class^="icon-"], [class*=" icon-"] {
font-family: "icons";
font-style: normal;
font-weight: normal;
speak: none;
display: inline-block;
text-decoration: inherit;
text-align: center;
/* opacity: .8; */
/* For safety - reset parent styles, that can break glyph codes*/
font-variant: normal;
text-transform: none;
/* fix buttons height, for twitter bootstrap */
line-height: 1em;
/* you can be more comfortable with increased icons size */
/* font-size: 120%; */
/* Font smoothing. That was taken from TWBS */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
/* Uncomment for 3D effect */
/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
.icon-schedule:before {
content: "\e8b5";
}
.icon-arrow_forward:before {
content: "\e5c8";
}
.icon-call_end:before {
content: "\e0b1";
}
.icon-face:before {
content: "\e87c";
}
.icon-question_answer:before {
content: "\e8af";
}
.icon-fullscreen:before {
content: "\e5d0";
}
.icon-fullscreen_exit:before {
content: "\e5d1";
}
.icon-room:before {
content: "\e8b4";
}
.icon-mic:before {
content: "\e029";
}
.icon-mic_off:before {
content: "\e02b";
}
.icon-more_vert:before {
content: "\e5d4";
}
.icon-sentiment_satisfied:before {
content: "\e813";
}
.icon-videocam:before {
content: "\e04b";
}
.icon-videocam_off:before {
content: "\e04c";
}