2016-05-26 23:34:42 +00:00
|
|
|
// Needed for standalone scss
|
|
|
|
// @import 'icon-mixin';
|
|
|
|
|
2017-02-01 21:41:29 +00:00
|
|
|
$cache-breaker: unique-id();
|
|
|
|
|
2016-05-26 23:34:42 +00:00
|
|
|
@font-face {
|
|
|
|
font-family: 'ionicons';
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: normal;
|
2017-02-01 21:41:29 +00:00
|
|
|
src: url('fonts/icon.woff2?rel=#{$cache-breaker}') format('woff2'),
|
|
|
|
url('fonts/icon.woff?rel=#{$cache-breaker}') format('woff'),
|
|
|
|
url('fonts/icon.ttf?rel=#{$cache-breaker}') format('truetype');
|
2016-05-26 23:34:42 +00:00
|
|
|
}
|
|
|
|
|
2017-02-04 19:01:49 +00:00
|
|
|
[class^='ion-'],
|
|
|
|
[class*=' ion-'] {
|
|
|
|
&::before {
|
2016-05-26 23:34:42 +00:00
|
|
|
display: inline-block;
|
|
|
|
font-family: $font-family-icons;
|
|
|
|
font-style: normal;
|
|
|
|
font-variant: normal;
|
|
|
|
font-weight: normal;
|
|
|
|
line-height: 1;
|
|
|
|
speak: none;
|
|
|
|
text-rendering: auto;
|
|
|
|
text-transform: none;
|
|
|
|
vertical-align: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@include icon('chevron-left', '\f124');
|
|
|
|
@include icon('chevron-right', '\f125');
|
|
|
|
@include icon('pin', '\f3a3');
|
|
|
|
@include icon('wifi', '\f25c');
|
|
|
|
@include icon('eye', '\f133');
|
2017-02-04 19:01:49 +00:00
|
|
|
@include icon('up-b', '\f10d');
|
|
|
|
@include icon('down-b', '\f104');
|
|
|
|
@include icon('locate', '\f2e9');
|
|
|
|
@include icon('close', '\f2d7');
|
2016-05-26 23:34:42 +00:00
|
|
|
@include icon('location', '\f456');
|
|
|
|
@include icon('layer', '\f229');
|
2017-02-01 21:13:06 +00:00
|
|
|
@include icon('filter', '\f38B');
|
2017-02-04 19:01:49 +00:00
|
|
|
@include icon('connection-bars', '\f274');
|
|
|
|
@include icon('share-alt', '\f3ac');
|
|
|
|
@include icon('clipboard', '\f376');
|
|
|
|
@include icon('people', '\f39e');
|
|
|
|
@include icon('person', '\f3a0');
|
|
|
|
@include icon('time', '\f3b3');
|
|
|
|
@include icon('arrow-resize', '\f264');
|
|
|
|
@include icon('arrow-left-c', '\f108');
|
|
|
|
@include icon('arrow-right-c', '\f10b');
|