AnP/Public/scss/AnP.icons.scss

36 lines
876 B
SCSS

.anp{
@each $name, $code in (
"less_zoom" : "f010",
"more_zoom" : "f00e",
"reset_zoom" : "f002",
"zoom_mode" : "f689",
"more_options" : "f013",
"home" : "f015",
"web" : "f0ac",
"menu" : "f0c9"
){
[data-icon=#{$name}]::before{content : unicode($code);}
}
@each $name, $code in (
"git" : "f841"
){
[data-icon=#{$name}]::before{content : unicode($code); font-family : "FA6FB";}
}
@each $name, $code in (
"documentation" : "f15c"
){
[data-icon=#{$name}]::before{content : unicode($code); font-family : "FA6FR";}
}
@each $mode, $code in (
"default" : "f850",
"dark" : "f3fb",
"light" : "f009",
){
&[data-gui-mode=#{$mode}] [data-icon=gui_mode]::before{content : unicode($code);}
}
}