Difference between revisions of "Team:Cadets2Vets"

Line 14: Line 14:
  
 
<script>
 
<script>
 
+
 
// This is the jquery part of your template.   
 
// This is the jquery part of your template.   
 
// Try not modify any of this code too much since it makes your menu work.
 
// Try not modify any of this code too much since it makes your menu work.
 
 
$(document).ready(function() {
 
$(document).ready(function() {
 
 
$("#HQ_page").attr('id','');
 
$("#HQ_page").attr('id','');
 
 
// call the functions that control the menu  
 
// call the functions that control the menu  
 
menu_functionality();  
 
menu_functionality();  
 
hide_show_menu();
 
hide_show_menu();
 
 
 
 
//this function controls the expand and collapse buttons of the menu and changes the +/- symbols
 
//this function controls the expand and collapse buttons of the menu and changes the +/- symbols
 
function menu_functionality() {
 
function menu_functionality() {
 
 
//when clicking on a "menu_button", it will change the "+/-" accordingly and it will show/hide the corresponding submenu
 
//when clicking on a "menu_button", it will change the "+/-" accordingly and it will show/hide the corresponding submenu
 
$(".menu_button").click(function(){
 
$(".menu_button").click(function(){
 
 
// add or remove the class "open" , this class holds the "-"  
 
// add or remove the class "open" , this class holds the "-"  
 
$(this).children().toggleClass("open");
 
$(this).children().toggleClass("open");
 +
 
// show or hide the submenu
 
// show or hide the submenu
 
$(this).next('.submenu_wrapper').fadeToggle(400);
 
$(this).next('.submenu_wrapper').fadeToggle(400);
 
});
 
});
 
 
// when the screen size is smaller than 800px, the display_menu_control button appears and will show/hide the whole menu
 
// when the screen size is smaller than 800px, the display_menu_control button appears and will show/hide the whole menu
 
$("#display_menu_control").click(function(){
 
$("#display_menu_control").click(function(){
 
$('#menu_content').fadeToggle(400);
 
$('#menu_content').fadeToggle(400);
 
});
 
});
 
 
// call the current page highlight function
 
// call the current page highlight function
 
highlight_current_page();
 
highlight_current_page();
 
}
 
}
 
 
 
// call the highlight current page function to show it on the menu with a different background color
 
// call the highlight current page function to show it on the menu with a different background color
 
function highlight_current_page() {
 
function highlight_current_page() {
 
 
// select a page from the menu based on the id assigned to it and the current page name and add the class "current page" to make it change background color
 
// select a page from the menu based on the id assigned to it and the current page name and add the class "current page" to make it change background color
 
$("#"+  wgPageName.substring(wgPageName.lastIndexOf("/")+1, wgPageName.length ) + "_page").addClass("current_page");
 
$("#"+  wgPageName.substring(wgPageName.lastIndexOf("/")+1, wgPageName.length ) + "_page").addClass("current_page");
 
 
// now that the current_page class has been added to a menu item, make the submenu fade in
 
// now that the current_page class has been added to a menu item, make the submenu fade in
 
$(".current_page").parents(".submenu_wrapper").fadeIn(400);
 
$(".current_page").parents(".submenu_wrapper").fadeIn(400);
 +
 
// change the +/- symbol of the corresponding menu button
 
// change the +/- symbol of the corresponding menu button
 
$(".current_page").parents(".submenu_wrapper").prev().children().toggleClass("open");
 
$(".current_page").parents(".submenu_wrapper").prev().children().toggleClass("open");
 
 
}
 
}
 
 
 
 
// allow button on the black menu bar to show/hide the side menu
 
// allow button on the black menu bar to show/hide the side menu
 
function hide_show_menu() {
 
function hide_show_menu() {
Line 72: Line 56:
 
$(".igem_2017_menu_wrapper").hide();
 
$(".igem_2017_menu_wrapper").hide();
 
}
 
}
 
 
// if the black menu bar has been loaded
 
// if the black menu bar has been loaded
 
   if (document.getElementById('bars_item')) {
 
   if (document.getElementById('bars_item')) {
 
 
// when the "bars_item" has been clicked
 
// when the "bars_item" has been clicked
 
$("#bars_item").click(function() {
 
$("#bars_item").click(function() {
 
$("#sideMenu").hide();
 
$("#sideMenu").hide();
 
 
// show/hide the menu wrapper
 
// show/hide the menu wrapper
 
$(".igem_2017_menu_wrapper").fadeToggle("100");
 
$(".igem_2017_menu_wrapper").fadeToggle("100");
 
});
 
});
 
   }  
 
   }  
 
 
// because the black menu bars loads at a different time than the rest of the page, this function is set on a time out so it can run again in case it has not been loaded yet
 
// because the black menu bars loads at a different time than the rest of the page, this function is set on a time out so it can run again in case it has not been loaded yet
 
else {
 
else {
Line 90: Line 70:
 
}
 
}
 
}
 
}
 
 
 
});
 
});
 
 
 
