aboutsummaryrefslogtreecommitdiff
path: root/ratatoeskr/cms_style
diff options
context:
space:
mode:
authorKevin Chabowski <kevin@kch42.de>2011-11-09 23:31:45 +0100
committerKevin Chabowski <kevin@kch42.de>2011-11-09 23:31:45 +0100
commit37ae61fe6d76f72e4bd5567256ee4dd494649dab (patch)
tree14cd58a614a818bc1990968f9fb0eac695e6ea9b /ratatoeskr/cms_style
parent11515220f3e47ac11e9239b358aceca1ee2e7269 (diff)
downloadratatoeskr-cms-37ae61fe6d76f72e4bd5567256ee4dd494649dab.tar.gz
ratatoeskr-cms-37ae61fe6d76f72e4bd5567256ee4dd494649dab.tar.bz2
ratatoeskr-cms-37ae61fe6d76f72e4bd5567256ee4dd494649dab.zip
Hooray! First backend function implemented (content/write)!
And it only took over a month. That's what I call efficiency.... NOT!
Diffstat (limited to 'ratatoeskr/cms_style')
-rw-r--r--ratatoeskr/cms_style/layout.css32
1 files changed, 29 insertions, 3 deletions
diff --git a/ratatoeskr/cms_style/layout.css b/ratatoeskr/cms_style/layout.css
index 42ea1bc..f206da6 100644
--- a/ratatoeskr/cms_style/layout.css
+++ b/ratatoeskr/cms_style/layout.css
@@ -111,7 +111,7 @@ h1 {
min-width: 300px;
}
-code, code pre {
+code, code pre, code * {
font-family: monospace;
background: #eee;
}
@@ -150,7 +150,33 @@ h2 {
clear: both;
}
-form.fullwidthinputs input[type="text"], form.fullwidthinputs input[type="password"], form.fullwidthinputs select, form.fullwidthinputs textarea {
+.fullwidth {
width: 100%;
- margin:0mm;
+}
+
+div.error {
+ border: 1px solid #f00;
+ background: #fcc;
+ color: #f00;
+ padding: 1em;
+ margin: 3mm 0mm 3mm;
+ text-align: center;
+}
+
+div.notice {
+ border: 1px solid #33f;
+ background: #ccf;
+ color: #33f;
+ padding: 1em;
+ margin: 3mm 0mm 3mm;
+ text-align: center;
+}
+
+div.success {
+ border: 1px solid #0a0;
+ background: #cfc;
+ color: #0a0;
+ padding: 1em;
+ margin: 3mm 0mm 3mm;
+ text-align: center;
}