remove search command text since it interferes with mobile phones

This commit is contained in:
Peter 2025-03-16 19:40:53 -04:00
parent 30e8347b6c
commit a37ff92523
3 changed files with 4 additions and 27 deletions

2
.gitignore vendored
View file

@ -2,5 +2,5 @@
/public/
/themes/
/resources/
/static/misc.images
/static/misc

View file

@ -6,9 +6,9 @@ code { padding: 2px 4px; font-size: 90%; border-radius: 4px; background-color: #
.searchprompt {
color: #4b4b4b;
font-size: 12px;
margin-left: 42em;
margin-left: -26.7em;
position: absolute;
top:24px;
top:68px;
overflow: hidden;
}
@ -16,7 +16,7 @@ code { padding: 2px 4px; font-size: 90%; border-radius: 4px; background-color: #
visibility: hidden;
position: absolute;
right: 0px;
top: 70px;
top: 12px;
display: inline-block;
width: 340px;
}

View file

@ -1,23 +0,0 @@
<header class="headerWrapper">
<div class="header">
<div>
<a class="terminal" href="{{ .Site.BaseURL | relLangURL }}">
<span>{{ .Site.Params.user }}@{{ .Site.Params.hostname }} ~ $</span>
</a>
</div>
<input class="side-menu" type="checkbox" id="side-menu">
<label class="hamb" for="side-menu"><span class="hamb-line"></span></label>
<p><span class="searchprompt">Buscar: Presiona Meta (tecla Win) + /</span></p>
<nav class="headerLinks">
<ul>
{{ range .Site.Menus.header }}
<li>
<a href="{{ .URL | absLangURL }}" title="{{ .Title }}" >
~/{{- .Name -}}
</a>
</li>
{{ end }}
</ul>
</nav>
</div>
</header>