diff options
author | Blendoit <blendoit@gmail.com> | 2021-02-28 11:00:37 -0800 |
---|---|---|
committer | Blendoit <blendoit@gmail.com> | 2021-02-28 11:00:37 -0800 |
commit | a76fd342a26e28dee29d1de60e2ed693dfdef05d (patch) | |
tree | 9c03d1e490c86603c1216d765d628f60e6c9d822 /www/css | |
parent | ae318704c418f6b0f9b7e66471f48b0622aedee4 (diff) |
Website does not belong here.
Diffstat (limited to 'www/css')
-rw-r--r-- | www/css/base.css | 45 | ||||
-rw-r--r-- | www/css/index.css | 9 | ||||
-rw-r--r-- | www/css/navbar.css | 40 |
3 files changed, 0 insertions, 94 deletions
diff --git a/www/css/base.css b/www/css/base.css deleted file mode 100644 index 49111bc..0000000 --- a/www/css/base.css +++ /dev/null @@ -1,45 +0,0 @@ -:root { - /* Colors */ - --primary: #333333; - --text: #ffffff; - --accent: #4682b4; - --link: #87cefa; - --no: #ff5c5c; - /* Timings */ - --high-speed: 0.3s; - --med-speed: 0.5s; - --low-speed: 1.0s; -} - -code { - font-family: 'Hack', sans-serif; -} - -body { - font-family: 'Jost*', sans-serif; - font-size: 12px; - margin: 3em; - background-color: var(--primary); - color: var(--text); -} - -.outline-2 { - bottom: 0; - left: 0; - filter: blur(4px); - transition: var(--high-speed); - max-width: 60vw; -} -.outline-2:hover { - filter: blur(0px); - transition: var(--med-speed); - font-size: 14px; -} - -p { - font-family: 'Public Sans', sans-serif; -} - -a { - color: var(--link); -} diff --git a/www/css/index.css b/www/css/index.css deleted file mode 100644 index 48f4501..0000000 --- a/www/css/index.css +++ /dev/null @@ -1,9 +0,0 @@ -.outline-2 { - min-height: 70vh; - bottom: 30px; -} - -.outline-text-2 { - position: absolute; - bottom: 0; -} diff --git a/www/css/navbar.css b/www/css/navbar.css deleted file mode 100644 index 892f302..0000000 --- a/www/css/navbar.css +++ /dev/null @@ -1,40 +0,0 @@ -nav { - background-color: var(--accent); - color: var(--text); - position: fixed; - height: 36px; - display: flex; - align-items: center; - top: 12px; - right: 12px; - border-radius: 12px; - /* box-shadow x-offset y-offset blur spread color */ - box-shadow: 8px 8px 40px 2px #111111; - z-index: 1; -} -nav ul { -} -/* Display navbar elements horizontally. */ -nav ul * { - display: inline; - margin: 0.2em; -} - -/* Style the links inside the navigation bar. */ -nav a { - color: var(--text); - font-size: 16px; -} - -/* Change the color of links on hover. */ -nav a:hover { - background-color: var(--link); - color: var(--primary); - transition: var(--med-speed); -} - -/* Add a color to the active/current link */ -nav a.active { - background-color: var(--accent); - color: white; -} |