You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
505 B
SCSS
32 lines
505 B
SCSS
// Mixins
|
|
|
|
@mixin text-highlight($color) {
|
|
background-color: $color;
|
|
padding: var(--margins-xs) var(--margins-sm);
|
|
border-radius: 3px;
|
|
display: inline-block;
|
|
}
|
|
|
|
@mixin color-svg($svg, $color) {
|
|
-webkit-mask: url($svg) no-repeat center;
|
|
-webkit-mask-size: 100%;
|
|
background-color: $color;
|
|
}
|
|
|
|
$session-subtle-factor: 0.6;
|
|
|
|
@function subtle($color) {
|
|
@return rgba($color, $session-subtle-factor);
|
|
}
|
|
|
|
// Animations
|
|
|
|
@keyframes fadein {
|
|
from {
|
|
opacity: 0;
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
}
|
|
}
|