Files
Hyperlight/layouts/partials/header.html

19 lines
544 B
HTML

<style>
@keyframes blinker {
50% {
opacity: 0;
}
}
</style>
<header class="header">
<div style="font-size: 2em;">
<span style="margin-bottom: -0.4;">HYPER
<hr style="width: 100%; border: 3px solid #7df9ff; border-radius: 5px; margin-bottom: -0.4em; margin-top: -0.39em;">
LIGHT <small style="font-size: 0.6em;">Technical Services</small>
<img src="lightning-helix.png" style="height: 100px; width: 100px; animation: blinker 1s linear;"/>
</div>
{{ if len $.Site.Menus }}
{{ partial "menu.html" . }}
{{ end }}
</header>