diff options
author | vincent-peugnet <v.peugnet@free.fr> | 2018-05-01 11:54:39 +0200 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2018-05-01 11:54:39 +0200 |
commit | df7d23a090526aff78a60872f7ba5d1169cbc735 (patch) | |
tree | 774f83ddf46d5307a57145da07dd1cec98c41225 /public/css/stylew.css | |
parent | 5f2a948f5551f0c168e6572ba500724bddf4c576 (diff) | |
download | wcms-df7d23a090526aff78a60872f7ba5d1169cbc735.tar.gz wcms-df7d23a090526aff78a60872f7ba5d1169cbc735.zip |
summary + correction zindex
Diffstat (limited to 'public/css/stylew.css')
-rw-r--r-- | public/css/stylew.css | 202 |
1 files changed, 202 insertions, 0 deletions
diff --git a/public/css/stylew.css b/public/css/stylew.css new file mode 100644 index 0000000..86ec715 --- /dev/null +++ b/public/css/stylew.css @@ -0,0 +1,202 @@ +html { +} + +body { + background-color: #dcdcdceb; + font-family: helvetica, arial, sans-serif; + margin: 0px; + +} + +h1 { + font-size: 3em; + font-variant: all-small-caps; + margin-top: 0px; + margin-bottom: 0px; +} + +h2 { + font-style: italic; +} + +h3 { + opacity: 0.7; +} + +h6 { + font-size: 1em; +} + +p{ + font-size: 1em; +} + +em { + opacity: 0.8; +} + +a{ + text-decoration: none; +} + +a:hover{ + text-decoration: underline; +} + +img { + width: 90%; + max-width: 1000px; +} + +section { + text-align: justify; + padding: 3%; + line-height: 1.2em; +} + +.edit { + text-align: left; + padding-top: 1%; + padding-bottom: 1%; + padding-left: 8%; + padding-right: 8%; + line-height: 1.2em; +} + + +section input, textarea, select { + width: 90%; + padding-left: 15px; + padding-right: 15px; + margin: 5px; + margin-left: 5%; + margin-right: 5%; + height: 30px; + border-style: unset; +} + +article { + position: relative; + z-index: 7; +} + +#html{ + height: 1000px; +} + +#css{ + height: 100px; +} + +input[type="submit"] { + background-color: #bfbfbf; +} + +aside { + position: fixed; + bottom: 0px; + right: -300px; + padding: 7px; + z-index: 5; + background: #bfbfbf; + opacity: 0.3; + width: 350px; + overflow-y: scroll; + max-height: 70%; +} + +aside:hover { + opacity: 1; + right: 0px; +} + +nav { + position: fixed; + top: 0px; + right: -50px; + padding: 7px; + z-index: 10; + background: #6c7d8a; + opacity: 0.3; + width:100px; + border-width: 4px; + border-style: outset; +} + +nav:hover { + opacity: 1; + right: -5px; +} + +.alert h4 { + background-color: red; + margin: 0px; +} + +nav a { + color: black; + padding: 1px 4px; + font-size: 13px; + background-color: #bfbfbf; + /* text-rendering: auto; */ + /* color: initial; */ + /* letter-spacing: normal; */ + /* word-spacing: normal; */ + /* text-transform: none; */ + text-indent: 0px; + text-decoration: none; + /* text-shadow: none; */ + /* display: inline-block; */ + /* -webkit-appearance: push-button; */ + align-items: flex-start; + text-align: center; + cursor: default; + /* color: buttontext; */ + /* background-color: buttonface; */ + box-sizing: border-box; + /* padding: 2px 6px 3px; */ + border-width: 2px; + border-color: lightgrey; + border-style: outset; +} + +.submit { + position: fixed; + top: 0px; + left: 0px; + width: 8%; +} + +.thumbnail { + max-width: 30px; +} + +.infobulle { + width: 20%; + display: none; +} + +.little:hover .infobulle { + display: inline; + position: absolute; + background-color: white; + border: 1px solid black; +} + +span.infobulle img { + width: 100% +} + +.grid { + display: flex; + flex-wrap: wrap; +} + +summary { + height: 24px; + outline: none; + font-size: 1.4em; + background-color: #bdbdbd; + margin-top: 3px; + margin-bottom: 3px; +}
\ No newline at end of file |