</script>
 
</script>
 
 
 
 
 
 
<style>
 
<style>
 
 
 
 
/***************************************************** DEFAULT WIKI SETTINGS  ****************************************************/
 
/***************************************************** DEFAULT WIKI SETTINGS  ****************************************************/
 
 
/* Clear the default wiki settings */
 
/* Clear the default wiki settings */
 
 
#home_logo, #sideMenu { display:none; }
 
#home_logo, #sideMenu { display:none; }
 
#sideMenu, #top_title, .patrollink  {display:none;}
 
#sideMenu, #top_title, .patrollink  {display:none;}
Line 114: Line 80:
 
body {background-color:white; }
 
body {background-color:white; }
 
#bodyContent h1, #bodyContent h2, #bodyContent h3, #bodyContent h4, #bodyContent h5 { margin-bottom: 0px; }
 
#bodyContent h1, #bodyContent h2, #bodyContent h3, #bodyContent h4, #bodyContent h5 { margin-bottom: 0px; }
 
 
 
 
 
/**************************************************************** MENU ***************************************************************/
 
/**************************************************************** MENU ***************************************************************/
 
/* Wrapper for the menu */
 
/* Wrapper for the menu */
Line 127: Line 89:
 
padding:0px;
 
padding:0px;
 
float:right;  
 
float:right;  
border-left: 1px solid #d3d3d3;  
+
border-left: 1px solid #383838;  
background-color:#dddddd;  
+
background-color:#7c6429;  
 
text-align:left;
 
text-align:left;
 
font-family:Tahoma, Geneva, sans-serif;  
 
font-family:Tahoma, Geneva, sans-serif;  
Line 134: Line 96:
 
overflow-x: hidden;
 
overflow-x: hidden;
 
}
 
}
 
 
/* this hides the scrollbar to keep view consistency */
 
/* this hides the scrollbar to keep view consistency */
 
.igem_2017_menu_wrappe::-webkit-scrollbar {  
 
.igem_2017_menu_wrappe::-webkit-scrollbar {  
Line 145: Line 106:
 
text-decoration: none;  
 
text-decoration: none;  
 
}
 
}
 
 
 
/* styling for the images in the menu */
 
/* styling for the images in the menu */
 
.igem_2017_menu_wrapper img {  
 
.igem_2017_menu_wrapper img {  
 
width: 100%;
 
width: 100%;
 
}
 
}
 
 
/* styling for the menu buttons */
 
/* styling for the menu buttons */
 
.igem_2017_menu_wrapper .menu_button {  
 
.igem_2017_menu_wrapper .menu_button {  
Line 157: Line 115:
 
padding: 10px 0px 10px 15px;  
 
padding: 10px 0px 10px 15px;  
 
float:left;  
 
float:left;  
border-bottom: 1px solid #d3d3d3;  
+
border-bottom: 1px solid #383838;  
 
font-size: 12px;  
 
font-size: 12px;  
 
font-weight: bold;  
 
font-weight: bold;  
color: #5e5f5f;  
+
color: #ffffff;  
 
cursor: pointer;
 
cursor: pointer;
 
}
 
}
 
 
 
.igem_2017_menu_wrapper .menu_bottom_padding {  
 
.igem_2017_menu_wrapper .menu_bottom_padding {  
 
width: 100%;  
 
width: 100%;  
Line 170: Line 126:
 
float:left;
 
float:left;
 
}
 
}
 
 
.menu_button.direct_to_page {  
 
.menu_button.direct_to_page {  
 
padding-left: 36px;
 
padding-left: 36px;
 
}
 
}
 
 
 
.igem_2017_menu_wrapper .menu_button .expand_collapse_icon {
 
.igem_2017_menu_wrapper .menu_button .expand_collapse_icon {
 
width:10%;
 
width:10%;
 
float:left;
 
float:left;
 
}
 
}
 
 
.igem_2017_menu_wrapper .menu_button .expand_collapse_icon::before {
 
.igem_2017_menu_wrapper .menu_button .expand_collapse_icon::before {
 
content: "+";   
 
content: "+";   
Line 188: Line 140:
 
content: "-" !important;   
 
content: "-" !important;   
 
}
 
}
 
 
 
 
 
