mirror of
https://github.com/namibia/file-icon-vectors.git
synced 2024-11-16 17:25:14 +00:00
29 lines
564 B
SCSS
Executable File
29 lines
564 B
SCSS
Executable File
$file-icon-css-path: '../icons' !default;
|
|
|
|
.fiv-background {
|
|
background-size: contain;
|
|
background-position: 50%;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
@mixin file-family( $short, $mult ) {
|
|
.fiv-#{$short} {
|
|
@extend .fiv-background;
|
|
position: relative;
|
|
display: inline-block;
|
|
line-height: 1em;
|
|
width: #{$mult}em;
|
|
&:before {
|
|
content: '\00a0';
|
|
}
|
|
}
|
|
}
|
|
|
|
@mixin file-icon( $family, $short, $ext ) {
|
|
.fiv-#{$short} {
|
|
&.fiv-icon-#{$ext} {
|
|
background-image: url('#{$file-icon-css-path}/#{$family}/#{$ext}.svg');
|
|
}
|
|
}
|
|
}
|