Skip to content

Commit

Permalink
Allow a slightly bigger max-width step for main
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewgodwin committed Jan 16, 2023
1 parent 3333178 commit 5309ef4
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions static/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ body {
}

main {
width: 900px;
width: 1100px;
margin: 20px auto;
box-shadow: 0 0 50px rgba(0, 0, 0, 0.6);
border-radius: 5px;
Expand Down Expand Up @@ -344,7 +344,7 @@ nav a i {
.left-column {
flex-grow: 1;
width: 300px;
max-width: 700px;
max-width: 900px;
padding: 15px;
}

Expand Down Expand Up @@ -1702,6 +1702,12 @@ form .post {
color: var(--color-text-dull);
}

@media (max-width: 1100px) {
main {
max-width: 900px;
}
}

@media (max-width: 920px),
(display-mode: standalone) {
.left-column {
Expand Down

0 comments on commit 5309ef4

Please sign in to comment.