Skip to content
style.css 1.33 KiB
Newer Older
Bengfort's avatar
Bengfort committed
:root {
Bengfort's avatar
Bengfort committed
    font-family: sans-serif;
Bengfort's avatar
Bengfort committed
    font-size: 120%;
Bengfort's avatar
Bengfort committed
    line-height: 1.6;
    color: #333;
    text-align: center;
}

body {
    margin: 0;
}

h1, h2, h3, h4, h5, h6, .subtitle {
Bengfort's avatar
Bengfort committed
    font-family: serif;
Bengfort's avatar
Bengfort committed
    color: #006c66;
Bengfort's avatar
Bengfort committed
    line-height: 1.2;
}
h1 {
    margin: 0;
    font-size: 250%;
}
.subtitle {
Bengfort's avatar
Bengfort committed
    font-family: sans-serif;
Bengfort's avatar
Bengfort committed
    font-size: 120%;
}
h2 {
Bengfort's avatar
Bengfort committed
    font-family: sans-serif;
Bengfort's avatar
Bengfort committed
    font-size: 80%;
    text-transform: uppercase;
Bengfort's avatar
Bengfort committed
    margin-bottom: 3em;
Bengfort's avatar
Bengfort committed
}

blockquote {
    font-size: 150%;
}
blockquote footer {
    font-size: 1rem;
    margin-top: -1em;
}

.container {
    max-width: 50em;
    margin: 0 auto;
    padding: 0 0.5em;
}

.block {
    padding: 2em 0;
}
Bengfort's avatar
Bengfort committed
header.block {
    padding: 4em 0;
}
Bengfort's avatar
Bengfort committed

.bg-green {
Bengfort's avatar
Bengfort committed
    background-color: #00786c;
Bengfort's avatar
Bengfort committed
    color: #fff;
}
.bg-darkgreen {
Bengfort's avatar
Bengfort committed
    background-color: #006c66;
Bengfort's avatar
Bengfort committed
    color: #fff;
}
.bg-green a,
.bg-darkgreen a {
    color: inherit;
    text-decoration: none;
}
.bg-grey {
    background: #eee;
}

.tiles-features {
    display: grid;
    gap: 1em 3em;
    grid-template-columns: repeat(1, 1fr);
}

.tiles-links {
    margin: 0;
    padding: 0;
    list-style: none;

    display: grid;
    gap: 3em;
    justify-content: space-around;
Bengfort's avatar
Bengfort committed
    grid-template-columns: repeat(auto-fit, 4em);
Bengfort's avatar
Bengfort committed
}

@media (min-width: 36em) {
    .tiles-features {
        grid-template-columns: repeat(2, 1fr);
    }
}