webcron/assets/scss/icons.scss

54 lines
1.1 KiB
SCSS
Raw Normal View History

@import "vars";
2021-08-02 11:51:07 +02:00
@font-face {
font-family: '#{$icomoon-font-family}';
2021-08-02 11:51:07 +02:00
src:
url('#{$icomoon-font-path}/#{$icomoon-font-family}.ttf?ef3few') format('truetype'),
url('#{$icomoon-font-path}/#{$icomoon-font-family}.woff?ef3few') format('woff'),
url('#{$icomoon-font-path}/#{$icomoon-font-family}.svg?ef3few##{$icomoon-font-family}') format('svg');
2021-08-02 11:51:07 +02:00
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: '#{$icomoon-font-family}' !important;
2021-08-02 11:51:07 +02:00
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-view {
&:before {
content: $icon-view;
}
}
.icon-edit {
&:before {
content: $icon-edit;
}
2021-08-02 11:51:07 +02:00
}
.icon-run {
&:before {
content: $icon-run;
}
2021-08-02 11:51:07 +02:00
}
.icon-warning {
&:before {
content: $icon-warning;
}
2021-08-02 11:51:07 +02:00
}
.icon-delete {
&:before {
content: $icon-delete;
}
2021-08-02 11:51:07 +02:00
}