/* styling for the menu buttons on hover */
 
/* styling for the menu buttons on hover */
Line 197: Line 147:
 
color:#ffffff;  
 
color:#ffffff;  
 
}
 
}
 
 
/* styling for the menu button when it is the current page */
 
/* styling for the menu button when it is the current page */
 
.current_page {  
 
.current_page {  
 
background-color:#7fc1f7  !important;
 
background-color:#7fc1f7  !important;
color:#5e5f5f !important;
+
color:#ffffff !important;
 
}
 
}
 
 
 
/* styling for the submenu buttons */
 
/* styling for the submenu buttons */
 
.igem_2017_menu_wrapper .submenu_button {  
 
.igem_2017_menu_wrapper .submenu_button {  
Line 210: Line 157:
 
padding: 10px 0px 10px 34px;  
 
padding: 10px 0px 10px 34px;  
 
float:left;
 
float:left;
background-color:#f2f2f2;  
+
background-color:#7c6429;  
border-bottom: 1px solid #d3d3d3;  
+
border-bottom: 1px solid #383838;  
 
font-size: 12px;  
 
font-size: 12px;  
color: #5e5f5f;  
+
color: #ffffff;  
 
cursor: pointer;
 
cursor: pointer;
 
}
 
}
 
 
/* wrapper for the submenu items, they are hidden by default*/
 
/* wrapper for the submenu items, they are hidden by default*/
 
.igem_2017_menu_wrapper .submenu_wrapper {  
 
.igem_2017_menu_wrapper .submenu_wrapper {  
 
display:none;
 
display:none;
 
}
 
}
 
 
/* when the page size is bigger than 800px, this show/hide control is hidden by default */
 
/* when the page size is bigger than 800px, this show/hide control is hidden by default */
 
.igem_2017_menu_wrapper #display_menu_control {
 
.igem_2017_menu_wrapper #display_menu_control {
Line 228: Line 173:
 
}
 
}
 
 
 
 
/***************************************************** CONTENT OF THE PAGE ****************************************************/
 
/***************************************************** CONTENT OF THE PAGE ****************************************************/
 
 
/* Wrapper for the content */
 
/* Wrapper for the content */
 
.igem_2017_content_wrapper {
 
.igem_2017_content_wrapper {
Line 240: Line 183:
 
font-family:Tahoma, Geneva, sans-serif;  
 
font-family:Tahoma, Geneva, sans-serif;  
 
}
 
}
 
 
 
/********************************* HTML STYLING  *********************************/
 
/********************************* HTML STYLING  *********************************/
 
 
/* styling for the titles h1 h2 */
 
/* styling for the titles h1 h2 */
 
.igem_2017_content_wrapper h1, .igem_2017_content_wrapper h2 {
 
.igem_2017_content_wrapper h1, .igem_2017_content_wrapper h2 {
Line 250: Line 190:
 
color: #3399ff;
 
color: #3399ff;
 
}
 
}
 
 
 
/* styling for the titles  h3 h4 h5 h6*/
 
/* styling for the titles  h3 h4 h5 h6*/
 
.igem_2017_content_wrapper h3, .igem_2017_content_wrapper h4, .igem_2017_content_wrapper h5, .igem_2017_content_wrapper h6 {  
 
.igem_2017_content_wrapper h3, .igem_2017_content_wrapper h4, .igem_2017_content_wrapper h5, .igem_2017_content_wrapper h6 {  
Line 258: Line 196:
 
color: #000000;   
 
color: #000000;   
 
}
 
}
 
 
 
/* font and text */
 
/* font and text */
 
.igem_2017_content_wrapper p {  
 
.igem_2017_content_wrapper p {  
Line 265: Line 201:
 
font-size: 13px;
 
font-size: 13px;
 
}
 
}
 
 
/* Links */
 
/* Links */
 
.igem_2017_content_wrapper a {  
 
.igem_2017_content_wrapper a {  
Line 278: Line 213:
 
transition: all 0.4s ease;
 
transition: all 0.4s ease;
 
}
 
}
 
 
/* hover for the links */
 
/* hover for the links */
 
.igem_2017_content_wrapper a:hover {  
 
.igem_2017_content_wrapper a:hover {  
Line 284: Line 218:
 
color:#000000;
 
color:#000000;
 
}
 
}
 
 
/* non numbered lists */
 
/* non numbered lists */
 
