summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSiri Reiter <siri@jones.dk>2009-04-06 01:22:53 +0200
committerSiri Reiter <siri@jones.dk>2009-04-06 01:22:53 +0200
commit0f52535b383a95abf9807a27559683952a43d9f7 (patch)
tree54651e0304caf8a8b511f5635a27c9f0e7212101
parentfe12e66d3c35671fbdb6b04b6428a8316fd0661e (diff)
Add notebox and change backgroud colours.
-rw-r--r--local.css24
1 files changed, 19 insertions, 5 deletions
diff --git a/local.css b/local.css
index 7a12b975..80450bc9 100644
--- a/local.css
+++ b/local.css
@@ -2,7 +2,7 @@ H1,
H2,
H3 {
margin-bottom: 0;
- color: darkblue;
+ color: darkred;
}
H4,
@@ -32,7 +32,7 @@ p {
BODY {
margin: 0;
- background-color: LightBlue;
+ background-color: white;
font-family: sans-serif;
text-align: center;
}
@@ -129,9 +129,10 @@ DIV#wrapper {
DIV#content {
clear: both;
margin: 3em auto 1em;
- padding: 0;
+ padding: 1em;
max-width: 52em;
text-align: left;
+ background-color: lightblue;
}
DIV#content IMG {
@@ -144,16 +145,29 @@ DIV#content IMG {
DIV.inlinepage {
border: 0;
padding: 1em;
- background-color: white;
+ background-color: yellow;
}
DIV.inlinepage SPAN.header a {
font-size: 0.9em;
font-weight: normal;
- color: darkblue;
+ color: black;
text-transform: uppercase;
}
DIV.inlinefooter {
display: none;
}
+
+DIV.notebox {
+ color: #9cf !important;
+ background: lightblue;
+ border: none;
+ margin-right: -480px;
+ width: 200px;
+}
+
+DIV.notebox p {
+ color: #06c;
+ text-align: left;
+}