Files
node-wannistesvorbei/public/style.css
Sebastian Seedorf a1df114a5a Initial commit
2021-04-17 22:31:16 +02:00

78 lines
1001 B
CSS

html {
min-height: 100%;
}
body {
font-family: 'Lato', sans-serif;
color: white;
background: rgb(131,58,180);
background: linear-gradient(11deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 50%, rgb(255,171,13) 100%);
margin: 4rem;
}
.index {
font-size: 30pt;
text-align: center;
}
.index p {
line-height: 40pt;
}
.big-number {
text-decoration: underline;
color: #41ffc3;
}
.mega-date {
font-weight: 900;
font-size: 50pt;
margin-top: 8rem;
margin-bottom: 8rem;
}
.footer {
font-size: 12pt;
}
.margin-top {
margin-top: 8rem;
}
a, a:visited {
color: white;
}
a:hover {
color: #41ffc3;
}
h1:not(:first-child) {
margin-top: 3em;
}
h2:not(:first-child) {
margin-top: 2em;
}
h3:not(:first-child) {
margin-top: 1em;
}
@media (max-width:600px) {
.index {
font-size: 20pt;
}
body {
margin: 1rem;
}
}
@media (max-width:400px) {
.index p {
line-height: unset;
}
}