-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathheader.html
More file actions
239 lines (190 loc) · 4.42 KB
/
header.html
File metadata and controls
239 lines (190 loc) · 4.42 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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
<!DOCTYPE html>
<html lang="en">
<head>
<title>SPAC</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<!-- jQuery Security Mitigation: Override vulnerable jQuery 3.4.1 with secure version -->
<script>
// Check if jQuery is loaded and if it's an older vulnerable version
if (typeof jQuery === 'undefined' || (jQuery.fn && jQuery.fn.jquery && jQuery.fn.jquery < '3.5.0')) {
// Load secure jQuery 3.7.1 from CDN with SRI
var script = document.createElement('script');
script.src = 'https://code.jquery.com/jquery-3.7.1.min.js';
script.integrity = 'sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=';
script.crossOrigin = 'anonymous';
script.async = false;
document.head.appendChild(script);
}
</script>
<!-- ipywidgets html-manager version override: Use latest version instead of old 1.0.1 -->
<script>
// Override the widget manager to use the latest html-manager version
window.addEventListener('DOMContentLoaded', function() {
if (window.require && window.require.config) {
window.require.config({
paths: {
'@jupyter-widgets/html-manager': 'https://cdn.jsdelivr.net/npm/@jupyter-widgets/html-manager@1.0.14/dist/embed-amd'
},
map: {
'*': {
'@jupyter-widgets/html-manager/dist/libembed-amd': '@jupyter-widgets/html-manager'
}
}
});
}
});
</script>
<style>
body { padding: 0; }
.flag-text {
display: flex;
align-items: center;
font-size: .96rem;
font-weight: 300;
line-height: 1.2em;
margin: 0 .75rem 0 0;
width: 100%;
padding: 20px 0 20px 0;
}
.flag-text img {
height: 14px;
width: 21px;
margin-right: .75rem;
}
.flag-header {
position: relative;
color: #1c1c1c;
background-color: #f0f0f0;
margin: 0 0 30px 0;
line-height: 60px;
display: block;
}
.header-logo {
margin: 0px 0px 20px 0px;
width: 40%;
}
.row {
margin: 0px 0px 0px 15px;
}
.page-footer {
margin: 30px 0px 0px 0px;
}
.bg-theme-blue {
background-color: #1d406c;
}
.bg-theme-white {
color: #fff;
}
.big-text {
font-size: 50px;
color: #fff;
}
.content-title {
display: flex;
font-size: 1.2em;
margin: 20px 0 20px 0;
width: 100%;
padding: 10px 0 10px 0;
position: relative;
color: #fff;
background-color: #003266;
}
hr {
border-bottom: 20px solid #173053;
}
.footer {
margin: 0;
}
/* Footer */
.col-md-4, .col-md-8 {
margin-top: 20px;
}
.eventsreg-footer {
position: relative;
color: #fff;
background-color: #173053;
}
.eventsreg-footer .container {
position: relative;
padding: 0px;
}
.nci-large {
font-size: 1.6rem;
}
.eventsreg-footer .social li {
display: inline-block;
}
.eventsreg-footer .social li a {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 10px 15px;
background: #facd02;
border-radius: 25px;
text-decoration: none;
color: #03314b;
margin: 5px 10px 0 0;
font-size: 0.9rem;
font-weight: 500;
}
.eventsreg-footer .social li a:hover {
background: #e6b800;
}
.eventsreg-footer .links li a {
color: #fff;
padding-right: 10px;
font-size: .9rem;
}
.eventsreg-footer .links li a:hover {
color: #fff;
}
.eventsreg-footer .copyright, .copyright a {
text-align: center;
color: #fff;
font-size: 1rem
}
/* Footer Media Query */
@media only screen and (max-width: 600px) {
.eventsreg-footer .links li {
margin-bottom: 10px;
line-height: 1.5;
display: block;
}
.eventsreg-footer {
text-align: center;
}
}
/* Tab styling improvements */
.nav-tabs .nav-link {
font-size: 1.1rem !important;
padding: 12px 20px !important;
font-weight: 500 !important;
}
.nav-tabs {
border-bottom: 2px solid #dee2e6 !important;
}
.nav-tabs .nav-link.active {
font-weight: 600 !important;
border-bottom: 3px solid #0d6efd !important;
}
</style>
</head>
<body>
<!-- Flag Header -->
<div class="flag-header">
<div class="container">
<div class="flag-text">
<img src="images/flag.png" alt="United States flag" />
An official website of the United States government
</div>
</div>
</div>
<!-- End Flag Header -->
<!-- TODO: LOGO OF APP -->
<div class="container">
<img src="images/cbiit.jpg" class="header-logo" alt="TODO: NAME OF APP">
</div>
<!-- End NCI Logo -->
<!-- Main Content THIS MUST BE LEFT HERE TO KEEP THE LAYOUT WORKING CORRECTLY-->
<div class="container-fluid">