diff --git a/static/themes/default/css/plinth.css b/static/themes/default/css/plinth.css index a6b5dfb08..f5e7ee090 100644 --- a/static/themes/default/css/plinth.css +++ b/static/themes/default/css/plinth.css @@ -63,6 +63,12 @@ body { background: url('../img/noise.png') #f1f1f1; } +@media (max-width: 767px) { + body { + background: none; + } +} + .multiple-checkbox li { list-style-type: none; } @@ -178,13 +184,18 @@ html { } .content-container { - padding: 25px 50px 50px; - background-color: white; - border: 1px solid #ddd; - border-radius: 4px; margin-bottom: 20px; } +@media (min-width: 768px) { + .content-container { + padding: 25px 50px 50px; + background-color: white; + border: 1px solid #ddd; + border-radius: 4px; + } +} + footer { text-align: center; position: relative;