From 37ae61fe6d76f72e4bd5567256ee4dd494649dab Mon Sep 17 00:00:00 2001 From: Kevin Chabowski Date: Wed, 9 Nov 2011 23:31:45 +0100 Subject: Hooray! First backend function implemented (content/write)! And it only took over a month. That's what I call efficiency.... NOT! --- ratatoeskr/cms_style/layout.css | 32 +++++++++++++++++++++++++++++--- 1 file changed, 29 insertions(+), 3 deletions(-) (limited to 'ratatoeskr/cms_style/layout.css') 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; } -- cgit v1.2.3-54-g00ecf