diff options
author | vincent-peugnet <v.peugnet@free.fr> | 2018-07-31 18:29:53 +0200 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2018-07-31 18:29:53 +0200 |
commit | e9b2ca7c06875069fa03379258625490872cc33d (patch) | |
tree | 3af763a303f07c75d63ca9801c98e58fa9052628 /public/css/stylehome.css | |
parent | c36f25e76f40c6fdd6e02f92713d9c1241ed0a79 (diff) | |
download | wcms-e9b2ca7c06875069fa03379258625490872cc33d.tar.gz wcms-e9b2ca7c06875069fa03379258625490872cc33d.zip |
W 2.4 graphic update table sort engine update
Diffstat (limited to 'public/css/stylehome.css')
-rw-r--r-- | public/css/stylehome.css | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/public/css/stylehome.css b/public/css/stylehome.css new file mode 100644 index 0000000..b2e8c73 --- /dev/null +++ b/public/css/stylehome.css @@ -0,0 +1,56 @@ +div#options { + background-color: var(--color1); +} + +#home2table { + background-color: var(--color3); +} + +header { + background-color: var(--color1); +} + + + + +section.home { + margin-top: 20px; + display: inline-flex; + width: 100%; +} + +header { + position: fixed; + width: 100%; + border: ridge 1px grey; +} + + +div#options { + width: 15%; + list-style: none; +} + + +#home2table { + width: 85%; +} + +#options ul { + list-style: none; + margin: 0; + padding: 0; +} + + +#home2table tr:hover { + background-color: var(--color1); +} + +#home2table th { + background-color: var(--color1); + border: ridge 1px grey; +} + + + |