main.css
2.59 KB
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
/** LAYOUT *******************************************************************/
.container {
margin-top: 60px;
margin-bottom: 2em;
}
/** NAVBAR *******************************************************************/
.navbar-inverse {
background-color: rgba(14, 97, 145, 0.87);
border-color: #080808;
}
.navbar-inverse .navbar-nav > li > a {
color: #d5d8d8;
font-weight: bold;
}
.navbar-inverse .navbar-brand {
color: #d5d8d8;
}
.navbar-toggler-icon {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}
/** HERO *********************************************************************/
div.jumbotron {
background-color: rgba(238, 238, 238, 0.8);
}
#image-background {
position: absolute;
top: -2rem;
z-index: -1;
width: 100%;
height: 22.2rem;
background-image: url('../../public/img/plane-with-chemtrails.jpg');
background-size: cover;
background-repeat: no-repeat;
}
/** FOOTER *******************************************************************/
footer.page-footer {
padding: 4rem 5rem;
color: #fff;
background-color: #3980af;
height: 13rem;
}
footer.page-footer a {
color: #fff;
}
/** FORM *********************************************************************/
span.required-asterisk {
color: #901524;
}
/** LISTS *********************************************************************/
.numbered-list {
list-style: upper-roman;
}
/** PLOTS ********************************************************************/
.legend-list {
list-style: none;
}
.legend-color-badge {
width: 1em;
height: 1em;
display: inline-block;
position: relative;
top: 2px;
}
/** SPINNER ******************************************************************/
.lds-ripple {
display: inline-block;
position: relative;
width: 160px;
height: 160px;
}
.lds-ripple div {
position: absolute;
border: 4px solid #4a59c1;
opacity: 1;
border-radius: 50%;
animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
animation-delay: -0.25s;
}
.lds-ripple div:nth-child(3) {
animation-delay: -0.5s;
}
@keyframes lds-ripple {
0% {
top: 72px;
left: 72px;
width: 0;
height: 0;
opacity: 1;
}
100% {
top: 0px;
left: 0px;
width: 144px;
height: 89px;
opacity: 0;
}
}