diff options
| author | Georg | 2021-05-22 03:13:53 +0200 |
|---|---|---|
| committer | Georg | 2021-05-22 03:13:53 +0200 |
| commit | cc4ef9b16bcc694bdf536adae00169f7dfb9507a (patch) | |
| tree | 64e7c3deb176f0aef565e859511fa15a738bc50a /test-data/web/default.css.example | |
| download | mailcow-cc4ef9b16bcc694bdf536adae00169f7dfb9507a.tar.gz mailcow-cc4ef9b16bcc694bdf536adae00169f7dfb9507a.tar.bz2 mailcow-cc4ef9b16bcc694bdf536adae00169f7dfb9507a.zip | |
Initial
Diffstat (limited to 'test-data/web/default.css.example')
| -rw-r--r-- | test-data/web/default.css.example | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/test-data/web/default.css.example b/test-data/web/default.css.example new file mode 100644 index 0000000..09219ad --- /dev/null +++ b/test-data/web/default.css.example @@ -0,0 +1,55 @@ +body { + background-color: #F0F0F0; +} + +/************************************ + * Classes that plugins should use. * + ************************************/ + +/* Error pages */ +body.error { + text-align: center; +} +body.error p { + background-color: #FFE0E0; + border: 1px #FFA0A0 solid; +} + +/* Pages that only contain a list. */ +.purelisting { + text-align: center; +} +.purelisting ul { + margin: 0; + padding: 0; +} +.purelisting ul li { + margin: 0; + padding: 0; + list-style-type: none; +} + +/* Pages that only contain a table. */ +.puretable { + text-align: center; +} +.puretable table +{ + width: 100%; + border-collapse: collapse; + text-align: center; +} + +.puretable table th +{ + /*color: #039;*/ + padding: 10px 8px; + border-bottom: 2px solid #6678b1; +} + +.puretable table td +{ + padding: 9px 8px 0px 8px; + border-bottom: 1px solid #ccc; +} + |
