23 lines
606 B
SCSS
23 lines
606 B
SCSS
|
.header {
|
||
|
height: var(--header-height);
|
||
|
/* background-image: url(https://source.unsplash.com/random/1080x720/?Kombucha); */
|
||
|
background-image: url(/images/fond.webp);
|
||
|
background-repeat: none;
|
||
|
background-size: cover;
|
||
|
background-position: center;
|
||
|
text-align: center;
|
||
|
|
||
|
.title {
|
||
|
padding: calc(var(--h1-size) / 4);
|
||
|
background-color: var(--color-red3);
|
||
|
color: var(--color-white);
|
||
|
line-height: .5;
|
||
|
text-align: right;
|
||
|
|
||
|
small {
|
||
|
color: var(--color-yellow2);
|
||
|
font-size: calc(var(--h1-size) / 2);
|
||
|
}
|
||
|
}
|
||
|
}
|