summaryrefslogtreecommitdiffhomepage
path: root/src/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'src/style.css')
-rw-r--r--src/style.css11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/style.css b/src/style.css
index b642fad..753de28 100644
--- a/src/style.css
+++ b/src/style.css
@@ -201,7 +201,12 @@ dl {
.gsp-val { color: var(--aqua); }
.gsp-op { color: var(--lesser); }
-@media (min-width: 40em) {
+.article {
+ display: flex;
+ justify-content: space-between;
+}
+
+@media (min-width: 800px) {
body {
font-size: 1.3rem;
line-height: 1.5;
@@ -267,11 +272,13 @@ dl {
abbr.xml::before { content: 'Extensible Markup Language'; }
}
-@media (max-width: 40em) {
+@media (max-width: 600px) {
body { tab-size: 4; }
main { margin-block-end: 2rem; }
h1, h2, p { overflow-wrap: break-word; hyphens: auto; }
header > div { display: block; }
ul, menu { padding-inline-start: 0; }
:where(ul, menu) > li:not(:last-of-type) { margin-block-end: .3rem; }
+ .article { display: block; }
+ .article > * { display: block; }
}