.igem_2017_content_wrapper ul {
 
.igem_2017_content_wrapper ul {
Line 291: Line 224:
 
font-family:Tahoma, Geneva, sans-serif;  
 
font-family:Tahoma, Geneva, sans-serif;  
 
}
 
}
 
 
/* numbered lists */
 
/* numbered lists */
 
.igem_2017_content_wrapper ol {
 
.igem_2017_content_wrapper ol {
Line 298: Line 230:
 
font-family:Tahoma, Geneva, sans-serif;  
 
font-family:Tahoma, Geneva, sans-serif;  
 
}
 
}
 
 
/* Table */
 
/* Table */
 
.igem_2017_content_wrapper table {  
 
.igem_2017_content_wrapper table {  
 
width: 97%;  
 
width: 97%;  
 
margin:15px 10px;  
 
margin:15px 10px;  
border: 1px solid #d3d3d3;  
+
border: 1px solid #383838;  
 
border-collapse: collapse;  
 
border-collapse: collapse;  
 
}
 
}
 
 
/* table cells */
 
/* table cells */
 
.igem_2017_content_wrapper  td {  
 
.igem_2017_content_wrapper  td {  
 
padding: 10px;
 
padding: 10px;
 
vertical-align: text-top;  
 
vertical-align: text-top;  
border: 1px solid #d3d3d3;  
+
border: 1px solid #383838;  
 
border-collapse: collapse;  
 
border-collapse: collapse;  
 
}
 
}
 
 
/* table headers */
 
/* table headers */
 
.igem_2017_content_wrapper th {  
 
.igem_2017_content_wrapper th {  
 
padding: 10px;  
 
padding: 10px;  
 
vertical-align: text-top;  
 
vertical-align: text-top;  
border: 1px solid #d3d3d3;  
+
border: 1px solid #383838;  
 
border-collapse: collapse;  
 
border-collapse: collapse;  
background-color:#f2f2f2;  
+
background-color:#7c6429;  
 
}
 
}
 
 
 
/**********************************LAYOUT CLASSES **********************************/
 
/**********************************LAYOUT CLASSES **********************************/
 
 
/* general class for column divs */
 
/* general class for column divs */
 
.igem_2017_content_wrapper .column  {  
 
.igem_2017_content_wrapper .column  {  
Line 332: Line 258:
 
float:left;  
 
float:left;  
 
}
 
}
 
 
/* class for a full width column */
 
/* class for a full width column */
 
.column .full_size {
 
.column .full_size {
 
width:100%;  
 
width:100%;  
 
}
 
}
 
 
/* styling for images in a full width column*/
 
/* styling for images in a full width column*/
 
.column.full_size img {  
 
.column.full_size img {  
Line 343: Line 267:
 
padding: 10px 15px;
 
padding: 10px 15px;
 
}
 
}
 
 
/* class for a half width column */
 
/* class for a half width column */
 
.column.half_size {
 
.column.half_size {
Line 353: Line 276:
 
padding: 10px 15px;
 
padding: 10px 15px;
 
}
 
}
 
 
 
 
 
/********************************* SUPPORT CLASSES ********************************/
 
/********************************* SUPPORT CLASSES ********************************/
 
 
/* class that clears content below*/
 
/* class that clears content below*/
 
.igem_2017_content_wrapper .clear {
 
.igem_2017_content_wrapper .clear {
 
clear:both;
 
clear:both;
 
}
 
}
 
 
 
 
/* adds extra spacing when clearing content */
 
/* adds extra spacing when clearing content */
Line 369: Line 286:
 
height: 30px;
 
height: 30px;
 
}
 
}
 
 
 
/* highlight class, makes content slightly smaller */
 
/* highlight class, makes content slightly smaller */
 
.igem_2017_content_wrapper .highlight {  
 
.igem_2017_content_wrapper .highlight {  
Line 376: Line 291:
 
padding: 15px 0px;
 
padding: 15px 0px;
 
}
 
}
 
 
 
/* highlight class, adds a gray background */
 
/* highlight class, adds a gray background */
 
.igem_2017_content_wrapper .highlight.gray {
 
.igem_2017_content_wrapper .highlight.gray {
background-color: #f2f2f2;  
+
background-color: #7c6429;  
 
}
 
}
 
 
/* highlight with decoration blue line on top */
 
/* highlight with decoration blue line on top */
 
.igem_2017_content_wrapper .highlight.blue_top {
 
.igem_2017_content_wrapper .highlight.blue_top {
 
     border-top: 4px solid #3399ff;
 
     border-top: 4px solid #3399ff;
 
}
 
}
 
 
/* highlight with a full blue border decoration */
 
