diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2022-05-11 17:53:45 +0200 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2022-05-11 17:53:45 +0200 |
commit | 7f558517f40833d7d80ddcfb4c356ce8dce18463 (patch) | |
tree | 39635be08337bb9038d5a0f6efdb9b525e4cc3a2 /sass | |
parent | e9e2af423557b50c416b68559bab7786bee35ff2 (diff) | |
download | guide.deuxfleurs.fr-7f558517f40833d7d80ddcfb4c356ce8dce18463.tar.gz guide.deuxfleurs.fr-7f558517f40833d7d80ddcfb4c356ce8dce18463.zip |
Premier ajout de contenu
Diffstat (limited to 'sass')
-rw-r--r-- | sass/_text.scss | 10 | ||||
-rw-r--r-- | sass/juice.scss | 11 |
2 files changed, 14 insertions, 7 deletions
diff --git a/sass/_text.scss b/sass/_text.scss index 40f47c9..4c29604 100644 --- a/sass/_text.scss +++ b/sass/_text.scss @@ -3,14 +3,14 @@ font-size: 32px; font-weight: 600; padding: 10px 0 25px 0; - color: var(--primary-text-color); + color: var(--secondary-text-color); } h1, .title-text { font-family: "Fira Sans", sans-serif; font-size: 25px; font-weight: 500; - color: var(--primary-text-color); + color: var(--secondary-text-color); border-left: var(--primary-color) 8px solid; padding-left: 10px; } @@ -19,7 +19,7 @@ h2, .subtitle-text { font-family: "Fira Sans", sans-serif; font-size: 20px; font-weight: 500; - color: var(--primary-text-color); + color: var(--secondary-text-color); } .text { @@ -28,7 +28,7 @@ h2, .subtitle-text { font-weight: 400; line-height: 26px; letter-spacing: 0.2px; - color: var(--primary-text-color); + color: var(--secondary-text-color); } .subtext { @@ -36,4 +36,4 @@ h2, .subtitle-text { font-size: 16px; font-weight: 400; letter-spacing: 0.1px; -}
\ No newline at end of file +} diff --git a/sass/juice.scss b/sass/juice.scss index d2069af..0e35b9b 100644 --- a/sass/juice.scss +++ b/sass/juice.scss @@ -39,9 +39,10 @@ header { } .logo { - font-family: "Alfa Slab One", serif; + font-family: Georgia, DejaVu Serif, Norasi, serif; font-size: 32px; color: var(--primary-text-color); + font-weight: 500; display: flex; align-items: center; margin: 0 40px; @@ -58,8 +59,10 @@ header { font-size: 18px; font-weight: bold; + color: var(--primary-text-color); + &:hover { - color: #000; + color: #fff; text-decoration: underline; } } @@ -95,6 +98,10 @@ main { color: #424242; } + .toc-section a { + font-weight: bold; + } + .toc-item a, .toc-item-child a { color: var(--secondary-text-color); |