defiance-ng/static/css/style.css

152 lines
2.4 KiB
CSS
Raw Normal View History

/* Dark Mode */
@media (prefers-color-scheme: dark) {
body {
2022-08-24 16:46:32 -07:00
background-color: #1f2023;
color: #E7DBDA;
}
2022-07-31 17:08:31 -07:00
a {
text-decoration: none;
2022-08-24 16:46:32 -07:00
color: #DB9181;
}
code {
background-color: #3B3C43;
color: #E7DBDA;
2022-07-31 17:08:31 -07:00
}
}
/* Light Mode */
@media (prefers-color-scheme: light) {
body {
background-color: white;
}
2022-07-31 17:08:31 -07:00
a {
text-decoration: none;
2022-08-24 16:46:32 -07:00
color: #DB9181;
}
code {
background-color: #A9A2A2;
color: #1f2023;
2022-07-31 17:08:31 -07:00
}
}
/* Universal */
2022-07-20 14:27:20 -07:00
body {
2022-07-20 14:57:54 -07:00
justify-content: center;
2022-07-20 14:27:20 -07:00
}
2022-07-20 14:57:54 -07:00
header h1 {
text-align: center;
}
2022-07-20 14:27:20 -07:00
2022-07-20 14:57:54 -07:00
code {
border-radius: 5px;
padding: 1pt;
2022-07-20 14:27:20 -07:00
}
2022-07-20 14:57:54 -07:00
footer {
text-align: center;
clear: both;
}
2022-07-20 14:27:20 -07:00
2022-08-15 16:55:54 +00:00
#content {
margin: 25px 50px 75px;
}
2022-07-20 14:57:54 -07:00
/* For header.html */
#nav {
2022-08-24 16:46:32 -07:00
background-color: #F14B25;
}
#nav-button {
2022-08-24 16:46:32 -07:00
color: #E7DBDA;
padding: 0px 25px;
2022-07-20 14:57:54 -07:00
text-decoration: none;
2022-07-20 14:27:20 -07:00
}
2022-07-20 14:57:54 -07:00
#nav-button:hover {
2022-08-24 16:46:32 -07:00
background-color: #DB691A;
2022-07-20 14:27:20 -07:00
}
2022-07-20 14:57:54 -07:00
/* For author.html */
#avatar {
border-radius: 8px;
max-width: 200px;
height: auto;
}
#pronouns {
2022-08-24 16:46:32 -07:00
color: #FF535D;
2022-07-20 14:27:20 -07:00
}
/* For meta.html */
.meta {
text-align: center;
clear: both;
2022-07-20 14:57:54 -07:00
}
#meta-avatar {
border-radius: 8px;
max-width: 60px;
height: auto;
2022-08-15 16:55:54 +00:00
}
2022-08-24 16:46:32 -07:00
/* Fonts */
/* Remingtoned Type - latin */
@font-face {
font-family: 'Remingtoned Type';
font-style: normal;
font-weight: 400;
font-display: swap;
src: local(''),
url('fonts/remingtonedtype.ttf');
}
/* Liberation Sans - latin */
@font-face {
font-family: 'Liberation Sans';
font-style: normal;
font-weight: 400;
font-display: swap;
src: local(''),
url('fonts/LiberationSans-Regular.ttf');
}
/* Liberation Mono - latin */
@font-face {
font-family: 'Liberation Mono';
font-style: normal;
font-weight: 400;
font-display: swap;
src: local(''),
url('fonts/LiberationMono-Regular.ttf');
}
/* OpenDyslexic - latin */
@font-face {
font-family: 'OpenDyslexic';
font-style: normal;
font-weight: 400;
font-display: swap;
src: local(''),
url('fonts/OpenDyslexic-Regular.otf') format('opentype');
}
h1, h2, h3 {
font-family: 'Remingtoned Type';
}
p, h4, h5 {
font-family: 'Liberation Sans';
}
p {
font-size: 16pt;
}
body {
font-size: 14pt;
}
nav {
font-size: 20pt;
}
pre, code {
font-family: 'Liberation Mono', monospace;
}