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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
|
@font-face{
font-family: cabin;
src: url("../fonts/Cabin-Regular.otf");
}
@font-face{
font-family: ubuntu;
src: url("../fonts/Cabin-Regular.otf");
}
.clearfix{
clear: both;
}
a{
color: #366c9a;
}
h1, h2, h3, h4, h5, h6{
font-family: cabin;
}
body{
background-color: #f5f5f5;
}
#brand-logo{
width: 75px;
}
#brand-text{
position: relative;
top: 5px;
font-size: 2.2em;
font-family: cabin;
}
#page-wrapper{
border-top: 5px solid #366c9a;
/* */
max-width: 1200px;
margin: 25px auto;
box-shadow: 1px 1px 15px #cccccc;
background: #ffffff;
}
#header-inner, #content-inner, #extra-inner, #footer-inner, #credits{
max-width: 1200px;
margin: 0 auto;
padding: 10px 15px;
}
#header-wrapper{
}
#header-inner{
border-bottom: 3px solid #f5f5f5;
height: 100px;
}
#main-nav{
font-size: 1.3em;
position: relative;
top: 20px;
font-family: cabin;
}
#main-nav ul.nav li > a{
color: #366c9a;
}
ul.nav li a:hover, ul.nav li a:focus{
border-radius: 0;
background-color: #ffffff;
}
ul.nav > li > a:hover{
border-bottom: 2px solid #ffca3a;
}
ul.nav li > a:focus{
color: #ffca3a;
border-bottom: 0;
}
.nav .open > a, .nav .open > a:hover, .nav .open > a:focus{
background-color: #ffffff;
}
#content-wrapper{
}
#content-inner{
min-height: 500px;
padding-bottom: 25px;
}
#footer-wrapper{
position: relative;
background-color: #2F353A;
color: #ffffff;
}
#footer-inner{
}
#content{
padding: 0 25px 0 0;
text-align: justify;
}
#sidebar{
padding: 0;
}
#sidebar ul{
list-style-type: none;
padding: 0;
margin: 0;
}
#sidebar ul li{
padding: 3px 0 3px 5px;
border-bottom: 1px solid #2F353A;
}
#sidebar ul li:last-child{
border-bottom: none;
}
#sidebar ul:last{
border-bottom: 0px solid black;
}
#sidebar ul li a{
color: #366c9a;
transition: padding .5s ease-out 0s;
}
#sidebar ul li a:hover{
padding-left: 5px;
}
#django-logo{
position: absolute;
width: 35px;
right: 10px;
bottom: 7px;
}
.block{
margin-top: 25px;
border: 1px solid #f5f5f5;
}
.block-heading{
background: #ffca3a;
padding: 5px 0;
text-align: center;
font-weight: bolder;
margin-top:0;
color: #ffffff;
}
.foot{
margin-top: 25px;
}
.foot-heading{
text-align: center;
font-weight: bolder;
}
.foot ul{
list-style-type: square;
}
.foot ul li{
border-bottom: 1px solid #252525;
padding: 7px 0 7px 10px;
}
.foot ul li a{
color: #ffffff;
|