2020-12-16 07:18:18 +00:00
|
|
|
/* CSS that adds the bare minimum for a simple layout */
|
|
|
|
|
2021-06-27 02:35:49 +00:00
|
|
|
/* This site's CSS does 10 major things:
|
2020-12-16 07:18:18 +00:00
|
|
|
* 1. sans-serif instead of serif for low-res screens.
|
2021-06-27 02:35:49 +00:00
|
|
|
* 2. Consistent font size; <pre> and <code> shouldn't be smaller than
|
|
|
|
* regular text.
|
2022-02-28 23:05:14 +00:00
|
|
|
* 3. max content width for readability
|
2020-12-16 07:18:18 +00:00
|
|
|
* 4. single-row nav links widescreen, multiline nav on narrow screens
|
2022-02-27 01:18:44 +00:00
|
|
|
* 5. Soft border around code and images to disginguish from the
|
|
|
|
* surrounding page. Images with white/black or transparent
|
|
|
|
* backgrounds should have clear dimensions, and multiple consecutive
|
|
|
|
* inline <code> spans should look separate. A <code> span that
|
|
|
|
* continues across multiple lines should not look like multiple different
|
|
|
|
* spans.
|
2021-08-30 22:08:59 +00:00
|
|
|
* 6. Increase the line-spacing a bit so users on mobile devices can
|
|
|
|
* tap links more easily.
|
2021-06-27 02:35:49 +00:00
|
|
|
* 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.
|
2021-06-27 02:35:49 +00:00
|
|
|
* 9. Support unstyled lists: for webmentions, post lists, nav links.
|
2022-02-27 01:18:44 +00:00
|
|
|
* 10. Narrow screen optimization: less-indented blockquotes, overflow
|
2022-02-28 22:18:21 +00:00
|
|
|
* behavior for <pre>, no figure margins.
|
2020-12-16 07:18:18 +00:00
|
|
|
* Everything else is browser defaults:
|
|
|
|
* default fonts, non-dark-mode colors, etc.
|
|
|
|
*/
|
2020-12-27 05:04:25 +00:00
|
|
|
|
2021-08-30 22:08:59 +00:00
|
|
|
html {
|
|
|
|
font: 100%/1.5 sans-serif;
|
2020-12-16 07:18:18 +00:00
|
|
|
margin: auto;
|
2022-03-04 21:55:58 +00:00
|
|
|
max-width: 45em;
|
2021-08-30 22:08:59 +00:00
|
|
|
padding: 0 3%;
|
2021-06-27 02:35:49 +00:00
|
|
|
}
|
|
|
|
|
2022-02-28 23:05:14 +00:00
|
|
|
/* narrow screens: no margin for blockquotes and figures */
|
2021-06-27 02:35:49 +00:00
|
|
|
blockquote {
|
|
|
|
border-left: 6px solid #bbb;
|
|
|
|
margin-left: 0;
|
|
|
|
padding-left: 1em;
|
2021-01-28 19:00:47 +00:00
|
|
|
}
|
|
|
|
|
2022-03-04 21:55:58 +00:00
|
|
|
/* narrow screens: remove figure margin. */
|
2022-02-28 22:18:21 +00:00
|
|
|
figure {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2020-12-16 07:18:18 +00:00
|
|
|
/* nav links should be easy to tap with fat fingers */
|
2020-12-19 02:30:34 +00:00
|
|
|
nav li {
|
2021-06-27 02:35:49 +00:00
|
|
|
padding-right: 0.5em;
|
2020-11-03 23:46:20 +00:00
|
|
|
}
|
|
|
|
|
2022-03-04 21:55:58 +00:00
|
|
|
/* Lists without bullets: navlinks, posts lists, webmentions */
|
2021-01-18 03:42:07 +00:00
|
|
|
.unstyled-list {
|
2022-03-04 21:55:58 +00:00
|
|
|
padding-left: 0;
|
2020-12-20 02:01:50 +00:00
|
|
|
}
|
|
|
|
|
2021-01-18 03:42:07 +00:00
|
|
|
.unstyled-list li {
|
2020-12-20 02:01:50 +00:00
|
|
|
list-style-type: none;
|
2021-06-27 02:35:49 +00:00
|
|
|
margin-bottom: 0.5em;
|
2020-12-20 02:01:50 +00:00
|
|
|
}
|
|
|
|
|
2021-08-30 22:08:59 +00:00
|
|
|
/* single-line nav on widescreen, multi-line nav on narrow screens */
|
2022-03-08 06:30:16 +00:00
|
|
|
@media (min-width: 32em) {
|
2022-02-22 22:00:52 +00:00
|
|
|
nav li {
|
2020-12-16 07:18:18 +00:00
|
|
|
display: inline;
|
|
|
|
}
|
2020-11-03 23:46:20 +00:00
|
|
|
}
|
2020-11-30 21:17:15 +00:00
|
|
|
|
2022-03-04 21:55:58 +00:00
|
|
|
/* browsers make <pre> small for some dumb legacy reason
|
|
|
|
* and this somehow fixes that. */
|
2021-06-27 02:35:49 +00:00
|
|
|
code,
|
|
|
|
pre {
|
|
|
|
/* stylelint-disable -- compatibility hack */
|
|
|
|
font-family: monospace, monospace;
|
|
|
|
|
2022-02-22 22:00:52 +00:00
|
|
|
/* stylelint-enable */
|
2021-06-27 02:35:49 +00:00
|
|
|
}
|
|
|
|
|
2022-02-28 23:05:14 +00:00
|
|
|
/* Narrow screens: long words can cause content to flow out of the
|
|
|
|
* viewport, triggering horizontal scrolling. Allow breaking words in
|
|
|
|
* content I don't control (comments). For content I do control, I just
|
|
|
|
* add soft hyphens to the HTML. */
|
|
|
|
.u-comment,
|
2022-02-22 22:00:52 +00:00
|
|
|
:not(pre) > code {
|
2022-02-27 01:18:44 +00:00
|
|
|
overflow-wrap: break-word;
|
|
|
|
|
2022-02-28 23:05:14 +00:00
|
|
|
/* borders shouldn't touch text */
|
|
|
|
padding: 0 0.1em;
|
2020-11-25 01:09:26 +00:00
|
|
|
}
|
2020-11-30 21:17:15 +00:00
|
|
|
|
2022-02-28 23:05:14 +00:00
|
|
|
/* Narrow screens: allow horizontal scroll in a pre block, but don't
|
|
|
|
* clip it vertically */
|
2020-12-12 10:42:45 +00:00
|
|
|
pre {
|
2020-12-16 07:18:18 +00:00
|
|
|
/* csslint ignore:start */
|
|
|
|
overflow: auto visible;
|
2020-11-03 23:46:20 +00:00
|
|
|
|
2020-12-16 07:18:18 +00:00
|
|
|
/* csslint ignore:end */
|
2022-02-15 00:44:59 +00:00
|
|
|
padding: 0.5em;
|
2020-11-03 23:46:20 +00:00
|
|
|
}
|
2022-02-28 23:05:14 +00:00
|
|
|
|
|
|
|
/* Distinguish images from the background in case their color is
|
|
|
|
* too similar to the page background color. Also put a border around
|
|
|
|
* <pre> so that it looks just like <code> (see below). */
|
|
|
|
img,
|
|
|
|
pre,
|
|
|
|
:not(pre) > code {
|
|
|
|
border: 1px solid #bbb;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* center images that aren't my indieweb icon */
|
2022-03-09 03:30:51 +00:00
|
|
|
img:not(.u-photo) {
|
2022-02-28 23:05:14 +00:00
|
|
|
display: block;
|
|
|
|
height: auto;
|
|
|
|
margin: auto;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|