JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
better detection of running locally
[wfpl-cms.git] / style.less
index c0e5e63..5bbdc78 100644 (file)
@@ -1,12 +1,12 @@
 // dimensions
-@site-width: 940px;
-@nav-width: 200px;
-@site-gutter-width: 18px;
+@site-width: 940px; // inside the shadow
+@nav-width: 200px; // inner
+@site-gutter-width: 18px; // padding around nav and main columns
 @site-main-body-width: @site-width - 2*@site-gutter-width - @nav-width;
 
 // colors
 @site-header-color: #ddf;
-@nav-color:    #dff;
+@nav-color:    #dff; // if different than site-body-color: make sure content is taller than nav
 @site-body-color:   #fff;
 @site-window-color: #eee;
 @site-footer-color: #ddf;
@@ -20,8 +20,17 @@ body {
        margin: 0;
        padding: 0;
        color: #000;
+       background: @site-body-color; // overruled below except in wysiywyg
+       font: 14px "Liberation Sans", Arimo, Arial, sans-serif;
+}
+body.real_body_tag { // not the wysiwyg body
        background: @site-window-color;
-       font: 14px "Verdana", sans-serif;
+}
+
+// try to make the content of the editor widget approximately the same size as
+// the content will be displayed
+#cke_content {
+       margin-right: -30px;
 }
 
 #centerer {
@@ -98,6 +107,13 @@ footer {
        margin-bottom: 15px;
 }
 
+code.html {
+       display: block;
+       font: 12px monospace;
+       border: 1px solid black;
+       background: #ccc;
+}
+
 .caption {
        margin-top: 15px;
        font-weight: bold;
@@ -126,6 +142,50 @@ div.error {
        background: #fdd;
 }
 
+h1 {
+       font-size: 22px;
+       margin: 20px 0 10px;
+}
+h1 + h4.tagline {
+       margin: -10px 0 10px;
+}
+h2 {
+       font-size: 19px;
+       margin: 16px 0px 8px;
+}
+h2 + h4.tagline {
+       margin: -8px 0 8px;
+}
+h3 {
+       font-size: 16px;
+       margin: 12px 0 5px;
+}
+h3 + h4.tagline {
+       margin: -5px 0 5px;
+}
+h4 {
+       font-size: 12px;
+       margin: 10px 0 3px;
+}
+h4 + h4.tagline {
+       margin: -3px 0 3px;
+}
+
+h1, h2, h3, h4 {
+       font-weight: bold;
+}
+h4.tagline {
+       font-weight: normal
+}
+
+p.quote {
+       margin: 15px 35px;
+}
+p.attrib {
+       margin: -15px 0 15px 100px;
+}
+
+
 // floating images (from pastable example code on admin_images)
 span.wfpl_ifl {
        display: block;
@@ -142,6 +202,7 @@ span.wfpl_ifr {
        float: right;
        clear: right;
        font-size: 10px;
+       font-weight: normal;
        text-align: right;
        background-repeat: no-repeat;
        background-position: left top;
@@ -150,6 +211,7 @@ span.wfpl_ifr {
 div.wfpl_ic {
        margin: 15px auto;
        font-size: 10px;
+       font-weight: normal;
        text-align: right;
        background-repeat: no-repeat;
        background-position: center top;