about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCase Duckworth2022-07-24 22:11:05 -0500
committerCase Duckworth2022-07-24 22:11:05 -0500
commit1104cbd155fc551eee24308572f7381b46b40e09 (patch)
treed520d84790be528fd079db210a1d79b341c1ab29
parentVariable-ize colors (thanks dozens!) (diff)
downloadsfeed-1104cbd155fc551eee24308572f7381b46b40e09.tar.gz
sfeed-1104cbd155fc551eee24308572f7381b46b40e09.zip
Fix margins and widths
-rw-r--r--style.css17
1 files changed, 10 insertions, 7 deletions
diff --git a/style.css b/style.css index 0934393..bdcb305 100644 --- a/style.css +++ b/style.css
@@ -22,10 +22,18 @@ body {
22main { 22main {
23 display: flex; 23 display: flex;
24 flex-flow: row nowrap; 24 flex-flow: row nowrap;
25 margin: auto;
26 max-width: 150ch;
25} 27}
26 28
27#items { 29main section {
28 max-width: 70ch; 30 max-width: 100ch;
31}
32
33main aside {
34 flex-grow: 1;
35 text-align: right;
36 max-width: 40ch;
29} 37}
30 38
31header { 39header {
@@ -100,11 +108,6 @@ tr:nth-child(odd),
100 background: var(--alt-background); 108 background: var(--alt-background);
101} 109}
102 110
103aside {
104 flex-grow: 1;
105 text-align: right;
106}
107
108aside li { 111aside li {
109 list-style: none; 112 list-style: none;
110} 113}