82 lines
2.0 KiB
Plaintext
82 lines
2.0 KiB
Plaintext
---
|
|
import Login from "#sidebarCards/card-login.svelte";
|
|
---
|
|
|
|
<header>
|
|
|
|
<div class="grid relative bg-white items-center gap-4 pt-4 px-0
|
|
|
|
grid-cols-1
|
|
sm:grid-cols-1
|
|
md:grid-cols-1
|
|
|
|
lg:grid-cols-[1fr_minmax(450px,450px)] lg:gap-3 lg:px-4 lg:py-4
|
|
xl:grid-cols-[1fr_minmax(450px,450px)] xl:gap-4 xl:px-6 xl:py-4
|
|
2xl:grid-cols-[1fr_minmax(450px,450px)] 2xl:gap-5 2xl:px-6 2xl:py-4">
|
|
|
|
<div class="justify-self-center xs:justify-self-start">
|
|
|
|
<div class="grid grid-cols-1 px-2 gap-2 gap-y-1
|
|
xs:grid-cols-[max-content,1fr] xs:gap-x-2 xs:px-4
|
|
md:gap-y-4
|
|
lg:px-0 lg:gap-x-4">
|
|
|
|
<div class="self-start justify-self-start">
|
|
<a href="/">
|
|
<img class="w-full
|
|
xs:max-w-[64px]
|
|
sm:max-w-[64px]
|
|
md:max-w-[64px] md:ml-6
|
|
lg:max-w-[64px] lg:ml-0
|
|
xl:max-w-[94px] xl:ml-0
|
|
"
|
|
src="/images/header/logo-IBC-big.svg" alt="IBCornelsen-Logo"/>
|
|
</a>
|
|
</div>
|
|
|
|
<div class="self-center justify-self-center md:justify-self-start xs:mt-[20px] md:mt-[18px]">
|
|
<div class="text-secondary justify-self-center
|
|
xs:[font-size:_clamp(15px,5vw,36px)] xs:justify-self-start xs:leading-[36px]
|
|
|
|
lg:[font-size:_clamp(15px,3vw,26px)]
|
|
lg:leading-[2rem]
|
|
xl:[font-size:_clamp(15px,3vw,36px)]
|
|
xl:leading-[4.5rem] pt-[0px]">
|
|
Energieausweis online erstellen</div>
|
|
<div class="text-primary justify-self-center
|
|
xs:[font-size:_clamp(15px,4vw,28px)] xs:justify-self-start xs:leading-[20px]
|
|
|
|
lg:[font-size:_clamp(15px,3vw,20px)]
|
|
lg:leading-[2rem]
|
|
xl:[font-size:_clamp(15px,3vw,24px)]
|
|
xl:leading-[0.5rem]">
|
|
Energieausweise nach aktuellem GEG</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="w-full justify-self-center">
|
|
<Login client:load />
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<div class="col-start-1 col-span-3">
|
|
<div class="px-2 flex flex-row w-full justify-end items-center bg-primary
|
|
lg:h-[12px] xl:h-[12px]"></div>
|
|
<div class="px-2 flex flex-row w-full justify-end items-center bg-secondary
|
|
lg:h-[0px] xl:h-[0px]"></div>
|
|
</div>
|
|
|
|
</header>
|
|
|
|
<style>
|
|
.header-button {
|
|
@apply px-4 py-2 text-primary-content font-medium text-lg tracking-normal hover:bg-secondary h-full;
|
|
}
|
|
</style> |