From a76fd342a26e28dee29d1de60e2ed693dfdef05d Mon Sep 17 00:00:00 2001 From: Blendoit Date: Sun, 28 Feb 2021 11:00:37 -0800 Subject: Website does not belong here. --- www/css/base.css | 45 --------------------------------------------- www/css/index.css | 9 --------- www/css/navbar.css | 40 ---------------------------------------- 3 files changed, 94 deletions(-) delete mode 100644 www/css/base.css delete mode 100644 www/css/index.css delete mode 100644 www/css/navbar.css (limited to 'www/css') 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; -} -- cgit v1.2.3