36 lines
629 B
SCSS
36 lines
629 B
SCSS
.ci {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
line-height: 1;
|
|
position: relative;
|
|
}
|
|
|
|
.ci::before {
|
|
display: inline-block;
|
|
content: ' ';
|
|
width: 1em;
|
|
height: 1em;
|
|
mask-size: contain;
|
|
mask-repeat: no-repeat;
|
|
mask-position: center;
|
|
background-color: currentColor;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.ci-instagram::before {
|
|
mask-image: url(../Icons/instagram.svg);
|
|
}
|
|
|
|
.ci-linkedin::before {
|
|
mask-image: url(../Icons/linkedin.svg);
|
|
width: 0.9em;
|
|
height: 0.9em;
|
|
}
|
|
|
|
.ci-facebook::before {
|
|
mask-image: url(../Icons/facebook.svg);
|
|
}
|
|
.ci-arrow-down::before {
|
|
mask-image: url(../Icons/arrow-down.svg);
|
|
}
|