mirror of
https://github.com/biobulkbende/biobulkbende.org.git
synced 2024-11-16 04:43:05 +00:00
22 lines
539 B
CSS
22 lines
539 B
CSS
|
/* Do not edit modules/_sprite directly as it is generated automatically by Gulp
|
||
|
Instead edit gulp/template/sprite*/
|
||
|
|
||
|
{{#shapes}}
|
||
|
{{#first}}
|
||
|
.icon {
|
||
|
display: inline-block;
|
||
|
background-image: url('/assets/media/images/sprites/{{{sprite}}}');
|
||
|
}
|
||
|
|
||
|
.no-svg {
|
||
|
background-image: url('../../temp/media/images/sprites/{{#replaceSvgWithPng}}{{{sprite}}}{{/replaceSvgWithPng}}');
|
||
|
}
|
||
|
|
||
|
{{/first}}
|
||
|
|
||
|
.icon--{{base}} {
|
||
|
width: {{width.outer}}px ;
|
||
|
height: {{height.outer}}px ;
|
||
|
background-position: {{position.relative.xy}};
|
||
|
}
|
||
|
{{/shapes}}
|