aboutsummaryrefslogtreecommitdiff
path: root/ratatoeskr/cms_style/layout.css
diff options
context:
space:
mode:
authorKevin Chabowski <kevin@kch42.de>2011-11-13 00:32:51 +0100
committerKevin Chabowski <kevin@kch42.de>2011-11-13 00:32:51 +0100
commit2954dd17a6d4c7c733af1f11a1b7db9d6f0b08f4 (patch)
tree3ee44deaa4ebd4580f9241af9f60623802ff7229 /ratatoeskr/cms_style/layout.css
parent65ce55ab1808c8418702649a50c3b8aa7d3554d3 (diff)
downloadratatoeskr-cms-2954dd17a6d4c7c733af1f11a1b7db9d6f0b08f4.tar.gz
ratatoeskr-cms-2954dd17a6d4c7c733af1f11a1b7db9d6f0b08f4.tar.bz2
ratatoeskr-cms-2954dd17a6d4c7c733af1f11a1b7db9d6f0b08f4.zip
Improved layout for the backend.
Everything is grayscale now. I think that looks very cool!
Diffstat (limited to 'ratatoeskr/cms_style/layout.css')
-rw-r--r--ratatoeskr/cms_style/layout.css77
1 files changed, 70 insertions, 7 deletions
diff --git a/ratatoeskr/cms_style/layout.css b/ratatoeskr/cms_style/layout.css
index f206da6..30f0ac8 100644
--- a/ratatoeskr/cms_style/layout.css
+++ b/ratatoeskr/cms_style/layout.css
@@ -3,6 +3,19 @@
font-size: 10pt;
}
+a img {
+ border: none;
+}
+
+a {
+ color: #666;
+ text-decoration: underline;
+}
+
+a:hover {
+ color: black;
+}
+
body, html {
margin: 0px;
padding:0px;
@@ -154,29 +167,79 @@ h2 {
width: 100%;
}
-div.error {
+/*div.error {
border: 1px solid #f00;
background: #fcc;
color: #f00;
padding: 1em;
margin: 3mm 0mm 3mm;
text-align: center;
+}*/
+
+div.error {
+ border: 1px solid #8d8d8d;
+ background: #ddd url(images/error.png) no-repeat top left;
+ min-height: 40px;
+ color: #222;
+ padding: 1em;
+ margin: 3mm 0mm 3mm;
+ text-align: center;
}
div.notice {
- border: 1px solid #33f;
- background: #ccf;
- color: #33f;
+ border: 1px solid #8d8d8d;
+ background: #ddd url(images/notice.png) no-repeat top left;
+ min-height: 40px;
+ color: #222;
padding: 1em;
margin: 3mm 0mm 3mm;
text-align: center;
}
div.success {
- border: 1px solid #0a0;
- background: #cfc;
- color: #0a0;
+ border: 1px solid #8d8d8d;
+ background: #ddd url(images/success.png) no-repeat top left;
+ min-height: 40px;
+ color: #222;
padding: 1em;
margin: 3mm 0mm 3mm;
text-align: center;
}
+
+div.pos_center {
+ text-align: center;
+ margin: auto;
+}
+
+input.yes_btn {
+ font-weight: bold;
+ font-size: 125%;
+}
+
+input.no_btn {
+ font-weight: bold;
+ font-size: 125%;
+}
+
+table.listtab {
+ border-collapse: collapse;
+}
+
+table.listtab th {
+ font-weight: bold;
+ color: black;
+ text-align: left;
+ padding-left: 1ex;
+}
+
+table.listtab td {
+ border-top: 1px solid #eee;
+}
+
+table.listtab tr:first-child td {
+ border-top: 1px solid #666;
+}
+
+table.listtab tbody tr:hover {
+ background: #eee;
+}