diff options
Diffstat (limited to '_sass/globals.css')
-rw-r--r-- | _sass/globals.css | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/_sass/globals.css b/_sass/globals.css deleted file mode 100644 index 769153e..0000000 --- a/_sass/globals.css +++ /dev/null @@ -1,63 +0,0 @@ -html, body { - padding: 0; - margin: 0; - - background-color: var(--bg); - color: var(--fg); - - hyphens: auto; -} - -.block { display: block; } - -.contentWrapper a.nolink { - color: unset; -} - -.contentWrapper a:not(.nolink) { - color: var(--links); - position: relative; - display: inline-block; -} - -.contentWrapper a { - text-decoration: none; -} - -.contentWrapper a:not(.nolink)::after { - content: ''; - position: absolute; - left: 0; - bottom: 0; - height: 1px; - width: 0%; - transition: width; - transition-duration: 150ms; - background-color: var(--links); -} - -.contentWrapper a:hover::after { - width: 100%; -} - -::-webkit-scrollbar { - width: 12px; - height: 12px; -} - -::-webkit-scrollbar-thumb { - border-radius: 6px; - border: 4px solid var(--bg); -} - -:focus { outline: none; } - -li { - margin-bottom: 6px; -} - -.icon svg { - width: 24px; - height: 24px; - fill: currentColor; -} |