view default/static/styles.css @ 4:e6de0e67c4c1

styles: footer is now placed at the bottom of the page using flexbox
author Goffi <goffi@goffi.org>
date Sun, 16 Apr 2017 18:36:21 +0200
parents b13a26d55c64
children 9a77174abc1e
line wrap: on
line source

html {
    font-family: sans-serif;
}

header {
    font-weight: bold;
    text-align: center;
}

body {
    display: flex;
    height: 100vh;
    flex-direction: column;
    box-sizing: border-box;
    margin: 0;
    padding: 8px;
}

#body {
    flex: 1;
}

footer {
    text-align: center;
    font-size: 0.7em;
    font-weight: bold;
}