From: Silvio Rhatto Date: Mon, 15 Oct 2018 23:15:29 +0000 (-0300) Subject: Themes: mono: mobile first behavior X-Git-Tag: v0.98.6~2 X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=0d0a2e3382e804ba9d69dd27fe70c41659ef0c05;p=semanticscuttle.git Themes: mono: mobile first behavior --- diff --git a/www/themes/mono/scuttle.css b/www/themes/mono/scuttle.css index 02f261f..7f2e50e 100644 --- a/www/themes/mono/scuttle.css +++ b/www/themes/mono/scuttle.css @@ -671,3 +671,33 @@ a.bookmarklet { .ui-autocomplete { width: 458px; } + +/* Mobile First behavior */ + +#search, #sidebar { + visibility: hidden; + display: none; +} + +ol#bookmarks { + width: 95%; +} + +#welcome { + width: 80%; +} + +@media only screen and (min-width : 800px) { + #search, #sidebar { + visibility: inherit; + display: inherit; + } + + ol#bookmarks { + width: inherit; + } + + #welcome { + width: inherit; + } +}