mirror of
https://github.com/namibia/file-icon-vectors.git
synced 2024-11-05 12:57:55 +00:00
42 lines
802 B
CSS
42 lines
802 B
CSS
|
/*!
|
||
|
* File Icon Vectors 1.0 (https://github.com/dmhendricks/file-icon-vectors)
|
||
|
* Copyright 2018 Daniel M. Hendricks (https://www.danhendricks.com)
|
||
|
* Licensed under MIT (https://github.com/dmhendricks/file-icon-vectors/blob/master/LICENSE)
|
||
|
*/
|
||
|
.fiv-background, .fiv-ext {
|
||
|
background-size: contain;
|
||
|
background-position: 50%;
|
||
|
background-repeat: no-repeat;
|
||
|
}
|
||
|
|
||
|
.fiv-size-md {
|
||
|
font-size: 2.25em;
|
||
|
}
|
||
|
|
||
|
.fiv-size-lg {
|
||
|
font-size: 3.5em;
|
||
|
}
|
||
|
|
||
|
.fiv-size-xl {
|
||
|
font-size: 4.75em;
|
||
|
}
|
||
|
|
||
|
.fiv-ext {
|
||
|
position: relative;
|
||
|
display: inline-block;
|
||
|
line-height: 1em;
|
||
|
width: 1em;
|
||
|
}
|
||
|
|
||
|
.fiv-ext:before {
|
||
|
content: '\00a0';
|
||
|
}
|
||
|
|
||
|
.fiv-ext.fiv-icon-folder-closed {
|
||
|
background-image: url("icons/extra/folder-closed.svg");
|
||
|
}
|
||
|
|
||
|
.fiv-ext.fiv-icon-folder-open {
|
||
|
background-image: url("icons/extra/folder-open.svg");
|
||
|
}
|