/* highlight with a full blue border decoration */
 
.igem_2017_content_wrapper .highlight.blue_border {
 
.igem_2017_content_wrapper .highlight.blue_border {
 
     border: 4px solid  #3399ff;
 
     border: 4px solid  #3399ff;
 
}
 
}
 
 
 
/* button class */
 
/* button class */
 
.igem_2017_content_wrapper .button{
 
.igem_2017_content_wrapper .button{
Line 407: Line 316:
 
-o-transition: all 0.4s ease; transition: all 0.4s ease;   
 
-o-transition: all 0.4s ease; transition: all 0.4s ease;   
 
}
 
}
 
 
/* styling for button on hover */
 
/* styling for button on hover */
 
.igem_2017_content_wrapper .button:hover{
 
.igem_2017_content_wrapper .button:hover{
Line 413: Line 321:
 
     color: #000000;
 
     color: #000000;
 
}
 
}
 
 
 
 
 
/***************************************************** RESPONSIVE STYLING ****************************************************/
 
/***************************************************** RESPONSIVE STYLING ****************************************************/
 
 
/* IF THE SCREEN IS LESS THAN 1200PX */
 
/* IF THE SCREEN IS LESS THAN 1200PX */
 
@media only screen and (max-width: 1200px) {
 
@media only screen and (max-width: 1200px) {
 
 
#content {width:100%; }
 
#content {width:100%; }
 
.igem_2017_menu_wrapper {width:15%; right:0;}
 
.igem_2017_menu_wrapper {width:15%; right:0;}
Line 427: Line 329:
 
.igem_2017_menu_wrapper #display_menu_control { display:none; }
 
.igem_2017_menu_wrapper #display_menu_control { display:none; }
 
#menu_content { display:block;}
 
#menu_content { display:block;}
.menu_button.direct_to_page {padding-left: 17px;}
+
.menu_button.direct_to_page {padding-left: 17px;}
+
 
}
 
}
 
 
/* IF THE SCREEN IS LESS THAN 800PX */
 
/* IF THE SCREEN IS LESS THAN 800PX */
 
@media only screen and (max-width: 800px) {
 
@media only screen and (max-width: 800px) {
 
 
  .igem_2017_menu_wrapper { width:100%; height: 15%; position:relative; left:0%;}
 
  .igem_2017_menu_wrapper { width:100%; height: 15%; position:relative; left:0%;}
 
.igem_2017_content_wrapper {width:100%; margin-left:0px;}
 
.igem_2017_content_wrapper {width:100%; margin-left:0px;}
Line 445: Line 344:
 
.menu_button.direct_to_page { padding-left: 36px; }
 
.menu_button.direct_to_page { padding-left: 36px; }
 
}
 
}
 
 
 
 
 
/* special class that the system uses to make sure the team wants a page to be evaluated */
 
/* special class that the system uses to make sure the team wants a page to be evaluated */
 
.judges-will-not-evaluate {
 
.judges-will-not-evaluate {
Line 457: Line 352:
 
     font-weight: bold;
 
     font-weight: bold;
 
}
 
}
 
 
</style>
 
</style>
 
 
<!--- THIS IS WHERE THE HTML BEGINS --->
 
 
 
 
<head>
 
 
<!-- This tells the browser that your page is responsive -->
 
<meta name="viewport" content="width=device-width, initial-scale=1">
 
 
</head>
 
 
 
  
 
<div class="igem_2017_menu_wrapper" >
 
<div class="igem_2017_menu_wrapper" >
 
 
 
<a href="https://2017.igem.org/Team:Cadets2Vets">
 
<img src="http://placehold.it/350x150">
 
</a>
 
 
  
 
<!-- this div is hidden by default and will only be displayed if the screen size is too small -->
 
<!-- this div is hidden by default and will only be displayed if the screen size is too small -->
Line 487: Line 360:
 
MENU   
 
MENU   
 
</div>  
 
</div>  
 
 
<div id="menu_content">
 
<div id="menu_content">
+
<a href="https://2017.igem.org/Team:Cadets2Vets">
 
+
 
+
 
+
<a href="https://2017.igem.org/Team:Cadets2Vets">
+
 
<div class="menu_button direct_to_page">
 
<div class="menu_button direct_to_page">
 
HOME
 
HOME
 
</div>  
 
</div>  
 
</a>
 
</a>
 
 
 
 
<div class="menu_button">
 
<div class="menu_button">
 
