summaryrefslogtreecommitdiff
path: root/src/style.css
diff options
context:
space:
mode:
authorKai Stevenson <kai@kaistevenson.com>2023-08-01 15:36:09 -0700
committerKai Stevenson <kai@kaistevenson.com>2023-08-01 15:36:09 -0700
commit7175a9c8e1bfb2a19cb77d8ce5b8c9609a7b3e4d (patch)
tree3488f49c2cc83454e19f6f9f20ee52179da4e055 /src/style.css
parentd45367cc9101e4f0e03d1e77d5c7cc10b00567ba (diff)
changed phplatex to use hex
Diffstat (limited to 'src/style.css')
-rw-r--r--src/style.css149
1 files changed, 0 insertions, 149 deletions
diff --git a/src/style.css b/src/style.css
deleted file mode 100644
index 26cec6d..0000000
--- a/src/style.css
+++ /dev/null
@@ -1,149 +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;
- */
- /* COLOURSCHEME 3, RED? */
- --background: #1E1B1B;
- --text: #F5F5F5;
- --header: #F5F5F5;
- --secondary: #FF5A5F;
- --highlight: #FF8A8C;
-}
-
-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%;
- }
-}
-
-p {
- text-align: left;
- text-indent: 25px;
- font-family: 'Quicksand', sans-serif;
- font-size: 16pt;
- color: var(--text);
- padding: 8px 50px 8px 50px;
-}
-
-h1 {
- text-align: center;
- font-family: 'Quicksand', sans-serif;
- font-size: 30pt;
- font-weight: 600;
- color: var(--header);
- padding: 50px 50px 3px 50px;
- margin: auto auto 0px auto;
-}
-
-h2 {
- text-align: center;
- font-family: 'Quicksand', sans-serif;
- font-size: 24pt;
- font-weight: 600;
- color: var(--header);
- padding: 8px 50px 8px 50px;
-}
-
-h3 {
- text-align: left;
- text-indent: 55px;
- font-family: 'Quicksand', sans-serif;
- font-size: 16pt;
- font-weight: 600;
- color: var(--text);
- padding: 8px 50px 2px 50px;
-}
-
-h3.nav {
- text-align: center;
- text-indent: 0px;
- padding: 3px 50px 8px 50px;
- margin: 0px auto auto auto;
-}
-
-ul h3 {
- font-style: italic;
- text-align: left;
- text-indent: 0px;
- padding: 8px 50px 8px 50px;
-}
-
-ul h3 a {
- font-style: italic;
-}
-
-ul p {
- text-indent: 0px;
- font-family: 'Quicksand', sans-serif;
- font-size: 16pt;
- color: var(--text);
- padding: 8px 50px 8px 50px;
-}
-
-a {
- color: var(--secondary);
- font-family: 'Quicksand', sans-serif;
- text-decoration: none;
-}
-
-a:hover {
- color: var(--highlight);
-}
-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);
-}
-
-hr {
- border-color: var(--text);
- background-color: var(--text);
-}
-
-.footer {
- width: auto;
- margin: auto;
-}
-.ascii {
- color: var(--secondary);
-}