diff options
author | Gabriel Pérez-Cerezo <gabriel@gpcf.eu> | 2018-07-17 16:00:44 +0200 |
---|---|---|
committer | Gabriel Pérez-Cerezo <gabriel@gpcf.eu> | 2018-07-17 16:00:44 +0200 |
commit | b94a6df756f80890ca0c04d9c08e05eb7b87870c (patch) | |
tree | 74a34ddded993d2428506a290ec369c87899e960 /export | |
parent | 95679599de538a4833dd873f0630e5819b60db10 (diff) | |
download | hemiptera-b94a6df756f80890ca0c04d9c08e05eb7b87870c.tar.gz hemiptera-b94a6df756f80890ca0c04d9c08e05eb7b87870c.tar.bz2 hemiptera-b94a6df756f80890ca0c04d9c08e05eb7b87870c.zip |
Various html improvements
Diffstat (limited to 'export')
-rw-r--r-- | export/styles.css | 59 |
1 files changed, 57 insertions, 2 deletions
diff --git a/export/styles.css b/export/styles.css index 51f797e..691d870 100644 --- a/export/styles.css +++ b/export/styles.css @@ -6,7 +6,7 @@ padding: 1em; /* border-radius: 0.5em;*/ background-color: #eee; - max-width: 35em; + max-width: 40em; padding-bottom: 0; } @@ -15,7 +15,7 @@ header { padding: 1em; padding-top: 0.1em; background-color: #eee; - margin: 0; + margin: 1em; margin-bottom: 1em; max-width: 40em; } @@ -67,7 +67,14 @@ td { tr.closed { background: #dee; + font-style: italic; +} + +tr.closed td.id { + text-decoration: line-through; + text-decoration: red double line-through; } + table tr.closed:nth-child(odd) { background: #cdd; } @@ -130,3 +137,51 @@ table { margin: 1em } + +/* mailto form */ + +form { + padding: 1em; + border: 1px solid #aaa; + max-width: 40em; + margin: 1em; + border-radius: 3px; +} + +form textarea { + max-width: 100%; + width: 100%; + height: 20em; + min-width: 100%; +} + +input[type=text] { + width: auto; +} + +input[type=submit] { + padding: 0.2em; + margin: 0.5em; + margin-left: auto; + margin-right: auto; +} + +h5.form { + margin: -1em; + padding: 1em; + font-size: 1em; + background-color: #aaa; + margin-bottom: 1em; +} + +.floatbarrier { + clear:both; +} + +.devavatars { + border: 1px solid #aaa; + padding: 0.5em; +} +.devavatars img { + margin-bottom: 0.5em; +} |