Newer
Older
html-examples / styles / styles.css
@Aris Green Aris Green on 22 Apr 2024 418 bytes initial commit
html, body {
    height: 100vh;
    overflow: hidden;
}

.main-layout {
    display: flex;
    flex-direction: column;
    height: 100%;

}

.main-layout header {
    background-color: blueviolet;
}

.main-layout main {
    flex-grow: 1;
    flex-shrink: 1;
    overflow-y: auto;
}

.main-layout footer {
    background-color: blue;
}

.hero {
    font-size: 40pt;
    height: 10em;
    background-color: aquamarine;
}