summaryrefslogtreecommitdiff
path: root/style.css
diff options
context:
space:
mode:
authorKai Stevenson <kai@kaistevenson.com>2022-10-28 17:36:28 -0700
committerKai Stevenson <kai@kaistevenson.com>2022-10-28 17:36:28 -0700
commit09feefc9f04b38420a198b6f69895b242832ad30 (patch)
treef4901d6c67ecfed074ca5a0028a9a7964ac7a70a /style.css
parent04cd72c5b46a16b7b82d581f22fe74d2f1e4916e (diff)
changed the file structure
Diffstat (limited to 'style.css')
-rw-r--r--style.css115
1 files changed, 0 insertions, 115 deletions
diff --git a/style.css b/style.css
deleted file mode 100644
index d32a897..0000000
--- a/style.css
+++ /dev/null
@@ -1,115 +0,0 @@
-@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600&display=swap');
-
-:root {
- /* COLOURSCHEME 1, BLUE */
- /*
- --background: #121d28;
- --text: #bbd7f2;
- --header: #bbd7f2;
- --secondary: #76baf9;
- --highlight: #7ceea7;
- */
- /* COLOURSCHEME 2, ORANGE */
- --background: #141210;
- --header: #fdb04d;
- --text: #faca8b;
- --secondary: #ee8041;
- --highlight: #ee4c41;
-}
-
-body {
- margin: 0px;
- background-color: var(--background);
-}
-
-@media (max-aspect-ratio: 6/7) {
- .contentpane {
- margin: auto;
- width: 100%;
- min-height: 100%;
- }
-}
-
-@media (min-aspect-ratio: 7/7) {
- .contentpane {
- margin: auto;
- width: 60%;
- min-height: 100%;
- }
-}
-
-h1 {
- text-align: center;
- font-family: 'Quicksand', sans-serif;
- font-size: 28pt;
- font-weight: 600;
- color: var(--header);
- padding: 50px 50px 3px 50px;
- margin: auto auto 0px auto;
-}
-
-p {
- text-align: left;
- text-indent: 25px;
- font-family: 'Quicksand', sans-serif;
- font-size: 14pt;
- color: var(--text);
- padding: 8px 50px 8px 50px;
-}
-
-a {
- color: var(--secondary);
- font-family: 'Quicksand', sans-serif;
-}
-
-a:hover {
- color: var(--highlight);
-}
-
-h3 {
- text-align: center;
- font-family: 'Quicksand', sans-serif;
- font-size: 14pt;
- font-weight: 600;
- color: var(--text);
- padding: 8px 50px 8px 50px;
-}
-
-h3.nav {
- padding: 3px 50px 8px 50px;
- margin: 0px auto auto auto;
-}
-
-ul h3 {
- font-style: italic;
- text-align: left;
- text-indent: 25px;
- padding: 8px 50px 8px 2px;
-}
-
-ul h3 a {
- font-style: italic;
-}
-
-a.backbutton {
- font-style: normal;
- font-size: 80%;
- text-decoration: none;
- padding: 0px;
-}
-
-ul {
- list-style-position: outside;
- padding: 0px 0px 0px 75px;
-}
-
-li {
- color: var(--highlight);
-}
-.footer {
- width: auto;
- margin: auto;
-}
-.ascii {
- color: var(--secondary);
-}