diff static/css/agora.less @ 87:e0348cfbdf48

Update styling of snippets page Some other CSS changes too. Work-in-progress.
author dellsystem <ilostwaldo@gmail.com>
date Fri, 24 Aug 2012 23:45:48 -0400
parents 343d79b20dd5
children f872c643b056
line wrap: on
line diff
--- a/static/css/agora.less	Fri Aug 24 23:42:18 2012 -0400
+++ b/static/css/agora.less	Fri Aug 24 23:45:48 2012 -0400
@@ -174,13 +174,60 @@
 }
 
 h1 {
-    font-size: 3.0em;
+    font-size: 2.1em;
 }
 
 h2 {
-    font-size: 2.0em;
+    font-size: 1.7em;
 }
 
 p {
     padding: 5px 0;
 }
+
+.snippetform {
+    input[type=text], textarea {
+        width: @nonSidebarWidth - @inputPadding * 2 - 2;
+        padding: 5px;
+        margin: 10px 0;
+        outline: none;
+        border: 1px solid @mediumGrey;
+        .border-radius(3px);
+        line-height: 20px;
+
+        &:focus {
+            border-color: @lightBlue;
+        }
+    }
+}
+
+#sidebar {
+    width: @sidebarWidth - @sidebarPadding * 2;
+    padding: @sidebarPadding;
+    min-height: 300px;
+    background: @lighterGrey;
+    .inline-block;
+}
+
+#non-sidebar {
+    .inline-block;
+    width: @nonSidebarWidth;
+    padding-right: @sidebarLeftSpace;
+    vertical-align: top;
+}
+
+.hint {
+    border: 1px solid @lightBlue;
+    background: lighten(@mediumBlue, 40%);
+    padding-left: 10px;
+    margin-bottom: 10px;
+    padding-top: 10px;
+}
+
+hr {
+    border: 0;
+    border-top: 1px solid @mediumGrey;
+    & + p {
+        margin-top: 10px;
+    }
+}