44 lines
495 B
SCSS
44 lines
495 B
SCSS
|
.text-white {
|
||
|
color: #ffffff;
|
||
|
}
|
||
|
|
||
|
.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;
|
||
|
}
|