2026-02-16 14:04:45 +01:00
|
|
|
@use "abstracts/mixins.scss" as *;
|
|
|
|
|
|
2026-01-09 12:23:22 +01:00
|
|
|
#site-header{
|
|
|
|
|
height: var(--header-h);
|
|
|
|
|
width: 100vw;
|
|
|
|
|
background-color: var(--white);
|
|
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 0 var(--padding-body);
|
|
|
|
|
gap: calc(var(--unit)*2);
|
2026-02-10 17:53:47 +01:00
|
|
|
position: relative;
|
2026-02-11 10:39:01 +01:00
|
|
|
z-index: var(--header-z);
|
2026-01-09 12:23:22 +01:00
|
|
|
|
|
|
|
|
a{ text-decoration: none; }
|
|
|
|
|
|
2026-02-16 12:26:33 +01:00
|
|
|
|
2026-02-16 14:42:56 +01:00
|
|
|
// #logo-botascopia{
|
|
|
|
|
// display: flex;
|
|
|
|
|
// align-items: center;
|
|
|
|
|
// gap: 10px;
|
|
|
|
|
// svg{
|
|
|
|
|
// width: 35px;
|
|
|
|
|
// fill: var(--color-green);
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
// h1{
|
|
|
|
|
// font-family: var(--font-title);
|
|
|
|
|
// color: var(--color-txt);
|
|
|
|
|
// text-decoration: none;
|
|
|
|
|
// font-size: 25px;
|
|
|
|
|
// position: relative;
|
|
|
|
|
// top: -2px;
|
|
|
|
|
// color: var(--color-green);
|
|
|
|
|
// position: absolute;
|
|
|
|
|
// opacity: 0;
|
|
|
|
|
// }
|
|
|
|
|
|
2026-02-16 12:26:33 +01:00
|
|
|
#logo-botascopia{
|
2026-02-16 14:42:56 +01:00
|
|
|
svg{
|
|
|
|
|
width: 180px;
|
2026-02-16 12:26:33 +01:00
|
|
|
fill: var(--color-green);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-09 12:23:22 +01:00
|
|
|
h1{
|
2026-02-16 14:42:56 +01:00
|
|
|
position: absolute;
|
|
|
|
|
opacity: 0;
|
2026-01-09 12:23:22 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#site-header ul{
|
|
|
|
|
list-style: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#btn__connexion{
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
background-color: var(--color-txt);
|
|
|
|
|
color: white;
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
height: calc(var(--unit)*1.25);
|
|
|
|
|
padding: 0px 1ch;
|
|
|
|
|
border-radius: var(--radius-btn);
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2026-01-12 18:25:15 +01:00
|
|
|
|