1
0
mirror of https://github.com/matt-fidd/stratos.git synced 2026-01-02 23:19:26 +00:00

Added title styles

This commit is contained in:
2022-01-25 22:52:46 +00:00
parent 8ed2038bd7
commit 9443301420
3 changed files with 26 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
.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;
}
}