defiance-ng/static/css/style.css
2022-07-20 15:45:04 -07:00

79 lines
No EOL
1 KiB
CSS

/* Dark Mode */
@media (prefers-color-scheme: dark) {
body {
background-color: black;
color: white;
}
a {
color: #f9e6e1;
}
}
/* Light Mode */
@media (prefers-color-scheme: light) {
body {
background-color: white;
}
}
/* Universal */
body {
justify-content: center;
}
a {
text-decoration: none;
}
header h1 {
text-align: center;
}
code {
background-color: lightslategrey;
color: white;
border-radius: 5px;
padding: 1pt;
}
footer {
text-align: center;
clear: both;
}
/* For header.html */
#nav {
background-color: #da644a;
}
#nav-button {
color: white;
padding: 0px 25px;
text-decoration: none;
}
#nav-button:hover {
background-color: #e69886;
}
/* For author.html */
#avatar {
border-radius: 8px;
max-width: 200px;
height: auto;
}
#pronouns {
color: maroon;
}
/* For meta.html */
.meta {
text-align: center;
clear: both;
}
#meta-avatar {
border-radius: 8px;
max-width: 60px;
height: auto;
}