search bar placeholder

This commit is contained in:
crunk 2023-06-05 20:18:28 +02:00
parent eb016d23bb
commit ad11579ada
2 changed files with 18 additions and 0 deletions

View File

@ -43,6 +43,21 @@ body:after {
margin: 1em 0; 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) { @supports (-webkit-text-stroke: 1px lightpink) {
#varia { #varia {
-webkit-text-stroke: 1px lightpink; -webkit-text-stroke: 1px lightpink;

View File

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