<div class="expand_collapse_icon">  </div> TEAM  
 
<div class="expand_collapse_icon">  </div> TEAM  
 
</div>  
 
</div>  
 
 
<div class="submenu_wrapper" id="team_submenu">
 
<div class="submenu_wrapper" id="team_submenu">
+
<a href="https://2017.igem.org/Team:Cadets2Vets/Team">
<a href="https://2017.igem.org/Team:Cadets2Vets/Team">
+
 
<div class="submenu_button" id="Team_page">
 
<div class="submenu_button" id="Team_page">
 
Team  
 
Team  
 
</div>
 
</div>
 
</a>
 
</a>
 
 
<a href="https://2017.igem.org/Team:Cadets2Vets/Collaborations">
 
<a href="https://2017.igem.org/Team:Cadets2Vets/Collaborations">
 
<div class="submenu_button"  id="Collaborations_page">
 
<div class="submenu_button"  id="Collaborations_page">
Line 518: Line 380:
 
</div>
 
</div>
 
</a>
 
</a>
 
 
 
</div>
 
</div>
 
 
 
 
 
 
<div class="menu_button">
 
<div class="menu_button">
 
<div class="expand_collapse_icon">  </div> PROJECT
 
<div class="expand_collapse_icon">  </div> PROJECT
Line 532: Line 387:
 
<!-- project submenu -->
 
<!-- project submenu -->
 
<div class="submenu_wrapper">
 
<div class="submenu_wrapper">
 
 
<a href="https://2017.igem.org/Team:Cadets2Vets/Description">
 
<a href="https://2017.igem.org/Team:Cadets2Vets/Description">
 
<div class="submenu_button"  id="Description_page">
 
<div class="submenu_button"  id="Description_page">
Line 538: Line 392:
 
</div>
 
</div>
 
</a>
 
</a>
 
 
<a href="https://2017.igem.org/Team:Cadets2Vets/Design">
 
<a href="https://2017.igem.org/Team:Cadets2Vets/Design">
 
<div class="submenu_button"  id="Design_page">
 
<div class="submenu_button"  id="Design_page">
Line 544: Line 397:
 
</div>
 
</div>
 
</a>
 
</a>
 
 
<a href="https://2017.igem.org/Team:Cadets2Vets/Experiments">
 
<a href="https://2017.igem.org/Team:Cadets2Vets/Experiments">
 
<div class="submenu_button"  id="Experiments_page">
 
<div class="submenu_button"  id="Experiments_page">
Line 550: Line 402:
 
</div>
 
</div>
 
</a>
 
</a>
 
 
 
<a href="https://2017.igem.org/Team:Cadets2Vets/Notebook">
 
<a href="https://2017.igem.org/Team:Cadets2Vets/Notebook">
 
<div class="submenu_button"  id="Notebook_page">
 
<div class="submenu_button"  id="Notebook_page">
Line 557: Line 407:
 
</div>
 
</div>
 
</a>
 
</a>
 
 
<a href="https://2017.igem.org/Team:Cadets2Vets/InterLab">
 
<a href="https://2017.igem.org/Team:Cadets2Vets/InterLab">
 
<div class="submenu_button"  id="InterLab_page">
 
<div class="submenu_button"  id="InterLab_page">
Line 563: Line 412:
 
</div>
 
</div>
 
</a>
 
</a>
 
 
<a href="https://2017.igem.org/Team:Cadets2Vets/Contribution">
 
<a href="https://2017.igem.org/Team:Cadets2Vets/Contribution">
 
<div class="submenu_button"  id="Contribution_page">
 
<div class="submenu_button"  id="Contribution_page">
Line 569: Line 417:
 
</div>
 
</div>
 
</a>
 
</a>
 
 
<a href="https://2017.igem.org/Team:Cadets2Vets/Model">
 
<a href="https://2017.igem.org/Team:Cadets2Vets/Model">
 
<div class="submenu_button"  id="Model_page">
 
<div class="submenu_button"  id="Model_page">
Line 575: Line 422:
 
</div>
 
</div>
 
</a>
 
</a>
 
 
<a href="https://2017.igem.org/Team:Cadets2Vets/Results">
 
<a href="https://2017.igem.org/Team:Cadets2Vets/Results">
 
<div class="submenu_button"  id="Results_page">
 
<div class="submenu_button"  id="Results_page">
Line 581: Line 427:
 
</div>
 
</div>
 
</a>
 
</a>
 
 
 
<a href="https://2017.igem.org/Team:Cadets2Vets/Demonstrate">
 
