diff options
Diffstat (limited to 'local.scss')
-rw-r--r-- | local.scss | 17 |
1 files changed, 16 insertions, 1 deletions
@@ -94,7 +94,7 @@ a { float: left; margin: 1em 5% 4.2em; @include breakpoint($large-desktop) { - margin-left: 25%; + margin-left: 15%; } } @@ -209,3 +209,18 @@ a { .pageheader .actions ul { border-bottom: 0; } + +@media screen and (max-width: 980px) { + .page { + background: yellow; + } +} +@media screen and (max-width: 700px) { + .page { + background: green; + } +}@media screen and (max-width: 480px) { + .page { + background: red; + } +} |