2022-02-04 13:15:31 +01:00

53 lines
508 B
SCSS

p,span {
font-size: 16px;
margin-block-start: 0;
margin-block-end: 0;
}
.warning,
.red {
color: $red;
}
.blue {
color: $blue;
}
.gray {
color: $very-dark-gray;
}
.italic {
font-style: italic;
}
.as_link {
text-decoration: underline;
color: $blue;
cursor: pointer;
}
.bold {
font-weight: $extra-bold;
}
.semi-bold {
font-weight: $semi-bold;
}
.heavy {
font-weight: $heavy;
}
.caps {
text-transform: uppercase;
}
.pointer {
cursor: pointer;
}
.avg {
text-decoration: overline;
}