Browse Source

search bar placeholder

master
crunk 11 months ago
parent
commit
ad11579ada
  1. 15
      library/static/css/style.css
  2. 3
      library/templates/menu.html

15
library/static/css/style.css

@ -43,6 +43,21 @@ body:after {
margin: 1em 0;
}
#tagsearch{
background: #f1f1f1;
text-decoration: none;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
border: 3px solid black;
padding: 0.8em;
margin-left: 0.3em;
font-family: inherit;
font-size: 100%;
box-shadow: 0.3em 0.35em rgba(0,0,0,0.3);
}
@supports (-webkit-text-stroke: 1px lightpink) {
#varia {
-webkit-text-stroke: 1px lightpink;

3
library/templates/menu.html

@ -25,4 +25,7 @@
{% endfor %}
</div>
</div>
<div class="dropdown">
<input id="tagsearch" type="text" placeholder="🔍 Search..">
</div>
{% endblock menu %}

Loading…
Cancel
Save