blob: a852e71f3fc241e44876f359a23699282b14e73a (
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
|
.navbar-default .navbar-brand {
color: white;
}
.navbar-default .navbar-nav > li > a {
color: white;
}
.navbar-default .navbar-nav > li > a:hover {
color: white;
text-decoration: underline;
}
.noscript {
background-color: #dd5148;
color: white;
}
.alert {
border-radius: 5px;
}
.alert-success {
background-color: #d0e9c6 !important;
color: #473835;
}
.alert-danger {
background-color: #ebcccc;
color: #473835;
}
.hide {
display: none ;
}
.underline {
text-decoration: underline;
}
.footer {
background-color: #009587;
border-color: #009587;
background: #009587;
color: white ;
position: absolute;
bottom: 0;
width: 100%;
height: 20px;
}
.footer-a {
color: white;
}
.footer-a:hover {
color: white;
text-decoration: underline;
}
|