diff options
| author | Ariel Costas Guerrero <94913521+arielcostas@users.noreply.github.com> | 2024-05-02 00:47:55 +0200 |
|---|---|---|
| committer | Ariel Costas Guerrero <94913521+arielcostas@users.noreply.github.com> | 2024-05-02 00:47:55 +0200 |
| commit | 828126bf014187b1a5338b67f1d92d61b8f991a0 (patch) | |
| tree | 73a28a2c040f6ea2464e5b18c07d696877b1e707 /assets | |
| parent | e8db08f5556aecf2f2b90324376b2994d9fa3786 (diff) | |
Update font styles and background colors in CSS files
Diffstat (limited to 'assets')
| -rw-r--r-- | assets/css/base.scss | 4 | ||||
| -rw-r--r-- | assets/css/dark.scss | 10 | ||||
| -rw-r--r-- | assets/css/markup/_render-heading.scss | 4 | ||||
| -rw-r--r-- | assets/css/partials/_article.scss | 2 | ||||
| -rw-r--r-- | assets/css/partials/_header.scss | 2 |
5 files changed, 4 insertions, 18 deletions
diff --git a/assets/css/base.scss b/assets/css/base.scss index e68958b..fe8bb86 100644 --- a/assets/css/base.scss +++ b/assets/css/base.scss @@ -34,10 +34,6 @@ h1, h2, h3, h4, h5, h6 { margin-bottom: 0.6em; } -h1 { - font-weight: 900; -} - a { color: var(--accent-1); } diff --git a/assets/css/dark.scss b/assets/css/dark.scss deleted file mode 100644 index 8d18567..0000000 --- a/assets/css/dark.scss +++ /dev/null @@ -1,10 +0,0 @@ -:root { - --header-background: hsl(0, 0%, 14%); - --header-color: var(--accent-3); - --body-background: hsl(0, 0%, 18%); - --body-color: #f5f5f5; -} - -main a { - color: var(--accent-3); -}
\ No newline at end of file diff --git a/assets/css/markup/_render-heading.scss b/assets/css/markup/_render-heading.scss index 4fa23a8..e93e4e6 100644 --- a/assets/css/markup/_render-heading.scss +++ b/assets/css/markup/_render-heading.scss @@ -1,8 +1,8 @@ main { h1, h2, h3, h4, h5, h6 { - a { + a.anchor { color: var(--accent-1); - font-weight: 900; + font-weight: 700; text-decoration: none; &:hover { diff --git a/assets/css/partials/_article.scss b/assets/css/partials/_article.scss index c615d65..86d1fc3 100644 --- a/assets/css/partials/_article.scss +++ b/assets/css/partials/_article.scss @@ -29,7 +29,7 @@ main { >p>code { word-break: break-word; font-family: $monoFontStack; - + color: var(--accent-1); background-color: #f6f6f6; } diff --git a/assets/css/partials/_header.scss b/assets/css/partials/_header.scss index 75bc14c..49185b8 100644 --- a/assets/css/partials/_header.scss +++ b/assets/css/partials/_header.scss @@ -39,7 +39,7 @@ header { h1 { font-size: 2rem; margin: 0; - font-weight: 900; + font-weight: 500; line-height: 1; a { |
