mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 09:15:41 +00:00
34 lines
814 B
CSS
34 lines
814 B
CSS
@font-face {
|
|
font-family: 'nopaque Icons';
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
src: local('nopaque Icons'),
|
|
local('nopaqueIcons-Regular'),
|
|
url(../fonts/nopaque_icons/nopaqueIcons-Regular.otf) format('opentype');
|
|
}
|
|
|
|
.nopaque-icons {
|
|
font-family: 'nopaque Icons';
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
font-size: 24px; /* Preferred icon size */
|
|
display: inline-block;
|
|
line-height: 1;
|
|
text-transform: none;
|
|
letter-spacing: normal;
|
|
word-wrap: normal;
|
|
white-space: nowrap;
|
|
direction: ltr;
|
|
|
|
/* Support for all WebKit browsers. */
|
|
-webkit-font-smoothing: antialiased;
|
|
/* Support for Safari and Chrome. */
|
|
text-rendering: optimizeLegibility;
|
|
|
|
/* Support for Firefox. */
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
/* Support for IE. */
|
|
font-feature-settings: 'liga';
|
|
}
|