nixhacks.net/assets/css/old.css
2022-08-07 14:03:38 +03:00

74 lines
1.3 KiB
CSS
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/* С Bludit версии Nixhacks.
*
* Надо позаимствовать отсюда переключение тем день/ночь */
:root {
--b: #000;
--g: #888;
--w: #fff
}
body {
font: 400 18px/1.6 sans-serif;
padding: 2rem;
background: var(--w);
color: var(--b)
}
.container { max-width: 70ch }
.mbh { margin: 0 0 .5rem }
.mb1 { margin: 0 0 1rem }
.mb2 { margin: 0 0 2rem }
.g, pre { color: var(--g); overflow: auto; }
img { width: 100%; image-rendering: -moz-crisp-edges; image-rendering: pixelated }
a, a:visited { color: var(--b); text-decoration-color: var(--g) }
a:hover { text-decoration-color: var(--b) }
pre, ul, ol, blockquote { margin: 0; padding: 0 1rem }
/*pre { white-space: pre-wrap }*/
@media (prefers-color-scheme: dark) {
:root {
--b: #fff;
--g: #888;
--w: #000
}
}
.links-content {
margin: 18px 0 28px 16px;
display: inline-block;
}
.links-content ul {
padding: 0;
}
.links-content ul li {
margin: 0;
padding: 0;
padding-right: 8px;
display: inline-block;
list-style: none;
}
.links-content ul li::before {
content: '|';
position: relative;
left: -6px;
}
.links-content ul li:first-child::before {
content: none;
}
.links-label {display: inline-block;}
.separator::after {
content: '- - -';
}
.copyright {
margin-top: 28px;
}