diff options
| -rw-r--r-- | www/themes/mono/scuttle.css | 30 | 
1 files changed, 30 insertions, 0 deletions
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; +	} +}  | 
