lan-2022-10/src/PartyPage.css
Kai Vogelgesang dfc2d315c4
All checks were successful
continuous-integration/drone/push Build is passing
Improve "More Infos" visibility on mobile
2022-10-11 21:23:18 +02:00

56 lines
773 B
CSS

.loading {
height: 100vh;
width: 100vw;
background-color: black;
}
.App {
color: white;
font-size: calc(10px + 2vmin);
text-shadow:
-1px -1px 0.2em #000,
1px -1px 0.2em #000,
-1px 1px 0.2em #000,
1px 1px 0.2em #000;
text-align: center;
display: flex;
justify-content: center;
}
.container {
max-width: 1024px;
}
.fullheight {
min-height: 100vh;
}
.hero {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.hero-outer {
flex-grow: 1;
display: flex;
flex-direction: column;
justify-content: center;
padding-bottom: 0.5em;
}
@media (min-width: 1024px) {
.hero-outer {
justify-content: flex-end;
}
}
h1,
h2 {
margin: 1em 0 0.1em 0;
}
p {
margin: 0.3em 0 0.3em 0;
}