mirror of
https://github.com/matt-fidd/stratos.git
synced 2026-01-02 03:19:27 +00:00
20 lines
289 B
SCSS
20 lines
289 B
SCSS
.title {
|
|
&--spaced {
|
|
font: normal 300 1em Roboto;
|
|
letter-spacing: 0.175em;
|
|
text-transform: uppercase;
|
|
color: $text-colour;
|
|
}
|
|
|
|
&--center {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
}
|
|
|
|
@each $name, $colour in $title-colours {
|
|
.title.title--#{$name} {
|
|
color: $colour;
|
|
}
|
|
}
|