aboutsummaryrefslogtreecommitdiffstats
path: root/style.css
diff options
context:
space:
mode:
authoralyx <alyx@aleteoryx.me>2024-06-24 19:43:05 -0400
committeralyx <alyx@aleteoryx.me>2024-06-24 19:43:05 -0400
commit25594377c26d66c90140a136e8b096e82edd1cd9 (patch)
treef5e3c87a4906f2af41b3d6ceb4363df860a7f0b4 /style.css
parent3b515379923d36434fc77c549f045a087b588e5c (diff)
downloadso-wizard-new-25594377c26d66c90140a136e8b096e82edd1cd9.tar.gz
so-wizard-new-25594377c26d66c90140a136e8b096e82edd1cd9.tar.bz2
so-wizard-new-25594377c26d66c90140a136e8b096e82edd1cd9.zip
Import existing site
Diffstat (limited to 'style.css')
-rw-r--r--style.css90
1 files changed, 90 insertions, 0 deletions
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..3b8a5e5
--- /dev/null
+++ b/style.css
@@ -0,0 +1,90 @@
+@import url('https://fonts.googleapis.com/css2?family=Geologica&family=Montserrat+Subrayada:wght@700&display=swap');
+
+:root {
+ --text-color: hsl(99, 36%, 81%);
+ --bg-color: hsl(290, 100%, 8%);
+ --bg2-color: hsl(290, 100%, 4%);
+ --em-color: hsl(294, 42%, 65%);
+ --sub-color: hsl(294, 42%, 50%);
+ --link-color: hsl(324, 42%, 55%);
+
+ font-family: 'Geologica', sans-serif;
+}
+
+body {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+
+ margin: 0px;
+
+ background: repeating-linear-gradient(45deg, var(--bg-color), var(--bg-color) 18px, var(--bg2-color) 18px, var(--bg2-color) 21px);
+ background-attachment: fixed;
+ color: var(--text-color);
+
+ padding-top: 5mm;
+}
+
+a {
+ color: var(--link-color);
+}
+
+section, footer {
+ margin-bottom: 1cm;
+ padding: 5mm;
+ border-radius: 3.5mm;
+
+ background: #fff1;
+ backdrop-filter: blur(5px);
+
+ max-width: 20cm;
+}
+
+hgroup,
+h1, h2, h3, h4, h5, h6 {
+ font-family: 'Montserrat Subrayada', sans-serif;
+
+}
+
+h1, h2, h3, h4, h5, h6 {
+ margin-top: 0px;
+ margin-bottom: 0px;
+ color: var(--em-color)
+}
+
+hgroup > p {
+ color: var(--sub-color)
+}
+
+section > pre {
+ background: var(--bg2-color);
+ padding: 2.5mm;
+ border-radius: 2.5mm;
+
+ width: auto;
+}
+
+footer {
+ color: var(--sub-color);
+ margin-bottom: 5mm;
+}
+footer > p { margin: 0px; }
+
+code {
+ background: var(--bg2-color);
+ padding: 1mm;
+ border-radius: 2mm;
+}
+
+p {
+ line-height: 1.5;
+}
+
+:is(h1,h2,h3,h4,h5,h6) > a {
+ color: inherit;
+ text-decoration: none;
+}
+
+:is(h1,h2,h3,h4,h5,h6) > a:hover {
+ color: inherit;
+}