diff options
-rw-r--r-- | static/style.css | 10 | ||||
-rw-r--r-- | static/ui.html | 2 |
2 files changed, 9 insertions, 3 deletions
diff --git a/static/style.css b/static/style.css index 852ae77..09b6263 100644 --- a/static/style.css +++ b/static/style.css @@ -120,6 +120,12 @@ h3 { height: 100%; overflow-y: auto; background-color: #ccc; + transition-property: left; + transition-duration: .4s; +} + +#filters.hidden { + left: -13rem; } #tags, #feeds { @@ -163,8 +169,8 @@ pre { line-height: 1em; z-index: 1; cursor: pointer; - width: 5rem; - background-color: #ccc; + width: 1.5rem; + font-size: 3rem; } .hasunread { diff --git a/static/ui.html b/static/ui.html index cae2c56..3067029 100644 --- a/static/ui.html +++ b/static/ui.html @@ -14,7 +14,7 @@ <meta name="viewport" content="width=device-width,height=device-height, initial-scale=1, maximum-scale=1" /> </head> <body> - <h1 class="logo" onclick="$('#filters').toggle();">😸neko</h1> + <h1 class="logo" onclick="$('#filters').toggleClass('hidden');">😸</h1> <div id="filters"> |