Set hero image full width

This commit is contained in:
Wolfgang Huß 2024-05-20 13:29:33 +02:00
parent 3b8580edb8
commit 50589a76e2

View File

@ -22,6 +22,10 @@ $text-color: (
dark: #b3b3b3, dark: #b3b3b3,
); );
html {
margin: 0;
};
body { body {
font-family: 'Noto Sans'; font-family: 'Noto Sans';
}; };
@ -30,6 +34,16 @@ h1, h2, h3, h4 {
font-family: 'Noto Sans Bold'; font-family: 'Noto Sans Bold';
}; };
.theme-hope-content {
width: 100%;
margin: 0;
}
.theme-hope-content:not(.custom) {
max-width: max-content;
padding: 0;
}
.theme-hope-content Button { .theme-hope-content Button {
font-size: 1.1em; font-size: 1.1em;
color: var(--text-color); color: var(--text-color);
@ -89,13 +103,9 @@ h1, h2, h3, h4 {
} }
.hero-container { .hero-container {
width: auto;
background-image: linear-gradient(#282a82, #5e0d46); background-image: linear-gradient(#282a82, #5e0d46);
position: relative; width: 100%;
display: flex; margin-bottom: 0.5rem;
flex-direction: column;
justify-content: center;
margin-bottom: 1rem;
color: #eee; color: #eee;
} }