defiance-ng/static/css/style.css

220 lines
3.8 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-09-06 13:37:55 -07:00
color: #FF535D;
2022-08-24 16:46:32 -07:00
}
2022-09-07 14:18:57 -07:00
pre, code {
2022-08-24 16:46:32 -07:00
background-color: #3B3C43;
color: #E7DBDA;
2022-07-31 17:08:31 -07:00
}
2022-09-07 14:18:57 -07:00
.author-name {
background-color: #B5ADAD;
border-radius: 4px;
padding: 5px 10px;
font-family: 'Liberation Mono', monospace;
}
.author-name:hover {
background-color: #CEC4C4;
}
.tag {
background-color: #34353B;
border-radius: 4px;
padding: 5px 10px;
font-family: 'Liberation Mono', monospace;
}
.tag:hover {
background-color: #2D2E33;
}
}
/* Light Mode */
@media (prefers-color-scheme: light) {
body {
2022-08-24 16:47:38 -07:00
background-color: #E7DBDA;
}
2022-07-31 17:08:31 -07:00
a {
text-decoration: none;
color: #FF535D;
2022-08-24 16:46:32 -07:00
}
2022-09-07 14:18:57 -07:00
pre, code {
2022-08-24 16:46:32 -07:00
background-color: #A9A2A2;
color: #1f2023;
2022-07-31 17:08:31 -07:00
}
2022-09-07 14:18:57 -07:00
.author-name {
background-color: #34353B;
border-radius: 4px;
padding: 5px 10px;
font-family: 'Liberation Mono', monospace;
}
.author-name:hover {
background-color: #2D2E33;
}
.tag {
background-color: #B5ADAD;
border-radius: 4px;
padding: 5px 10px;
font-family: 'Liberation Mono', monospace;
}
.tag:hover {
background-color: #CEC4C4;
}
}
2022-09-14 16:44:58 -07:00
.iframecontainer {
position: relative;
overflow: hidden;
width: 100%;
padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}
iframe {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
width: 100%;
height: 100%;
}
/* 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
}
img {
max-width: 100%;
max-height: 100%;
}
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;
2022-09-07 13:57:29 -07:00
font-family: 'Remingtoned Type';
}
#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';
}
2022-09-18 19:00:34 -07:00
body, p, h4, h5, tr, td {
2022-08-24 16:46:32 -07:00
font-family: 'Liberation Sans';
}
p {
font-size: 16pt;
}
body {
font-size: 14pt;
}
nav {
font-size: 20pt;
}
pre, code {
font-family: 'Liberation Mono', monospace;
}
2022-09-13 15:46:33 -07:00
/* For Content Warnings */
label {
display: none;
}
#cw:checked + label {
display: block;
}