diff options
| author | Arne Rief <arne.rief@gmail.com> | 2023-02-10 21:40:00 +0100 |
|---|---|---|
| committer | Arne Rief <arne.rief@gmail.com> | 2023-02-11 14:53:10 +0100 |
| commit | 5bab4502a098eb0e3b5a59b68bc9d8d23529ea55 (patch) | |
| tree | b8a737694d1217f7af9a6884720678a179cacbb0 /sass/base/_typography.scss | |
Desktop version
Diffstat (limited to 'sass/base/_typography.scss')
| -rw-r--r-- | sass/base/_typography.scss | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/sass/base/_typography.scss b/sass/base/_typography.scss new file mode 100644 index 0000000..38f3a3f --- /dev/null +++ b/sass/base/_typography.scss @@ -0,0 +1,39 @@ +@use "../abstracts/variables" as *; + +.text-link { + color: $text-special-dark; + + &:hover { + background-color: $text-special-dark; + border-radius: 2px; + color: $text-dark; + text-decoration: none; + } +} + +.text-emphasis { + color: $text-special-light; + font-weight: bold; +} + +.title { + font-family: "Archivo Black", sans-serif; + color: $text-special-light; + font-size: $big-text; + width: fit-content; +} + +.subtitle { + font-family: "Archivo Black", sans-serif; + color: $text-special-dark; + font-size: $medium-text; +} + +.name { + font-size: calc(2 * $big-text); +} + +.note-auriga { + color: $text-special-dark; + font-style: italic; +} |
