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:
+43
-23
@@ -1,32 +1,23 @@
|
||||
* {
|
||||
color: black;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
h1 {
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
p,
|
||||
small,
|
||||
label {
|
||||
color: black;
|
||||
}
|
||||
|
||||
h2 {
|
||||
color: black;
|
||||
}
|
||||
|
||||
h3 {
|
||||
color: black;
|
||||
}
|
||||
|
||||
h4 {
|
||||
color: black;
|
||||
}
|
||||
|
||||
h5 {
|
||||
color: black;
|
||||
}
|
||||
|
||||
p {
|
||||
color: black;
|
||||
}
|
||||
|
||||
small {
|
||||
a:hover {
|
||||
color: black;
|
||||
}
|
||||
|
||||
@@ -38,12 +29,17 @@ nav ul li a {
|
||||
color: black;
|
||||
}
|
||||
|
||||
code {
|
||||
background-color: #C6C6C6;
|
||||
}
|
||||
|
||||
.line {
|
||||
background-color: black;
|
||||
border-top: 1px solid black;
|
||||
}
|
||||
|
||||
.article_card {
|
||||
.article_card,
|
||||
.form_card {
|
||||
border: 5px solid black;
|
||||
}
|
||||
|
||||
@@ -51,6 +47,11 @@ nav ul li a {
|
||||
color: black;
|
||||
}
|
||||
|
||||
.button:hover {
|
||||
color: white;
|
||||
background-color: black;
|
||||
}
|
||||
|
||||
.tag {
|
||||
color: black;
|
||||
}
|
||||
@@ -62,3 +63,22 @@ nav ul li a {
|
||||
.article ul li {
|
||||
color: black;
|
||||
}
|
||||
|
||||
input,
|
||||
textarea {
|
||||
background-color: transparent;
|
||||
color: black;
|
||||
border: 3px solid black;
|
||||
}
|
||||
|
||||
.checkmark {
|
||||
border: 2px solid black;
|
||||
}
|
||||
|
||||
.form_checkbox_container:hover input~.checkmark {
|
||||
background-color: black;
|
||||
}
|
||||
|
||||
.upload_button {
|
||||
border: 3px solid black;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user