comparison static/css/theme.css @ 116:24263cb45e27

Bootstrap: tweaking to use our color scheme. This is not finished yet by far. But good enough to checkpoint.
author Brian Neal <bgneal@gmail.com>
date Tue, 22 Oct 2013 21:01:55 -0500
parents 8a0076d7d041
children 68f621d26aed
comparison
equal deleted inserted replaced
115:44a635748fb9 116:24263cb45e27
1 body { 1 body {
2 padding-top: 50px; 2 padding-top: 50px;
3 padding-bottom: 20px; 3 padding-bottom: 20px;
4 /* background-color: #213442;
5 color: #EF7D21; */
6 background-color: #213442;
7 color: #EF7C21;
4 } 8 }
5 .img-flyer { 9 .img-flyer {
6 margin: 0 auto; 10 margin: 0 auto;
7 margin-top: 1em; 11 margin-top: 1em;
8 margin-bottom: 1em; 12 margin-bottom: 1em;
22 .article-source { 26 .article-source {
23 font-style: italic; 27 font-style: italic;
24 margin-top: 1.5em; 28 margin-top: 1.5em;
25 margin-bottom: 1.5em; 29 margin-bottom: 1.5em;
26 } 30 }
31
32 blockquote {
33 border-left: 5px solid #6e2d1b;
34 border-left: 5px solid #b96a03;
35 border-left: 5px solid #8f8a6d;
36 border-left: 5px solid #41819d;
37 border-left: 3px solid #b96a03;
38 }
39 blockquote small {
40 color: #b96a03;
41 }
42
43 .thumbnail {
44 background-color: #213442;
45 border: 1px solid #41819d;
46 }
47 .thumbnail .caption {
48 color: #EF7C21;
49 }
50 a.thumbnail:hover,
51 a.thumbnail:focus {
52 border-color: #EF7C21;
53 }
54
55 .form-control:focus {
56 border-color: #EF7C21;
57 }
58
59
60 /**
61 296b9d
62 3e819c
63 41819d
64 213442
65 **/
66
67 .navbar-inverse {
68 background-image: -webkit-gradient(linear, left 0%, left 100%, from(#296b9d), to(#213442));
69 background-image: -webkit-linear-gradient(top, #296b9d, 0%, #213442, 100%);
70 background-image: -moz-linear-gradient(top, #296b9d 0%, #213442 100%);
71 background-image: linear-gradient(to bottom, #296b9d 0%, #213442 100%);
72 background-repeat: repeat-x;
73 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff296b9d', endColorstr='#ff213442', GradientType=0);
74 }
75 .navbar .navbar-nav > .active > a {
76 background-color: #f8f8f8;
77 background-color: #ff0000;
78 }
79 .navbar-inverse .navbar-nav > .active > a { /* bkground of selected menu */
80 background-color: #296b9d;
81 }
82
83 .well {
84 background-image: -webkit-gradient(linear, left 0%, left 100%, from(#296b9d), to(#6c9a97));
85 background-image: -webkit-linear-gradient(top, #296b9d, 0%, #6c9a97, 100%);
86 background-image: -moz-linear-gradient(top, #296b9d 0%, #6c9a97 100%);
87 background-image: linear-gradient(to bottom, #296b9d 0%, #6c9a97 100%);
88 background-repeat: repeat-x;
89 border-color: #dcdcdc;
90 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff296b9d', endColorstr='#ff6c9a97', GradientType=0);
91 -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);
92 box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);
93 }