infokiosque/_src/js/layout.html

45 lines
783 B
HTML

<style>
@import url("../styles/global.css");
:host {
margin-top: 0;
}
header {
margin-bottom: 10vh;
}
header h1 {
font-size: 1.5em;
font-family: "Degheest Director";
font-weight: 600;
}
header h1 > a {
display: grid;
grid-template-columns: 75px 1fr;
gap: 15px;
align-items: center;
color: inherit;
text-decoration: none;
}
header h1 img {
width: 100%;
}
header h1 small {
display: block;
}
</style>
<header>
<h1><a href="/">
<img src="/_src/img/logo_kiosque.svg" alt="Logo du site" />
<span>Infokiosques du LOL <small>Brochures et autres textes</small></span>
</a></h1>
</header>
<slot></slot>