summaryrefslogtreecommitdiff
path: root/includes/style.css
diff options
context:
space:
mode:
author53hornet <atc@53hor.net>2022-01-14 14:28:19 -0500
committer53hornet <atc@53hor.net>2022-01-14 14:28:19 -0500
commit8794c7382edc928dc4054a27b572e0b02ea91cb1 (patch)
tree145fcc4b49410c58e80f105f03b2c34896a4d48c /includes/style.css
parent30b5423c1486c167240876b70521014d06b8d79b (diff)
download53hor-8794c7382edc928dc4054a27b572e0b02ea91cb1.tar.xz
53hor-8794c7382edc928dc4054a27b572e0b02ea91cb1.zip
feat: break up css, add cgit css
Diffstat (limited to 'includes/style.css')
-rw-r--r--includes/style.css219
1 files changed, 0 insertions, 219 deletions
diff --git a/includes/style.css b/includes/style.css
deleted file mode 100644
index 8958847..0000000
--- a/includes/style.css
+++ /dev/null
@@ -1,219 +0,0 @@
-@font-face {
- font-family: "Iosevka Slab";
- font-display: swap;
- src: url("/assets/iosevka-slab-regular.woff2");
-}
-
-:root {
- --balboa: #195970;
- --ruby: #9b111e;
- --slate: #b9c2ca;
- --charcoal: #798d94;
- --white: white;
- --box-radius: 0.15em;
- --box-border: 0.5em solid var(--white);
-}
-
-body,
-code {
- font-family: "Iosevka Slab", monospace;
-}
-
-body {
- font-size: 1.5em;
- background-color: var(--balboa);
- color: var(--white);
- max-width: 50em;
- margin: auto;
- padding: 1em;
-}
-
-hr {
- color: var(--white);
-}
-
-nav {
- list-style-type: none;
- text-align: center;
-}
-
-nav ul {
- padding: 0;
- margin: 0;
-}
-
-nav li {
- display: inline-block;
- margin: 0.5em;
- padding: 0.5em;
-}
-
-nav svg {
- padding-right: 0.5em;
- width: 24px;
- height: 24px;
-}
-
-nav svg path,
-nav svg rect {
- fill: var(--white);
-}
-
-a:link {
- color: var(--slate);
-}
-
-a:visited {
- color: var(--charcoal);
-}
-
-a:visited code {
- color: var(--slate);
-}
-
-nav a:link,
-nav a:visited,
-nav a:active {
- background-color: var(--balboa);
- display: flex;
- align-items: center;
- color: var(--white);
- text-decoration: underline solid var(--balboa);
-}
-
-a:hover {
- transition: 0.25s;
- color: var(--white);
-}
-
-nav a:hover {
- transition: 0.25s;
- text-decoration: underline solid var(--slate);
-}
-
-p code {
- background-color: var(--charcoal);
- border-radius: var(--box-radius);
-}
-
-pre {
- white-space: pre-wrap;
- display: block;
- background-color: var(--charcoal);
- padding: 1em;
- border-radius: var(--box-radius);
- border-left: var(--box-border);
- border-right: var(--box-border);
- overflow: auto;
-}
-
-.description {
- background-color: var(--ruby);
- padding: 1em;
- border-radius: var(--box-radius);
- border-left: var(--box-border);
- border-right: var(--box-border);
-}
-
-h1,
-blockquote {
- font-style: oblique;
-}
-
-h1,
-header {
- text-align: center;
-}
-
-article ul {
- list-style: none;
- padding: 0;
- margin: 0;
-}
-
-article ul li {
- padding: 0.5em;
-}
-
-article ul li:before {
- content: "➙";
- padding-right: 0.5em;
-}
-
-article ol li {
- padding: 0.5em;
-}
-
-p img {
- display: block;
- margin-top: 1em;
- margin-left: auto;
- margin-right: auto;
- max-width: 75%;
- height: auto;
- border-radius: var(--box-radius);
- border-left: var(--box-border);
- border-right: var(--box-border);
-}
-
-iframe {
- display: block;
- margin-left: auto;
- margin-right: auto;
-}
-
-.list {
- overflow-x: auto;
-}
-
-.list table {
- width: 100%;
-}
-
-.list td,
-th {
- padding: 0.5em;
- text-align: left;
- border-bottom: 1px solid var(--charcoal);
-}
-
-.form {
- text-align: center;
-}
-
-.form input {
- font-size: 1em;
- margin-top: 1em;
- border-radius: 3em;
- box-sizing: border-box;
- padding: 0.5em;
- border: 0;
-}
-
-.form .description {
- display: none;
-}
-
-footer {
- font-size: 0.75em;
- text-align: center;
-}
-
-.centered {
- text-align: center;
-}
-
-a.donation,
-a.donation:visited {
- background-color: var(--ruby);
- border-radius: var(--box-radius);
- padding: 1em;
- text-decoration: none;
- color: var(--slate);
- border-left: var(--box-border);
- border-right: var(--box-border);
-}
-
-a.donation:hover {
- color: var(--white);
-}