X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/24721591455e048cffca365384e6759daae05916..16c39b15d9a1516d9cbfa99288747260493cbb15:/src/wolnelektury/static/2021/css/base/_icons.scss diff --git a/src/wolnelektury/static/2021/css/base/_icons.scss b/src/wolnelektury/static/2021/css/base/_icons.scss deleted file mode 100644 index 161be54fa..000000000 --- a/src/wolnelektury/static/2021/css/base/_icons.scss +++ /dev/null @@ -1,79 +0,0 @@ -/* ------------------------------ - Base: Icons ------------------------------- */ - -$icon-minus: "\e900"; -$icon-plus: "\e901"; -$icon-pin: "\e902"; -$icon-linkedin: "\e903"; -$icon-arrow-up: "\e904"; -$icon-arrow-down: "\e905"; -$icon-arrow-left: "\e906"; -$icon-arrow-right: "\e907"; - -@font-face { - font-family: '#{$icomoon-font-family}'; - src: - url('#{$icomoon-font-path}/#{$icomoon-font-family}.ttf?20uhbq') format('truetype'), - url('#{$icomoon-font-path}/#{$icomoon-font-family}.woff?20uhbq') format('woff'), - url('#{$icomoon-font-path}/#{$icomoon-font-family}.svg?20uhbq##{$icomoon-font-family}') format('svg'); - 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; - 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-minus { - &:before { - content: $icon-minus; - } -} -.icon-plus { - &:before { - content: $icon-plus; - } -} -.icon-pin { - &:before { - content: $icon-pin; - } -} -.icon-linkedin { - &:before { - content: $icon-linkedin; - } -} -.icon-arrow-up { - &:before { - content: $icon-arrow-up; - } -} -.icon-arrow-down { - &:before { - content: $icon-arrow-down; - } -} -.icon-arrow-left { - &:before { - content: $icon-arrow-left; - } -} -.icon-arrow-right { - &:before { - content: $icon-arrow-right; - } -}