Skip to content

Commit

Permalink
css tinkering
Browse files Browse the repository at this point in the history
  • Loading branch information
fuzzy committed Jun 13, 2024
1 parent a083cd2 commit c864eb7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -122,16 +122,16 @@ pre {
* Wrapper
*/
.wrapper {
max-width: -webkit-calc(800px - (30px * 2));
max-width: calc(800px - (30px * 2));
max-width: -webkit-calc(1400px - (30px * 2));
max-width: calc(1400px - (30px * 2));
margin-right: auto;
margin-left: auto;
padding-right: 30px;
padding-left: 30px; }
@media screen and (max-width: 800px) {
@media screen and (max-width: 1000px) {
.wrapper {
max-width: -webkit-calc(800px - (30px));
max-width: calc(800px - (30px));
max-width: -webkit-calc(1000px - (30px));
max-width: calc(1000px - (30px));
padding-right: 15px;
padding-left: 15px; } }

Expand Down

0 comments on commit c864eb7

Please sign in to comment.