Skip to content
style.css 1021 B
Newer Older
Bengfort's avatar
Bengfort committed
.container {
    max-width: var(--breakpoint-md, 768px);
}

Bengfort's avatar
Bengfort committed
.full-width {
    overflow-x: auto;
}
Bengfort's avatar
Bengfort committed

Bengfort's avatar
Bengfort committed
@media (min-width: 768px) {
Bengfort's avatar
Bengfort committed
    .full-width {
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
Bengfort's avatar
Bengfort committed
    }
    .full-width > * {
Bengfort's avatar
Bengfort committed
        width: auto;
        min-width: 738px;  /* 768px - 2 * 15px (padding) */
        margin: 0 auto;
Bengfort's avatar
Bengfort committed

[data-animation="success"] {
    position: relative;
}

[data-animation="success"]::after {
    content: "\f00c";  /* fa-check */
    font-family: FontAwesome;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 1.2em;
    line-height: 1.2em;
    box-sizing: content-box;
    margin-right: -0.6em;
    margin-top: -0.6em;
    border-radius: 50%;
    text-align: center;
    color: var(--white);
    background-color: var(--success);
    opacity: 0;
    transition: opacity 300ms ease;
}

[data-animation="success"].animation-active::after {
    opacity: 1;
}