comparison css/style.css @ 78:5fdf5f346b92

*: use jekyll for templates, blogging, etc. I changed the pages to now use templates, so adding new stuff should be much much easier in the future
author Paper <paper@paper.us.eu.org>
date Mon, 20 May 2024 02:49:07 -0400
parents d69f3fe99911
children 815c0da68384
comparison
equal deleted inserted replaced
77:d9242232f51d 78:5fdf5f346b92
8 body { 8 body {
9 color: white; 9 color: white;
10 font-family: sans-serif; 10 font-family: sans-serif;
11 } 11 }
12 12
13 /* make links not look like pure shite */ 13 /* makes links look good site-wide; not a fan of
14 * making them purple after being visited, so disable
15 * it here */
14 a.prettylink:link, a.prettylink:visited { 16 a.prettylink:link, a.prettylink:visited {
15 color: #3395ff; 17 color: #3395ff;
16 text-decoration: none; 18 text-decoration: none;
17 } 19 }
18 20
19 a.prettylink:link:hover { 21 a.prettylink:hover {
20 text-decoration: underline; 22 text-decoration: underline;
23 }
24
25 a.prettylink:active {
26 color: hotpink;
21 } 27 }
22 28
23 /* navbar */ 29 /* navbar */
24 .navbar { 30 .navbar {
25 display: flex; 31 /* display: flex; */
26 32
27 background-color: rgba(0, 0, 0, 0.6); 33 background-color: rgba(0, 0, 0, 0.6);
28 color: white; 34 color: white;
29 35
30 padding: 5px; 36 padding: 5px;
119 125
120 border: 4px solid black; 126 border: 4px solid black;
121 width: 200px; 127 width: 200px;
122 height: auto; 128 height: auto;
123 } 129 }
130
131 .blog-footer,
132 .blog-date-right {
133 font-size: smaller;
134 }
135
136 .align-right,
137 .blog-date-right {
138 float: inline-end;
139 }