diff options
Diffstat (limited to 'uploader/static/css/layout-common.css')
| -rw-r--r-- | uploader/static/css/layout-common.css | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/uploader/static/css/layout-common.css b/uploader/static/css/layout-common.css new file mode 100644 index 0000000..88e580c --- /dev/null +++ b/uploader/static/css/layout-common.css @@ -0,0 +1,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; + } |
