diff options
author | vincent-peugnet <v.peugnet@free.fr> | 2018-03-18 20:20:03 +0100 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2018-03-18 20:20:03 +0100 |
commit | aad58a057640120027650ab3847212ba1178538e (patch) | |
tree | 4df845231c53b88e35e4e3f2225eb70cfde3c21b /public/css | |
parent | 2060e198b1f9ac41deee93848417121fb1c066f5 (diff) | |
download | wcms-aad58a057640120027650ab3847212ba1178538e.tar.gz wcms-aad58a057640120027650ab3847212ba1178538e.zip |
version 01
Diffstat (limited to 'public/css')
-rw-r--r-- | public/css/style.css | 72 |
1 files changed, 68 insertions, 4 deletions
diff --git a/public/css/style.css b/public/css/style.css index ca04f38..245258c 100644 --- a/public/css/style.css +++ b/public/css/style.css @@ -1,6 +1,25 @@ -body {background-color: #dcdcdceb;} +body { + background-color: #dcdcdceb; -input, textarea, select { +} + +h1 { + font-size: 3em; +} + +h2 { + font-style: italic; +} + +h3 { + opacity: 0.7; +} + +p{ + font-size: 1.1em; +} + +article input, textarea, select { width: 90%; padding-left: 15px; padding-right: 15px; @@ -10,6 +29,51 @@ input, textarea, select { height: 30px; border-style: unset; } -textarea { - height: 1000px; +#html{ + height: 400px; +} + +#css{ + height: 100px; +} + +input[type="submit"] { + background-color: #bfbfbf; +} + +aside { + position: fixed; + bottom: 0px; + right: -300px; + padding: 7px; + z-index: 5; + background: coral; + opacity: 0.3; + width: 350px; +} + +aside:hover { + opacity: 0.9; + right: 0px; +} + +nav { + position: fixed; + top: 0px; + right: -50px; + padding: 7px; + z-index: 10; + background: #5085ff; + opacity: 0.3; + width:100px; +} + +nav:hover { + opacity: 0.9; + right: 0px; +} + +.alert h4 { + background-color: red; + margin: 0px; }
\ No newline at end of file |