68 lines
795 B
SCSS
68 lines
795 B
SCSS
.text-white {
|
|
color: #fff;
|
|
}
|
|
|
|
.text-black {
|
|
color: #000;
|
|
}
|
|
|
|
.text-center {
|
|
text-align: center;
|
|
}
|
|
|
|
.sde-blue {
|
|
color: $sde-blue;
|
|
}
|
|
|
|
.sde-black-80 {
|
|
color: $sde-black-80;
|
|
}
|
|
|
|
.sde-black-20 {
|
|
color: $sde-black-20;
|
|
}
|
|
|
|
.regular {
|
|
font-weight: 400;
|
|
}
|
|
|
|
.semi-bold {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.bold {
|
|
font-weight: 700;
|
|
}
|
|
|
|
.toggle__label.sde-blue::before {
|
|
border-color: $sde-blue;
|
|
}
|
|
|
|
.sde-blue.toggle__text::before {
|
|
border-color: $sde-blue;
|
|
}
|
|
|
|
span.toggle__text.sde-blue {
|
|
font-size: 5vw;
|
|
}
|
|
|
|
.justify-content-center {
|
|
justify-content: center;
|
|
}
|
|
|
|
.justify-unset {
|
|
justify-content: unset;
|
|
}
|
|
|
|
.justify-content-space {
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.event-text-shadow {
|
|
text-shadow: 2px 2px 2px #00788A;
|
|
}
|
|
|
|
.font-20px {
|
|
font-size: 20px;
|
|
}
|