diff options
author | vincent-peugnet <v.peugnet@free.fr> | 2019-01-08 20:02:52 +0100 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2019-01-08 20:02:52 +0100 |
commit | acdbc686630f523cee598a95415b515d531b2bde (patch) | |
tree | 6c7f8760f21c046119cbe8b019a704825a2cf09c /assets/css | |
parent | 7de50d7cc8722d229564488152bfb242adc2c80c (diff) | |
download | wcms-acdbc686630f523cee598a95415b515d531b2bde.tar.gz wcms-acdbc686630f523cee598a95415b515d531b2bde.zip |
multi edit
Diffstat (limited to 'assets/css')
-rw-r--r-- | assets/css/home.css | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/assets/css/home.css b/assets/css/home.css index 1b61b25..f9c0a99 100644 --- a/assets/css/home.css +++ b/assets/css/home.css @@ -5,7 +5,7 @@ div#flex { display: flex; - height: -webkit-fill-available; + height: 100%; } div#options { @@ -23,6 +23,10 @@ body { background-color: lightgrey; font-family: monospace; font-size: 15px; + position: fixed; + display: flex; + flex-direction: column; + width: 100%; } .menu { @@ -41,7 +45,6 @@ tr:hover { #topbar { background-color: #7b97b9; - position: fixed; width: 100%; padding: 3px 0.5%; } @@ -70,8 +73,9 @@ th { } main { - padding-top: 30px; margin: 0 0.5%; + flex: 1; + overflow-y: auto; } main.admin input, select, textarea { @@ -234,6 +238,12 @@ main.media code { +td.code { + background-color: darkslategrey; +} + + + main.user table form { display: inline-block; } |