blob: 2da531b0e43bf610861e3bc455e8af402962d384 (
plain)
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
|
html {
position: relative;
min-height: 100%;
}
body {
margin-bottom: 60px;
}
a {
color: #3083D6;
}
/* navbar */
.navbar-default {
background-color: #3083D6 ;
border-color: #3083D6 ;
background: #3083D6 ;
}
.navbar-default .navbar-brand {
color: white;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
}
.navbar-default .navbar-nav > li > a {
color: white;
}
.noscript {
background-color: #dd5148;
color: white;
}
/* footer */
.footer {
background-color: #3083D6 ;
border-color: #3083D6 ;
background: #3083D6 ;
color: white ;
position: absolute;
bottom: 0;
width: 100%;
}
.footer-a {
color: white;
}
.footer-a:hover {
color: white;
text-decoration: underline;
}
.underline {
text-decoration: underline;
}
.actives {
color: white !important;
/* text-decoration: underline; */
font-weight: bold;
}
.grey {
color: #737373;
}
|