changeset 121:095be78bf0fa

Bootstrap: table and title styling.
author Brian Neal <bgneal@gmail.com>
date Sat, 26 Oct 2013 17:15:55 -0500
parents e82fd2b7be2f
children 9c6a5de62402
files static/css/theme.css
diffstat 1 files changed, 29 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/static/css/theme.css	Sat Oct 26 16:55:05 2013 -0500
+++ b/static/css/theme.css	Sat Oct 26 17:15:55 2013 -0500
@@ -6,6 +6,22 @@
    background-color: #213442;
    color: #EF7C21;
 }
+
+h1 small,
+h2 small,
+h3 small,
+h4 small,
+h5 small,
+h6 small,
+.h1 small,
+.h2 small,
+.h3 small,
+.h4 small,
+.h5 small,
+.h6 small {
+  color: #b96a03;
+}
+
 .top-buffer {
    margin-top: 2em;
 }
@@ -33,10 +49,6 @@
 }
 
 blockquote {
-  border-left: 5px solid #6e2d1b;
-  border-left: 5px solid #b96a03;
-  border-left: 5px solid #8f8a6d;
-  border-left: 5px solid #41819d;
   border-left: 3px solid #b96a03;
 }
 blockquote small {
@@ -127,3 +139,16 @@
   background-color: #213442;
   border-color: #b96a03;
 }
+
+.table-striped > tbody > tr:nth-child(odd) > td,
+.table-striped > tbody > tr:nth-child(odd) > th {
+  background-color: #296b9d;
+}
+.table thead > tr > th,
+.table tbody > tr > th,
+.table tfoot > tr > th,
+.table thead > tr > td,
+.table tbody > tr > td,
+.table tfoot > tr > td {
+  border-top: 1px solid #dddddd;
+}