summaryrefslogtreecommitdiff
path: root/css/base.css
diff options
context:
space:
mode:
authordabikers' admin <dabikers@protonmail.com>2023-12-29 23:35:15 -0600
committerdabikers' admin <dabikers@protonmail.com>2023-12-29 23:35:15 -0600
commitf43e0e78a8d4e2eaa6779762d662810833fbd424 (patch)
treea864dcc86cae941eefb07c8e384960f9b8951436 /css/base.css
parentc8164e33939db7910318c05bccb26ad55ed3e21d (diff)
Make the site look a little nicer
Diffstat (limited to 'css/base.css')
-rw-r--r--css/base.css80
1 files changed, 75 insertions, 5 deletions
diff --git a/css/base.css b/css/base.css
index bed4b11..6a23e01 100644
--- a/css/base.css
+++ b/css/base.css
@@ -24,6 +24,10 @@ body {
24 margin: 0; 24 margin: 0;
25} 25}
26 26
27ul li {
28 list-style-type: '- ';
29}
30
27#content { 31#content {
28 margin: 1%; 32 margin: 1%;
29} 33}
@@ -33,9 +37,12 @@ body {
33 margin: 0; 37 margin: 0;
34 38
35 display: flex; 39 display: flex;
36 justify-content: left; 40 flex-direction: row;
41 flex-wrap: wrap;
42 justify-content: space-between;
37 align-items: center; 43 align-items: center;
38 44 align-content: center;
45
39 height: 5vw; 46 height: 5vw;
40 47
41 background-color: black; 48 background-color: black;
@@ -44,6 +51,8 @@ body {
44 position: -webkit-sticky; 51 position: -webkit-sticky;
45 position: sticky; 52 position: sticky;
46 top: 0; 53 top: 0;
54
55 font-family: 'zai_courier_polski_1941Rg', 'Courier New', Courier, monospace;
47} 56}
48 57
49#top-bar h1 { 58#top-bar h1 {
@@ -51,8 +60,10 @@ body {
51 padding: 0; 60 padding: 0;
52 61
53 text-align: left; 62 text-align: left;
54 font-family: 'zai_courier_polski_1941Rg', Courier, monospace;
55 font-size: 500%; 63 font-size: 500%;
64
65 display: inline;
66 float: left;
56} 67}
57 68
58#top-bar a { 69#top-bar a {
@@ -60,6 +71,65 @@ body {
60 text-decoration: none; 71 text-decoration: none;
61} 72}
62 73
63ul li { 74#top-bar li {
64 list-style-type: '- '; 75 list-style: none;
76 display: inline;
77 float: none;
78}
79#top-bar li a::before {
80 content: "[";
81}
82#top-bar li a::after {
83 content: "]";
84}
85
86
87#bottom-bar {
88 padding: 1%;
89 margin: 0;
90
91 height: 3vw;
92 width: 100vw;
93
94 background-color: black;
95 color: white;
96
97 position: fixed;
98 bottom: 0;
99
100 list-style-type: none;
101
102 font-family: 'zai_courier_polski_1941Rg', 'Courier New', Courier, monospace;
103 text-align: center;
104}
105
106#bottom-flex {
107 display: flex;
108 justify-content: center;
109 align-items: center;
110}
111
112#bottom-bar a {
113 color: inherit;
114 text-decoration: none;
115 font-weight: bold;
116}
117
118/* Surround links with square brackets in the footer */
119#bottom-bar a::before {
120 content: "[";
121}
122#bottom-bar a::after {
123 content: "]";
124}
125
126#bottom-bar li {
127 display: inline;
128 float: none;
129}
130
131#copyrightnotice {
132 display: inline-block;
133 font-size: 75%;
134 color: rgba(255, 255, 255, 0.15);
65} \ No newline at end of file 135} \ No newline at end of file