summaryrefslogtreecommitdiff
path: root/css
diff options
context:
space:
mode:
authordabikers' admin <dabikers@protonmail.com>2024-01-18 09:30:30 -0600
committerdabikers' admin <dabikers@protonmail.com>2024-01-18 09:30:30 -0600
commitcce24c42dfb758f21fca10084d2743adc993b110 (patch)
treea05d73ee0d786e2e267fd24742fd5fee29f2f284 /css
parent584acc74758571ef9701c1f742964b0de9b966d0 (diff)
Add services page
Diffstat (limited to 'css')
-rw-r--r--css/base.css13
-rw-r--r--css/nopiracy.css14
-rw-r--r--css/services.css0
-rw-r--r--css/subpage.css13
4 files changed, 19 insertions, 21 deletions
diff --git a/css/base.css b/css/base.css
index 42b6c80..f235ebf 100644
--- a/css/base.css
+++ b/css/base.css
@@ -19,7 +19,7 @@
19/* */ 19/* */
20 20
21:root { 21:root {
22 --bheight: 3vw; 22 --bheight: 3vw; /* min-content This feels hackey but it works & stops overflow */
23 23
24 --cblack: #000000; 24 --cblack: #000000;
25 --cwhite: #ffffff; 25 --cwhite: #ffffff;
@@ -70,6 +70,9 @@ a {
70 padding: 1vw; 70 padding: 1vw;
71 margin: 1vw; 71 margin: 1vw;
72 margin-bottom: 5vw; /* Not knowing about this was fucking annoying */ 72 margin-bottom: 5vw; /* Not knowing about this was fucking annoying */
73
74 overflow: auto;
75 overflow-wrap: break-word;
73} 76}
74 77
75#top-bar { 78#top-bar {
@@ -133,7 +136,7 @@ a {
133 text-align: center; 136 text-align: center;
134 137
135 /* overflow: auto; Idk why this is "overflowing" but this should be a good enough fix fow now */ 138 /* overflow: auto; Idk why this is "overflowing" but this should be a good enough fix fow now */
136 overflow: hidden; 139 overflow: auto;
137} 140}
138 141
139#bottom-flex { 142#bottom-flex {
@@ -165,12 +168,8 @@ a {
165 float: none; 168 float: none;
166} 169}
167 170
168#content {
169 overflow: auto;
170}
171
172#copyrightnotice { 171#copyrightnotice {
173 display: inline-block; 172 display: inline-block;
174 font-size: 75%; 173 font-size: 50%;
175 color: rgba(255, 255, 255, 0.15); 174 color: rgba(255, 255, 255, 0.15);
176} \ No newline at end of file 175} \ No newline at end of file
diff --git a/css/nopiracy.css b/css/nopiracy.css
index f328fa4..ed05a56 100644
--- a/css/nopiracy.css
+++ b/css/nopiracy.css
@@ -24,20 +24,6 @@ a.bad {
24 color: var(--cwarning); 24 color: var(--cwarning);
25} 25}
26 26
27.sbscontainer {
28 display: flex;
29 flex-direction: row;
30 flex-wrap: nowrap;
31 justify-content: center;
32 align-items: center;
33 align-content: center;
34}
35
36#addon {
37 font-size: 4vw;
38 padding: 1vw;
39}
40
41blockquote { 27blockquote {
42 padding: 1vw; 28 padding: 1vw;
43} \ No newline at end of file 29} \ No newline at end of file
diff --git a/css/services.css b/css/services.css
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/css/services.css
diff --git a/css/subpage.css b/css/subpage.css
new file mode 100644
index 0000000..8e5255f
--- /dev/null
+++ b/css/subpage.css
@@ -0,0 +1,13 @@
1.sbscontainer {
2 display: flex;
3 flex-direction: row;
4 flex-wrap: nowrap;
5 justify-content: center;
6 align-items: center;
7 align-content: center;
8}
9
10#addon {
11 font-size: 4vw;
12 padding: 1vw;
13} \ No newline at end of file