nevereverever.de/styles/style.css
2026-02-13 19:31:35 +01:00

339 lines
4.6 KiB
CSS

:root {
--foreground: #1a1a1a;
--background: #fdfdfdc4;
--html-border: #c9c9c9;
--html-background: #1d5087;
--body-background: linear-gradient(to bottom, #5ab9de, #1d5087);
--blockquote-text: #606060;
--blockquote-border: #e6e6e6;
--button-primary: #e3e3e3;
--button-secondary: #d0d0d0;
}
@media (prefers-color-scheme: dark) {
:root {
--foreground: #fdfdfd;
--background: #1a1a1ac4;
--html-border: #4c4c4c;
--html-background: #391d87;
--body-background: linear-gradient(to bottom, #5a6fde, #391d87);
--blockquote-text: #e6e6e6;
--blockquote-border: #606060;
--button-primary: #4c4c4c;
--button-secondary: #404040;
}
}
html {
color: var(--foreground);
background: var(--html-background);
font-family: serif;
font-size: 14pt;
}
body {
margin: 0;
background: var(--body-background);
z-index: 0;
}
#page {
position: relative;
background-color: var(--background);
border: solid 1pt var(--html-border);
margin: 0 auto;
max-width: 48em;
padding-left: 50pt;
padding-right: 50pt;
padding-top: 50pt;
padding-bottom: 50pt;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
z-index: 2;
}
#tv-screen {
position: fixed;
top: 0;
left: 0;
z-index: 1;
}
#page-header {
padding: 4pt;
display: flex;
justify-content: space-between;
background: url("images/shark-top-small.png");
background-size: contain;
border: 1pt solid var(--html-border);
}
#page-header a {
color: var(--foreground);
padding: 4pt;
text-decoration: none;
}
.page-header-button {
background: linear-gradient(to bottom, var(--button-primary) 0%, var(--button-secondary) 100%);
border: 1pt solid var(--blockquote-border);
border-radius: 4pt;
}
.page-header-button:active {
background: linear-gradient(to bottom, var(--button-secondary) 0%, var(--button-primary) 100%);
}
.rss-button {
background: linear-gradient(to bottom, #fb9d3a 0%, #d95c29 100%);
border: 1pt solid #f2994f;
border-radius: 4pt;
}
.rss-button:active {
background: linear-gradient(to bottom, #d95c29 0%, #fb9d3a 100%);
}
#articles ul {
padding-left: 0;
}
#articles li {
list-style: none;
}
.articles-header {
margin: 8pt 0 4pt 0;
}
.articles-footer {
margin-top: 4pt;
display: flex;
justify-content: space-between;
}
.articles-title {
font-size: 14pt;
font-weight: bold;
}
.articles-author {
font-style: italic;
}
.articles-summary {
margin: 0;
}
.articles-date {
text-align: right;
}
#page-footer {
padding: 4pt;
border: 1pt solid var(--html-border);
background: url("images/shark-top-small.png");
background-size: contain;
display: flex;
justify-content: center;
}
#page-footer div {
display: flex;
flex-direction: row;
align-items: center;
}
@media (max-width: 600px) {
#page {
font-size: 0.9em;
padding: 12pt;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
border: none;
font-size: 12pt;
}
p,
h2,
h3 {
orphans: 3;
widows: 3;
}
h2,
h3,
h4 {
page-break-after: avoid;
}
a {
color: black;
}
#page {
border: none;
}
#page-header,
#page-footer {
display: none;
}
}
p {
margin: 1em 0;
}
a {
color: #268bd2;
}
a:not(:hover) {
text-decoration: none;
}
a:visited {
color: #6c71c4;
}
img {
max-width: 100%;
}
svg {
height: auto;
max-width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
margin-top: 1.4em;
}
h5,
h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol,
ul {
padding-left: 1.7em;
margin-top: 1em;
}
li>ol,
li>ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2pt solid var(--blockquote-border);
color: var(--blockquote-text);
}
code {
font-family: monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: var(--foreground);
border: none;
height: 1pt;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1pt solid var(--foreground);
border-bottom: 1pt solid var(--foreground);
}
th {
border-top: 1pt solid var(--foreground);
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC>ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}