implemented article composer functionality + interface, login & signup functionality + interface, auth permission functionality reflected in the nav, and determined a unified accent color accessible in dark and light mode

This commit is contained in:
Joshua Ashton
2025-03-25 13:09:05 -06:00
parent c0fc9e9d00
commit 0a27cd1f5c
11 changed files with 624 additions and 53 deletions
+39 -2
View File
@@ -1,3 +1,7 @@
* {
color: white;
}
body {
background-color: black;
}
@@ -9,7 +13,11 @@ h4,
h5,
p,
small,
a {
label {
color: white;
}
a:hover {
color: white;
}
@@ -17,6 +25,10 @@ nav {
border-bottom: 3px solid white;
}
nav ul li a {
color: white;
}
code {
background-color: #2F2F2F;
}
@@ -26,7 +38,8 @@ code {
border-top: 1px solid white;
}
.article_card {
.article_card,
.form_card {
border: 5px solid white;
}
@@ -34,6 +47,11 @@ code {
color: white;
}
.button:hover {
color: black;
background-color: white;
}
.tag {
color: white;
}
@@ -45,3 +63,22 @@ code {
.article ul li {
color: white;
}
input,
textarea {
background-color: transparent;
color: white;
border: 3px solid white;
}
.checkmark {
border: 2px solid white;
}
.form_checkbox_container:hover input~.checkmark {
background-color: white;
}
.upload_button {
border: 3px solid white;
}