about summary refs log tree commit diff
path: root/uploader/static/css/layout-common.css
blob: 88e580c68c7bd888bc420ad2c1091cce75341df6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
* {
    box-sizing: border-box;
}

    body {
        display: grid;
        grid-gap: 1em;
    }

    #header {
        margin: -0.7em; /* Fill entire length of screen */
        /* Define layout for the children elements */
        display: grid;
    }

    #header #header-nav {
        /* Place it in the parent element */
        grid-column-start: 1;
        grid-column-end: 2;
        display: flex;
    }