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
|
html {
position: relative;
min-height: 100%;
}
body {
margin-bottom: 100px;
}
.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;
color: white !important;
}
.delete {
padding-top: 10%;
}
.hide {
display: none ;
}
.underline {
text-decoration: underline;
}
.shadow-y-2{box-shadow:0 -3px 10px rgba(0,0,0,.23),0 -3px 10px rgba(0,0,0,.16)}
.footer {
position: absolute;
bottom: 0;
width: 100%;
height: 40px;
background-color: #009587;
border-color: #009587;
background: #009587;
color: white ;
}
.footer-div {
padding-top: 10%;
}
.footer-a {
color: white;
}
.footer-a:link,
.footer-a:hover,
.footer-a:visited,
.footer-a:active {
color: white;
text-decoration: underline;
}
.footer > .container {
padding-left: 0;
}
.sticky-footer {
margin: 10px 0;
margin-left: 0;
}
.lp {
margin-top: 25px;
}
.italic {
font-style: italic;
}
@media (min-width:570px){
.lg-pull-right {
float: right !important;
}
.sm-display {
display: none;
}
}
@media (max-width:580px){
.footer {
height: 60px;
}
.sm-diplay {
display: inline !important;
}
}
/* Gradient transparent - color - transparent */
hr.colored {
border: 0;
height: 1px;
background-image: linear-gradient(to right, #009688, #009688, #009688);
}
.jumbotron {
margin-top: 30px;
padding: 19px;
box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
margin-bottom: 30px;
}
.shadow-z-1 {
box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12), 0 1px 6px rgba(0, 0, 0, 0.12);
}
.shadow-z-2 {
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.23), 0 3px 10px rgba(0, 0, 0, 0.16);
}
.shadow-z-2-hover {
box-shadow: 0 6px 10px rgba(0, 0, 0, 0.23), 0 10px 30px rgba(0, 0, 0, 0.19);
}
.shadow-z-3 {
box-shadow: 0 6px 10px rgba(0, 0, 0, 0.23), 0 10px 30px rgba(0, 0, 0, 0.19);
}
.shadow-z-4 {
box-shadow: 0 10px 18px rgba(0, 0, 0, 0.22), 0 14px 45px rgba(0, 0, 0, 0.25);
}
.shadow-z-5 {
box-shadow: 0 15px 20px rgba(0, 0, 0, 0.22), 0 19px 60px rgba(0, 0, 0, 0.3);
}
|