diff 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
line wrap: on
line diff
--- a/css/style.css	Wed May 08 17:42:11 2024 -0400
+++ b/css/style.css	Mon May 20 02:49:07 2024 -0400
@@ -10,19 +10,25 @@
 	font-family: sans-serif;
 }
 
-/* make links not look like pure shite */
+/* makes links look good site-wide; not a fan of
+ * making them purple after being visited, so disable
+ * it here */
 a.prettylink:link, a.prettylink:visited {
 	color: #3395ff;
 	text-decoration: none;
 }
 
-a.prettylink:link:hover {
+a.prettylink:hover {
 	text-decoration: underline;
 }
 
+a.prettylink:active {
+	color: hotpink;
+}
+
 /* navbar */
 .navbar {
-	display: flex;
+	/* display: flex; */
 
 	background-color: rgba(0, 0, 0, 0.6);
 	color: white;
@@ -121,3 +127,13 @@
 	width: 200px;
 	height: auto;
 }
+
+.blog-footer,
+.blog-date-right {
+	font-size: smaller;
+}
+
+.align-right,
+.blog-date-right {
+	float: inline-end;
+}