<a href="https://2017.igem.org/Team:Cadets2Vets/Demonstrate">
 
<div class="submenu_button"  id="Demonstrate_page">
 
<div class="submenu_button"  id="Demonstrate_page">
Line 588: Line 432:
 
</div>
 
</div>
 
</a>
 
</a>
 
 
<a href="https://2017.igem.org/Team:Cadets2Vets/Improve">
 
<a href="https://2017.igem.org/Team:Cadets2Vets/Improve">
 
<div class="submenu_button"  id="Improve_page">
 
<div class="submenu_button"  id="Improve_page">
Line 594: Line 437:
 
</div>
 
</div>
 
</a>
 
</a>
 
 
<a href="https://2017.igem.org/Team:Cadets2Vets/Attributions">
 
<a href="https://2017.igem.org/Team:Cadets2Vets/Attributions">
 
<div class="submenu_button"  id="Attributions_page">
 
<div class="submenu_button"  id="Attributions_page">
Line 600: Line 442:
 
</div>
 
</div>
 
</a>
 
</a>
 
 
</div>
 
</div>
 
 
 
 
 
 
 
<div class="menu_button">
 
<div class="menu_button">
 
<div class="expand_collapse_icon">  </div> PARTS
 
<div class="expand_collapse_icon">  </div> PARTS
Line 614: Line 449:
 
<!-- parts submenu -->
 
<!-- parts submenu -->
 
<div class="submenu_wrapper">
 
<div class="submenu_wrapper">
 
 
<a href="https://2017.igem.org/Team:Cadets2Vets/Parts">
 
<a href="https://2017.igem.org/Team:Cadets2Vets/Parts">
 
<div class="submenu_button"  id="Parts_page">
 
<div class="submenu_button"  id="Parts_page">
Line 620: Line 454:
 
</div>
 
</div>
 
</a>
 
</a>
 
 
<a href="https://2017.igem.org/Team:Cadets2Vets/Basic_Part">
 
<a href="https://2017.igem.org/Team:Cadets2Vets/Basic_Part">
 
<div class="submenu_button"  id="Basic_Part_page">
 
<div class="submenu_button"  id="Basic_Part_page">
Line 626: Line 459:
 
</div>
 
</div>
 
</a>
 
</a>
 
 
<a href="https://2017.igem.org/Team:Cadets2Vets/Composite_Part">
 
<a href="https://2017.igem.org/Team:Cadets2Vets/Composite_Part">
 
<div class="submenu_button"  id="Composite_Part_page">
 
<div class="submenu_button"  id="Composite_Part_page">
Line 632: Line 464:
 
</div>
 
</div>
 
</a>
 
</a>
 
 
<a href="https://2017.igem.org/Team:Cadets2Vets/Part_Collection">
 
<a href="https://2017.igem.org/Team:Cadets2Vets/Part_Collection">
 
<div class="submenu_button"  id="Part_Collection_page">
 
<div class="submenu_button"  id="Part_Collection_page">
Line 639: Line 470:
 
</a>
 
</a>
 
</div>  
 
</div>  
 
 
 
 
 
 
 
<a href="https://2017.igem.org/Team:Cadets2Vets/Safety">
 
<a href="https://2017.igem.org/Team:Cadets2Vets/Safety">
 
<div class="menu_button direct_to_page">
 
<div class="menu_button direct_to_page">
Line 650: Line 475:
 
</div>  
 
</div>  
 
</a>
 
</a>
 
 
 
 
 
 
 
 
<div class="menu_button" >
 
<div class="menu_button" >
 
<div class="expand_collapse_icon">  </div> HUMAN PRACTICES  
 
<div class="expand_collapse_icon">  </div> HUMAN PRACTICES  
Line 663: Line 481:
 
<!-- human practices submenu -->
 
<!-- human practices submenu -->
 
<div class="submenu_wrapper">
 
<div class="submenu_wrapper">
 
 
<a href="https://2017.igem.org/Team:Cadets2Vets/HP/Silver">
 
<a href="https://2017.igem.org/Team:Cadets2Vets/HP/Silver">
 
<div class="submenu_button"  id="Silver_page">
 
<div class="submenu_button"  id="Silver_page">
Line 669: Line 486:
 
</div>
 
</div>
 
</a>
 
</a>
 
 
<a href="https://2017.igem.org/Team:Cadets2Vets/HP/Gold_Integrated">
 
<a href="https://2017.igem.org/Team:Cadets2Vets/HP/Gold_Integrated">
 
