diff options
author | lonkaars <loek@pipeframe.xyz> | 2024-04-12 13:24:23 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2024-04-12 13:24:23 +0200 |
commit | ce37824c5260dd370c61cf174ea80ca7deeb1058 (patch) | |
tree | c72f247e72c8279c93a662cdd46a440e825bdfbb /styles/globals.css | |
parent | c364c4b0273e76cb13571878d1a4a2853a392b9b (diff) |
more WIP transition
Diffstat (limited to 'styles/globals.css')
-rw-r--r-- | styles/globals.css | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/styles/globals.css b/styles/globals.css deleted file mode 100644 index 5ccd71f..0000000 --- a/styles/globals.css +++ /dev/null @@ -1,49 +0,0 @@ -html, body { - padding: 0; - margin: 0; - - background-color: var(--bg); - color: var(--fg); - - hyphens: auto; -} - -.contentWrapper a { - color: var(--links); - text-decoration: none; - position: relative; - display: inline-block; -} - -.contentWrapper a::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; -} - |