-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimplementation.html
More file actions
247 lines (238 loc) · 12.9 KB
/
Copy pathimplementation.html
File metadata and controls
247 lines (238 loc) · 12.9 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
235
236
237
238
239
240
241
242
243
244
245
246
247
<!DOCTYPE html>
<html>
<head>
<style>
/* hides "Team:Cornell" and iGEM logo */
#top_title {
display: none;
}
/* removes padding below footer */
#globalWrapper {
padding: 0;
}
#content {
padding: 0px;
width: 100% !important;
margin-top: 0px;
margin-left: 0px ;
}
/* removes default styling for home banner tagline */
#HQ_page p {
font-family: 'Open San', sans-serif;
font-size: 16px;
font-weight: 100;
color: #000;
padding-top: 0;
padding-bottom: 0;
}
/* removes small extra margin at very bottom below footer */
p {
margin: 0;
}
/* removes bullets from Toolkit dropdown menu */
ul {
list-style-image: none;
}
</style>
<title>Team:Cornell - 2020.igem.org</title>
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="styles/styles.css">
<link rel="stylesheet" type="text/css" href="styles/grids.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<!-- JS -->
<script src="https://code.jquery.com/jquery-3.5.0.js"></script>
<script>
$(document).ready(function() {
$('.standard-page-side-bar-wrapper').css({'position':'fixed' , 'display':'none'});
$('body').scroll( function(){
/* Check the location of each desired element */
$('.standard-page-side-bar-content-wrapper').each( function(i){
var top_of_object = $(this).position().top;
var top_of_window = $(window).scrollTop();
/* If the object is completely visible in the window, fade it it */
if( (top_of_window > top_of_object)){
console.log("HELLO");
$('.standard-page-side-bar-wrapper').css({'position':'fixed', 'display':'block'});
}
if ((top_of_window < top_of_object)){
$('.standard-page-side-bar-wrapper').css({'position':'fixed' , 'display':'none'});
}
});
});
});
</script>
</head>
<!--NOTE: REMEMBER TO CHANCE active-page CLASS TO CORRECT DROPDOWN-->
<body>
<div class ="standard-page-wrapper">
<!------------------------ NAV BAR START ------------------------>
<nav>
<div class="nav-bar-wrapper">
<div class="nav-bar-main-menu">
<a href="index.html"><img class="nav-bar-logo" src="images/cornell-igem-logo-white.png" alt="logo"></img>
<div class="dropdown">
<button class="dropbtn">TEAM</button>
<div class="dropdown-content team-dropdown-content">
<a href="bios.html">BIOS</a>
<a href="sponsors.html">SPONSORS</a>
<a href="attributions.html">ATTRIBUTIONS</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">OUTREACH</button>
<div class="dropdown-content outreach-dropdown-content">
<a href="education.html">EDUCATION & ENGAGEMENT</a>
<a href="collabs.html">COLLABORATIONS</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">HUMAN PRACTICES</button>
<div class="dropdown-content human-dropdown-content">
<a href="practicesfinal.html">INTEGRATED PRACTICES</a>
<a href="policies.html">POLICIES</a>
<a href="entrepreneurship.html">ENTREPRENEURSHIP</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn active-nav">PRODUCT DEVELOPMENT</button>
<div class="dropdown-content human-dropdown-content">
<a href="modeling.html">MODELING</a>
<a href="engineeringsuccess.html">ENGINEERING SUCCESS</a>
<a href="hardware.html">HARDWARE</a>
<a href="implementation.html">IMPLEMENTATION</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">TOOLKIT</button>
<div class="dropdown-content toolkit-dropdown-content">
<ul>
<div class="nav-first-col">
<li class="wet-lab-list-title"><b>WET LAB</b></li>
<li><a href="foundation.html">FOUNDATIONS</a></li>
<li><a href="demonstrate.html">DEMONSTRATE</a></li>
<li><a href="part.html">PARTS</a></li>
<li><a href="basic_part.html">BASIC PARTS</a></li>
<li><a href="composite_parts.html">COMPOSITE PARTS</a></li>
</div>
<div class="nav-second-col">
<li class="pd-list-title"><b>DOCUMENTATION</b></li>
<li><a href="notebook.html">NOTEBOOK</a></li>
<li><a href="safety.html">SAFETY</a></li>
<li><a href="contribution.html">CONTRIBUTION</a></li>
</div>
</ul>
</div>
</div>
<div class="dropdown">
<button class="dropbtn"
onclick="location.href='description.html'">DESCRIPTION</button>
</div>
<div class="dropdown">
<button class="dropbtn"
onclick="location.href='index.html'">HOME</button>
</div>
</div>
</div>
</nav>
<!------------------------ NAV BAR END ------------------------->
<!------------------------ STANDARD PAGE BANNER START ------------------------>
<header class="standard-page-banner">
<img class="standard-page-banner" src="images/banners/implementation.png" alt="implementation banner">
</header>
<!------------------------ STANDARD PAGE BANNER END ------------------------>
<!------------------------ STANDARD PAGE SIDE BAR + CONTENT START ------------------------>
<div class="standard-page-side-bar-content-wrapper">
<!------------------------ STANDARD PAGE SIDE BAR START ------------------------>
<div class="standard-page-side-bar-wrapper">
<ul class="standard-page-side-bar">
<li><a href="#pageheading1">Subheading 1</a></li>
<li><a href="#pageheading2">Subheading 2</a></li>
<li><a href="#pageheading3">Subheading 3</a></li>
</ul>
</div>
<!------------------------ STANDARD PAGE SIDE BAR END ------------------------>
<!------------------------ STANDARD PAGE CONTENT START ------------------------>
<div class="standard-page-content-wrapper">
<div class="standard-page-content-section">
<div class="standard-page-content-title"><div id="pageheading1">Header</div></div>
<div class="standard-page-content-subheading"></div>
<p class="standard-page-content-text">
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Mauris a faucibus sem, sit amet lobortis ligula.
Curabitur felis arcu, consequat fingilla nibh nec,
tincidunt pellentesque augue. Sed arcu nisl, tinciddunt
vitae lorem vel, porta maximus neque. Donec viverra
magna sit amet sapien elementum, vitae faucibus.
</p>
<p class="standard-page-content-text">
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Mauris a faucibus sem, sit amet lobortis ligula.
Curabitur felis arcu, consequat fingilla nibh nec,
tincidunt pellentesque augue. Sed arcu nisl, tinciddunt
vitae lorem vel, porta maximus neque. Donec viverra
magna sit amet sapien elementum, vitae faucibus.
</p>
</div>
<div class="standard-page-content-section">
<div class="standard-page-content-title"><div id="pageheading2">Header</div></div>
<div class="standard-page-content-subheading"></div>
<p class="standard-page-content-text">
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Mauris a faucibus sem, sit amet lobortis ligula.
Curabitur felis arcu, consequat fingilla nibh nec,
tincidunt pellentesque augue. Sed arcu nisl, tinciddunt
vitae lorem vel, porta maximus neque. Donec viverra
magna sit amet sapien elementum, vitae faucibus.
<p class="standard-page-content-text">
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Mauris a faucibus sem, sit amet lobortis ligula.
Curabitur felis arcu, consequat fingilla nibh nec,
tincidunt pellentesque augue. Sed arcu nisl, tinciddunt
vitae lorem vel, porta maximus neque. Donec viverra
magna sit amet sapien elementum, vitae faucibus.
<p class="standard-page-content-text">
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Mauris a faucibus sem, sit amet lobortis ligula.
Curabitur felis arcu, consequat fingilla nibh nec,
tincidunt pellentesque augue. Sed arcu nisl, tinciddunt
vitae lorem vel, porta maximus neque. Donec viverra
magna sit amet sapien elementum, vitae faucibus.
</p>
</div>
<div class="standard-page-content-section">
<div class="standard-page-content-title"><div id="pageheading3">Header</div></div>
<div class="standard-page-content-subheading">Problem Statement</div>
<p class="standard-page-content-text">
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Mauris a faucibus sem, sit amet lobortis ligula.
Curabitur felis arcu, consequat fingilla nibh nec,
tincidunt pellentesque augue. Sed arcu nisl, tinciddunt
vitae lorem vel, porta maximus neque. Donec viverra
magna sit amet sapien elementum, vitae faucibus.
<img class="standard-page-content-image" src="">
</div>
</div>
<!------------------------ STANDARD PAGE CONTENT END ------------------------>
</div>
<!------------------------ STANDARD PAGE SIDE BAR + CONTENT END ------------------------>
<!------------------------ FOOTER START ------------------------>
<footer>
<div class="footer-wrapper">
<div class="icon-wrapper">
<a class="icon" href="http://facebook.com/cornelligem"><img src="https://2019.igem.org/wiki/images/4/44/T--Cornell--Facebook.png"></a>
</div>
<div class="icon-wrapper">
<a class="icon" href="http://twitter.com/cugem"><img src="https://2019.igem.org/wiki/images/8/80/T--Cornell--Twitter.png"></a>
</div>
<div class="icon-wrapper">
<a class="icon" href="https://www.instagram.com/cugem/"><img src="https://2019.igem.org/wiki/images/3/37/T--Cornell--Instagram.png"></a>
</div>
<div class="icon-wrapper icon-wrapper-last">
<a class="icon" href="https://www.youtube.com/channel/UCJt-5JfyoucUJXC1EsTllhg"><img src="https://2019.igem.org/wiki/images/3/3c/T--Cornell--Youtube.png"></a>
</div>
</div>
</footer>
<!------------------------ FOOTER END ------------------------>
</div>
</body>
</html>