<div class="submenu_button" id="Gold_Integrated_page">
 
<div class="submenu_button" id="Gold_Integrated_page">
Line 675: Line 491:
 
</div>
 
</div>
 
</a>
 
</a>
 
 
 
<a href="https://2017.igem.org/Team:Cadets2Vets/Engagement">
 
<a href="https://2017.igem.org/Team:Cadets2Vets/Engagement">
 
<div class="submenu_button"  id="Engagement_page">
 
<div class="submenu_button"  id="Engagement_page">
Line 682: Line 496:
 
</div>
 
</div>
 
</a>
 
</a>
 
 
</div>
 
</div>
 
 
 
<div class="menu_button">
 
<div class="menu_button">
 
<div class="expand_collapse_icon">  </div> AWARDS
 
<div class="expand_collapse_icon">  </div> AWARDS
Line 692: Line 503:
 
<!-- awards submenu -->
 
<!-- awards submenu -->
 
<div class="submenu_wrapper">
 
<div class="submenu_wrapper">
 
 
<a href="https://2017.igem.org/Team:Cadets2Vets/Applied_Design">
 
<a href="https://2017.igem.org/Team:Cadets2Vets/Applied_Design">
 
<div class="submenu_button"  id="Applied_Design_page">
 
<div class="submenu_button"  id="Applied_Design_page">
Line 698: Line 508:
 
</div>
 
</div>
 
</a>
 
</a>
 
 
<a href="https://2017.igem.org/Team:Cadets2Vets/Entrepreneurship">
 
<a href="https://2017.igem.org/Team:Cadets2Vets/Entrepreneurship">
 
<div class="submenu_button"  id="Entrepreneurship_page">
 
<div class="submenu_button"  id="Entrepreneurship_page">
Line 704: Line 513:
 
</div>
 
</div>
 
</a>
 
</a>
 
 
<a href="https://2017.igem.org/Team:Cadets2Vets/Hardware">
 
<a href="https://2017.igem.org/Team:Cadets2Vets/Hardware">
 
<div class="submenu_button"  id="Hardware_page">
 
<div class="submenu_button"  id="Hardware_page">
Line 710: Line 518:
 
</div>
 
</div>
 
</a>
 
</a>
 
 
<a href="https://2017.igem.org/Team:Cadets2Vets/Measurement">
 
<a href="https://2017.igem.org/Team:Cadets2Vets/Measurement">
 
<div class="submenu_button"  id="Measurement_page">
 
<div class="submenu_button"  id="Measurement_page">
Line 716: Line 523:
 
</div>
 
</div>
 
</a>
 
</a>
 
 
<a href="https://2017.igem.org/Team:Cadets2Vets/Model">
 
<a href="https://2017.igem.org/Team:Cadets2Vets/Model">
 
<div class="submenu_button"  id="Model_page">
 
<div class="submenu_button"  id="Model_page">
Line 722: Line 528:
 
</div>
 
</div>
 
</a>
 
</a>
 
 
<a href="https://2017.igem.org/Team:Cadets2Vets/Plant">
 
<a href="https://2017.igem.org/Team:Cadets2Vets/Plant">
 
<div class="submenu_button"  id="Plant_page">
 
<div class="submenu_button"  id="Plant_page">
Line 728: Line 533:
 
</div>
 
</div>
 
</a>
 
</a>
 
 
 
<a href="https://2017.igem.org/Team:Cadets2Vets/Software">
 
<a href="https://2017.igem.org/Team:Cadets2Vets/Software">
 
<div class="submenu_button"  id="Software_page">
 
<div class="submenu_button"  id="Software_page">
Line 735: Line 538:
 
</div>
 
</div>
 
</a>
 
</a>
 
 
</div>  
 
</div>  
 
 
<a href="https://igem.org/2017_Judging_Form?team=Cadets2Vets">
 
<a href="https://igem.org/2017_Judging_Form?team=Cadets2Vets">
 
<div class="menu_button direct_to_page">
 
<div class="menu_button direct_to_page">
Line 743: Line 544:
 
</div>  
 
</div>  
 
</a>
 
</a>
 
 
 
 
<div class="menu_bottom_padding" >
 
<div class="menu_bottom_padding" >
 
</div>  
 
</div>  
 
 
</div>
 
</div>
 
 
 
 
 
</div>
 
</div>
 
  
  

Revision as of 21:19, 6 July 2017

Cadets2Vets

USE THIS ONE!!!

Welcome to our Homepage



Cadets2Vets



- 2017 iGEM Team -


×

Loading ...