1
1
mirror of https://github.com/namibia/file-icon-vectors.git synced 2024-11-16 01:07:12 +00:00
file-icon-vectors/sass/_file-icon-base.scss
2017-09-28 07:54:42 -05:00

30 lines
565 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');
}
}
}