hugo-toha/assets/styles/mixins.scss
hossainemruz 6d5d1b9851 Introduce color variables
Signed-off-by: hossainemruz <hossainemruz@gmail.com>
2023-09-29 04:22:23 +06:00

30 lines
532 B
SCSS

@mixin reset-list {
margin: 0;
padding: 0;
list-style: none;
}
@mixin section-title-adjustment() {
h1 > span {
margin-top: -55px; /* Size of fixed header */
padding-bottom: 55px;
display: block;
}
}
@mixin brand-background() {
@each $brand, $color in $brand-colors {
.bg-#{$brand} {
background-color: $color;
}
}
}
@mixin transition() {
transition: all $transition-type $transition-duration;
}
@mixin selection-color() {
background: $accent-color;
color: $text-over-accent-color;
}