1
0
Fork 0
mirror of https://git.sr.ht/~seirdy/seirdy.one synced 2024-09-20 04:12:09 +00:00
seirdy.one/assets/css/main.css

94 lines
2 KiB
CSS
Raw Normal View History

/* CSS that adds the bare minimum for a simple layout */
/* This site's CSS does 10 major things:
* 1. sans-serif instead of serif for low-res screens.
* 2. Consistent font size; <pre> and <code> shouldn't be smaller than
* regular text.
* 3. max text width for readability
* 4. single-row nav links widescreen, multiline nav on narrow screens
2021-06-14 04:05:58 +00:00
* 5. Soft border around code in case it looks too similar to regular
* text, and to show it continue across more than one line
* 6. Increase the line-spacing a bit.
* 7. Horizontally center non-inline images; left-aligned stick out.
2021-06-14 04:05:58 +00:00
* 8. dark.css changes a few colors if the browser wants dark mode.
* 9. Support unstyled lists: for webmentions, post lists, nav links.
* 10. Make blockquotes look okay on narrow screens.
* Everything else is browser defaults:
* default fonts, non-dark-mode colors, etc.
*/
2020-12-27 05:04:25 +00:00
body {
font: 100%/1.5em sans-serif;
margin: auto;
max-width: 50em;
2020-12-27 05:04:25 +00:00
padding: 0 5%;
}
h1,
h2,
h3 {
line-height: 1.25;
}
blockquote {
border-left: 6px solid #bbb;
margin-left: 0;
padding-left: 1em;
}
/* nav links should be easy to tap with fat fingers */
nav li {
padding-right: 0.5em;
}
/* Lists without bullets; navlinks, posts lists, webmentions */
.unstyled-list {
padding: 0;
}
.unstyled-list li {
list-style-type: none;
margin-bottom: 0.5em;
}
/* single-line nav o4 widescreen, multi-line nav on narrow screens */
@media (min-width: 24rem) {
nav li {
display: inline;
}
}
2020-11-30 21:17:15 +00:00
/* center images that aren't my indieweb icon */
img:not(.u-photo) {
display: block;
height: auto;
margin: auto;
2020-12-12 10:42:45 +00:00
max-width: 100%;
}
code,
pre {
/* browsers make <pre> small for some dumb legacy reason
* and this somehow fixes that. */
/* stylelint-disable -- compatibility hack */
font-family: monospace, monospace;
/* csslint ignore:end */
}
2020-12-12 10:42:45 +00:00
pre,
p code {
border: 1px solid #bbb;
padding: 0 0.1em;
}
2020-11-30 21:17:15 +00:00
/* Allow horizontal scroll in a pre block, but don't clip it vertically */
2020-12-12 10:42:45 +00:00
pre {
/* csslint ignore:start */
overflow: auto visible;
/* csslint ignore:end */
padding: 0.5rem;
}