about summary refs log tree commit diff
path: root/uploader/static/css/layout-common.css
blob: 9c9d034f424e65c21a8b591162a4507bc026837a (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;
}