-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlocal.css
98 lines (84 loc) · 2.67 KB
/
local.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/* Apache 2.0 licensed */
/* Override some defaults */
html, body {
background-color: #eee;
}
body {
padding-top: 40px; /* 40px to make the container go all the way to the bottom of the topbar */
}
footer {
padding-top: 20px;
}
.container > footer p {
text-align: center; /* center align it with the container */
}
.container {
width: 820px; /* downsize our container to make the content feel a bit tighter and more cohesive. NOTE: this removes two full columns from the grid, meaning you only go to 14 columns and not 16. */
}
/* The white background content wrapper */
.container > .content {
background-color: #fff;
padding: 20px;
margin: 0 -20px; /* negative indent the amount of the padding to maintain the grid system */
-webkit-border-radius: 0 0 6px 6px;
-moz-border-radius: 0 0 6px 6px;
border-radius: 0 0 6px 6px;
-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.15);
-moz-box-shadow: 0 1px 2px rgba(0,0,0,.15);
box-shadow: 0 1px 2px rgba(0,0,0,.15);
}
/* Page header tweaks */
.page-header {
background-color: #f5f5f5;
padding: 30px 20px 20px;
margin: -20px -20px 20px;
}
.page-header-logo {
float:right;
margin-top: -34px;
}
.topbar .btn {
border: 0;
}
/* use http://www.colorzilla.com/gradient-editor/
more help: http://stackoverflow.com/questions/11196638/change-navbar-color-in-twitter-bootstrap-2-0-4
*/
.navbar-inner, .navbar .btn-navbar {
background: #003c64; /* Old browsers */
background: -moz-linear-gradient(top, #003c64 0%, #003c64 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#003c64), color-stop(100%,#003c64)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #003c64 0%,#003c64 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #003c64 0%,#003c64 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #003c64 0%,#003c64 100%); /* IE10+ */
background: linear-gradient(to bottom, #003c64 0%,#003c64 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#003c64', endColorstr='#003c64',GradientType=0 ); /* IE6-9 */
}
.navbar .divider-vertical {
background-color: #003c64;
border-right: 1px solid #eab92d;
}
.navbar .nav .active > a, .navbar .nav .active > a:hover {
background-color: #003c64;
}
.navbar .nav > li > a {
/* color: #003c64; default is pretty nice */
}
/* images */
div[class="content"] a > img {
display: block;
margin-left: auto;
margin-right: auto;
}
img.medium {
width: 50%;
height: auto;
}
img.small {
width: 25%;
height: auto;
}
/* extend the note template */
.notebox {
background: rgb(255, 255, 230);
margin-right: -32%;
}