Files
rezepte/hugo/assets/css/dark.css
Elias Kohout 699d2f9bcf
Some checks are pending
Build and Push Docker Container / build-and-push (push) Waiting to run
cleanup
2025-03-15 01:01:27 +01:00

47 lines
538 B
CSS

::-moz-selection {
background: blue;
color: #fff;
text-shadow: none;
}
::selection {
background: red;
color: #fff;
text-shadow: none;
}
main > header > h1 {
border-bottom: 6px solid var(--darkMaincolor);
}
body {
color: white;
background-color: #202124;
}
hr {
border-top: 3px dotted blue;
}
a {
border-bottom: 3px solid var(--darkMaincolor);
color: inherit;
}
a:hover {
background-color: var(--darkMaincolor);
color: black;
}
h1,
h2,
h3,
h4,
h5,
h6 {
color: #ddd;
}
.footer {
border-color: #333;
}