54 lines
1.2 KiB
CSS
54 lines
1.2 KiB
CSS
/* fallback */
|
|
@font-face {
|
|
font-family: 'Material Icons';
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
src: url('fonts//icons/MaterialIcons-Regular.eot'); /* For IE6-8 */
|
|
src: url('fonts//icons/MaterialIcons-Regular.woff2') format('woff2'),
|
|
url('fonts//icons/MaterialIcons-Regular.woff') format('woff'),
|
|
url('fonts//icons/MaterialIcons-Regular.ttf') format('truetype');
|
|
}
|
|
|
|
.material-icons {
|
|
font-family: 'Material Icons';
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
font-size: 24px;
|
|
line-height: 1;
|
|
letter-spacing: normal;
|
|
text-transform: none;
|
|
display: inline-block;
|
|
white-space: nowrap;
|
|
word-wrap: normal;
|
|
direction: ltr;
|
|
-webkit-font-feature-settings: 'liga';
|
|
font-feature-settings: 'liga';
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
.material-icons.title-icon {
|
|
margin-right: 0.3125em;
|
|
margin-left: -3px;
|
|
}
|
|
|
|
.material-icons.title-icon.title-icon--right {
|
|
margin-right: 0px;
|
|
margin-left: 0.3125em;
|
|
}
|
|
|
|
.material-icons.title-icon.title-icon--explicit {
|
|
color: hsl(240, 5%, 59%);
|
|
}
|
|
|
|
.material-icons.title-icon.title-icon--new {
|
|
color: hsl(27, 100%, 50%);
|
|
}
|
|
|
|
.material-icons.disabled {
|
|
@apply opacity-50 cursor-default;
|
|
}
|
|
|
|
.material-icons.mirrored {
|
|
transform: scaleX(-1);
|
|
}
|