Difference between revisions of "Template:BIMATOX Project"

 
(437 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
<html>
 
<html>
 +
 +
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js">
 +
</script>
 +
<script>
 +
  $(document).ready(function(){
 +
    $('meta[name="viewport"]').prop('content', 'width=1280');
 +
});
 +
</script>
  
 
<script>
 
<script>
  
// This is the jquery part of your template. 
+
/* When the user clicks on the button,
// Try not modify any of this code too much since it makes your menu work.
+
toggle between hiding and showing the dropdown content */
 +
function myFunction(id) {
 +
document.getElementById(id).classList.toggle("show");
 +
}
  
$(document).ready(function() {
+
// Close the dropdown if the user clicks outside of it
  
$("#HQ_page").attr('id','');
+
window.onclick = function(event) {
 +
  if (!event.target.matches('.dropbtn')) {
  
// call the functions that control the menu
+
    var dropdowns = document.getElementsByClassName("dropdown-content");
menu_functionality();  
+
    var i;
hide_show_menu();
+
    for (i = 0; i < dropdowns.length; i++) {
 +
      var openDropdown = dropdowns[i];
 +
      if (openDropdown.classList.contains('show')) {
 +
        openDropdown.classList.remove('show');
 +
      }
 +
    }
 +
  }
 +
}
  
 +
var slideIndex = 1;
 +
showSlides(slideIndex);
  
 +
function plusSlides(n) {
 +
  showSlides(slideIndex += n);
 +
}
  
//this function controls the expand and collapse buttons of the menu and changes the +/- symbols
+
function currentSlide(n) {
function menu_functionality() {
+
  showSlides(slideIndex = n);
 +
}
  
//when clicking on a "menu_button", it will change the "+/-" accordingly and it will show/hide the corresponding submenu
+
function showSlides(n) {
$(".menu_button").click(function(){
+
  var i;
 +
  var slides = document.getElementsByClassName("mySlides");
 +
  var dots = document.getElementsByClassName("dot");
 +
  if (n > slides.length) {slideIndex = 1}
 +
  if (n < 1) {slideIndex = slides.length}
 +
  for (i = 0; i < slides.length; i++) {
 +
      slides[i].style.display = "none";
 +
  }
 +
  for (i = 0; i < dots.length; i++) {
 +
      dots[i].className = dots[i].className.replace(" active", "");
 +
  }
 +
  slides[slideIndex-1].style.display = "block";
 +
  dots[slideIndex-1].className += " active";
 +
}
  
// add or remove the class "open" , this class holds the "-"
+
function openModal() {
$(this).children().toggleClass("open");
+
  document.getElementById('myModal').style.display = "block";
// show or hide the submenu
+
}
$(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
+
function closeModal() {
$("#display_menu_control").click(function(){
+
  document.getElementById('myModal').style.display = "none";
$('#menu_content').fadeToggle(400);
+
}
});
+
  
// call the current page highlight function
+
var slideIndex = 1;
highlight_current_page();
+
showSlides(slideIndex);
}
+
  
 +
function plusSlides(n) {
 +
  showSlides(slideIndex += n);
 +
}
  
// call the highlight current page function to show it on the menu with a different background color
+
function currentSlide(n) {
function highlight_current_page() {
+
  showSlides(slideIndex = n);
 
+
}
// 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");
+
 
+
// 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);
+
// change the +/- symbol of the corresponding menu button
+
$(".current_page").parents(".submenu_wrapper").prev().children().toggleClass("open");
+
+
}
+
 
+
 
+
 
+
// allow button on the black menu bar to show/hide the side menu
+
function hide_show_menu() {
+
+
// in case you preview mode is selected, the menu is hidden for better visibility
+
if (window.location.href.indexOf("submit") >= 0) {
+
$(".igem_2017_menu_wrapper").hide();
+
}
+
 
+
// if the black menu bar has been loaded
+
  if (document.getElementById('bars_item')) {
+
 
+
// when the "bars_item" has been clicked
+
$("#bars_item").click(function() {
+
$("#sideMenu").hide();
+
 
+
// show/hide the menu wrapper
+
$(".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
+
else {
+
    setTimeout(hide_show_menu, 15);
+
}
+
}
+
 
+
 
+
});
+
  
 +
function showSlides(n) {
 +
  var i;
 +
  var slides = document.getElementsByClassName("mySlides");
 +
  var dots = document.getElementsByClassName("dot");
 +
  if (n > slides.length) {slideIndex = 1}   
 +
  if (n < 1) {slideIndex = slides.length}
 +
  for (i = 0; i < slides.length; i++) {
 +
      slides[i].style.display = "none"; 
 +
  }
 +
  for (i = 0; i < dots.length; i++) {
 +
      dots[i].className = dots[i].className.replace(" active", "");
 +
  }
 +
  slides[slideIndex-1].style.display = "block"; 
 +
  dots[slideIndex-1].className += " active";
 +
}
  
 
</script>
 
</script>
  
 
+
<Style>
 
+
 
+
 
+
<style>
+
 
+
 
+
  
 
/***************************************************** DEFAULT WIKI SETTINGS  ****************************************************/
 
/***************************************************** DEFAULT WIKI SETTINGS  ****************************************************/
Line 102: Line 108:
 
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 */
 
.igem_2017_menu_wrapper {
 
background-color: #333;
 
overflow: hidden;
 
}
 
  
/* this hides the scrollbar to keep view consistency */
+
/* DROPDOWN AND NAVBAR */
.igem_2017_menu_wrappe::-webkit-scrollbar {
+
display: none;
+
}
+
+
+
/* styling for links in the menu, removes the line under text */
+
.igem_2017_menu_wrapper a { 
+
float: left;
+
display: block;
+
color: #f2f2f2;
+
text-align: center;
+
padding: 14px 16px;
+
text-decoration: none;
+
font-size: 17px;
+
}
+
  
 +
.navbar {
 +
    overflow: hidden;
 +
    background-color: #CA6065;
 +
    font-family: Arial;
 +
    width:100%;
 +
    height:100px;
 +
    margin-bottom:0;
 +
}
  
/* styling for the images in the menu */
+
.navbar a {
.igem_2017_menu_wrapper img {  
+
    float: left;
width: 100%;
+
    font-size: 18px;
}
+
    font-family: Arial;
 +
    font-weight: bold;
 +
    color: #2F4641;
 +
    text-align: center;
 +
    padding: 45px 16px;
 +
    text-decoration: none;
 +
}
  
/* styling for the menu buttons */
+
.navbar img {
.igem_2017_menu_wrapper .menu_button {  
+
    float: left;
width: 100%;
+
    font-size: 16px;
padding: 10px 0px 10px 15px;
+
    color: white;
float:top;  
+
    text-align: center;
border-bottom: 1px solid #ADD8E6;
+
    text-decoration: none;
font-size: 12px;  
+
}
font-weight: bold;  
+
color: #2F4F4F;  
+
cursor: pointer;
+
}
+
  
 +
.dropdown {
 +
    float: left;
 +
    overflow: hidden;
 +
}
  
.igem_2017_menu_wrapper .menu_bottom_padding {  
+
.dropdown .dropbtn {
width: 100%;  
+
    cursor: pointer;
height: 30px;
+
    font-size: 18px;  
float:left;
+
    border: none;
}
+
    outline: none;
 +
    color: #2F4641;
 +
    padding: 43px 16px;
 +
    background-color: inherit;
 +
}
  
.menu_button.direct_to_page {  
+
.navbar a:hover, .dropdown:hover .dropbtn {
padding-left: 36px;
+
    background-color: #199797;
}
+
}
  
 +
.dropdown-content {
 +
    display: none;
 +
    position: absolute;
 +
    background-color: #49A4AC;
 +
    font-family: Arial;
 +
    min-width: 160px;
 +
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
 +
    z-index: 1;
 +
}
  
.igem_2017_menu_wrapper .menu_button .expand_collapse_icon {
+
.dropdown-content a {
width:10%;
+
    float: none;
float:left;
+
    color: white;
}
+
    font-family: Arial;
 +
    padding: 12px 16px;
 +
    text-decoration: none;
 +
    display: block;
 +
    text-align: left;
 +
}
  
.igem_2017_menu_wrapper .menu_button .expand_collapse_icon::before {
+
.dropdown-content a:hover {
content: "+"; 
+
    background-color: #199797;
}
+
}
+
.open::before {
+
content: "-" !important; 
+
}
+
+
+
+
/* styling for the menu buttons on hover */
+
.igem_2017_menu_wrapper .menu_button:hover, .igem_2017_menu_wrapper .submenu_button:hover ,  .submenu_button.current_page:hover {  
+
background-color: #FF7F50;
+
text-decoration: none;
+
color:#ffffff;  
+
}
+
  
/* styling for the menu button when it is the current page */
+
.show {
.current_page {  
+
    display: block;
background-color:#FF7F50  !important;
+
}
color:#708090 !important;
+
}
+
  
 +
/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
 +
@media screen and (max-width: 600px) {
 +
  .navbar a:not(:first-child) {display: none;}
 +
  .navbar a.icon {
 +
    float: right;
 +
    display: block;
 +
  }
 +
}
  
/* styling for the submenu buttons */
+
/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
.igem_2017_menu_wrapper .submenu_button {  
+
@media screen and (max-width: 600px) {
width: 100%;  
+
  .navbar.responsive {position: relative;}
padding: 10px 0px 10px 34px;
+
  .navbar.responsive a.icon {
float:left;
+
    position: absolute;
background-color:#FFA07A;  
+
    right: 0;
border-bottom: 1px solid #FF6347;  
+
    top: 0;
font-size: 12px;  
+
  }
color: #708090;  
+
  .navbar.responsive a {
cursor: pointer;
+
    float: none;
}
+
    display: block;
 +
    text-align: left;
 +
  }
 +
}
  
/* wrapper for the submenu items, they are hidden by default*/
+
/* FOOTER */
.igem_2017_menu_wrapper .submenu_wrapper {
+
display:none;
+
}
+
  
/* when the page size is bigger than 800px, this show/hide control is hidden by default */
+
.footer {
.igem_2017_menu_wrapper #display_menu_control {
+
  position: absolute;
display:none;
+
  right: 0;
text-align:center;
+
  bottom: -20px;
}
+
  left: 0;
+
  height:220px;
 +
  background-color: #FFFFFF;
 +
  text-align: center;
 +
  display: inline-block;
 +
}
 +
 
 +
.footer img {
 +
    float: left;
 +
    color: white;
 +
    text-align: center;
 +
    padding: 0 0 0 0;
 +
}
  
 
/***************************************************** CONTENT OF THE PAGE ****************************************************/
 
/***************************************************** CONTENT OF THE PAGE ****************************************************/
Line 217: Line 236:
 
/* Wrapper for the content */
 
/* Wrapper for the content */
 
.igem_2017_content_wrapper {
 
.igem_2017_content_wrapper {
width: 81%;
+
width: 86%;
margin: 2%;
+
padding-top:8%;
 +
padding-left:7%;
 +
padding-bottom:20%;
 +
padding-right:7%;
 
display:block;
 
display:block;
 
float:left;  
 
float:left;  
background-color:white;  
+
overflow-y:hidden;
font-family:Tahoma, Geneva, sans-serif;  
+
margin: 0px 0px -20px 0px;
 +
background-image: url('https://static.igem.org/mediawiki/2017/a/a9/T--Uchile_Biotec--Fondo2.jpg');
 +
background-repeat: no-repeat;
 +
background-position: right top;
 +
background-color: #C0DACF;  
 
}
 
}
  
Line 228: Line 254:
 
/********************************* HTML STYLING  *********************************/
 
/********************************* HTML STYLING  *********************************/
  
/* styling for the titles h1 h2 */
+
/* styling for the titles h1 */
.igem_2017_content_wrapper h1, .igem_2017_content_wrapper h2 {
+
.igem_2017_content_wrapper h1 {
padding:5px 15px;  
+
padding:15px 15px 20px !important;  
 
border-bottom: 0px;  
 
border-bottom: 0px;  
color: #3399ff;
+
color: #CC6666;
 +
font-size: 30px !important;
 
}
 
}
  
 +
/* styling for the titles h2 */
 +
.igem_2017_content_wrapper h2 {
 +
padding:15px 24px 15px !important;
 +
border-bottom: 0px;
 +
color: #CE6161;
 +
font-size: 28px !important;
 +
}
  
/* styling for the titles  h3 h4 h5 h6*/
+
/* styling for the titles  h3 */
.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 {  
 
padding:5px 15px;  
 
padding:5px 15px;  
 
border-bottom:0px;  
 
border-bottom:0px;  
color: #000000;
+
color: #003333;
 +
font-size: 26px !important;  
 
}
 
}
  
 +
/* styling for the titles h4 */
 +
.igem_2017_content_wrapper h4 {
 +
padding:5px 15px;
 +
border-bottom:0px;
 +
color: #003333;
 +
font-size: 24px !important;
 +
}
 +
 +
/* styling for the titles h5 */
 +
.igem_2017_content_wrapper h5 {
 +
padding:5px 15px;
 +
border-bottom:0px;
 +
color: #003333;
 +
font-size: 22px !important;
 +
}
 +
 +
/* styling for the titles h6 */
 +
.igem_2017_content_wrapper h6 {
 +
padding:5px 15px;
 +
border-bottom:0px;
 +
color: #003333;
 +
font-size: 20px !important;
 +
}
  
 
/* font and text */
 
/* font and text */
 
.igem_2017_content_wrapper p {  
 
.igem_2017_content_wrapper p {  
 
padding: 0px 15px;  
 
padding: 0px 15px;  
font-size: 13px;
+
font-size: 18px !important;
 +
text-shadow: -1px 0 #C0DACF, 0 1px #C0DACF, 1px 0 #C0DACF, 0 -1px #C0DACF;
 
}
 
}
  
Line 255: Line 314:
 
text-decoration: underline;
 
text-decoration: underline;
 
text-decoration-color: #3399ff;
 
text-decoration-color: #3399ff;
color:  #3399ff;
+
color:  #339999;
 
-webkit-transition: all 0.4s ease;
 
-webkit-transition: all 0.4s ease;
 
-moz-transition: all 0.4s ease;  
 
-moz-transition: all 0.4s ease;  
Line 272: Line 331:
 
.igem_2017_content_wrapper ul {
 
.igem_2017_content_wrapper ul {
 
padding:0px 20px;
 
padding:0px 20px;
font-size: 13px;
+
font-size: 18px !important;
 
font-family:Tahoma, Geneva, sans-serif;  
 
font-family:Tahoma, Geneva, sans-serif;  
 
}
 
}
Line 279: Line 338:
 
.igem_2017_content_wrapper ol {
 
.igem_2017_content_wrapper ol {
 
padding:0px;  
 
padding:0px;  
font-size: 13px;
+
font-size: 18px !important;
 
font-family:Tahoma, Geneva, sans-serif;  
 
font-family:Tahoma, Geneva, sans-serif;  
 
}
 
}
Line 287: Line 346:
 
width: 97%;  
 
width: 97%;  
 
margin:15px 10px;  
 
margin:15px 10px;  
border: 1px solid #d3d3d3;  
+
border: 1px solid #dclass="dropbtn" onclick="3d3d3;  
 
border-collapse: collapse;  
 
border-collapse: collapse;  
 
}
 
}
Line 353: Line 412:
 
height: 30px;
 
height: 30px;
 
}
 
}
 
  
 
/* highlight class, makes content slightly smaller */
 
/* highlight class, makes content slightly smaller */
Line 391: Line 449:
 
-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 */
 
.igem_2017_content_wrapper .button:hover{
 
background-color: #3399ff;
 
    color: #000000;
 
}
 
 
 
 
  
 
/***************************************************** RESPONSIVE STYLING ****************************************************/
 
/***************************************************** RESPONSIVE STYLING ****************************************************/
 +
class="dropbtn" onclick="
 +
</Style>
  
/* IF THE SCREEN IS LESS THAN 1200PX */
+
<head>
@media only screen and (max-width: 1200px) {
+
  
#content {width:100%; }
+
</head>
.igem_2017_menu_wrapper {width:15%; right:0;}
+
.highlight {padding:10px 0px;}
+
.igem_2017_menu_wrapper #display_menu_control { display:none; }
+
#menu_content { display:block;}
+
.menu_button.direct_to_page {padding-left: 17px;}
+
+
}
+
 
+
/* IF THE SCREEN IS LESS THAN 800PX */
+
@media only screen and (max-width: 800px) {
+
 
+
.igem_2017_menu_wrapper { width:100%; height: 15%; position:relative; left:0%;}
+
.igem_2017_content_wrapper {width:100%; margin-left:0px;}
+
.column.half_size  {width:100%; }
+
.column.full_size img, .column.half_size img {  width: 100%; padding: 10px 0px;}
+
.highlight {padding:15px 5px;}
+
.igem_2017_menu_wrapper #display_menu_control { display:block; }
+
#menu_content { display:none;}
+
.igem_2017_menu_wrapper .menu_button .expand_collapse_icon { width: 5%; }
+
.menu_bottom_padding {display:none;}
+
.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 */
+
.judges-will-not-evaluate {
+
    width: 96.6%;
+
  margin: 5px 15px;
+
  display: block;
+
border: 4px solid #3399ff;
+
    font-weight: bold;
+
}
+
+
</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">  
 
<meta name="viewport" content="width=device-width, initial-scale=1">  
  
</head>
+
<head>
  
 +
<div class="navbar" id="myTopnav">
  
 +
  <img src="https://static.igem.org/mediawiki/2017/1/13/T--Uchile_Biotec--LogoFull.jpg" style="width:100px;height:100px;margin: 0px 0px 0px 10px"></img>
  
<div class="igem_2017_menu_wrapper" >
+
  <img src="https://static.igem.org/mediawiki/2017/c/ce/T--Uchile_Biotec--Bimatox.jpg" style="width:132px;height:80px;margin: 0px 10px"></img>
  
  
 +
  <a href="https://2017.igem.org/Team:UChile_Biotec">Home</a>
  
<a href="https://2017.igem.org/Team:UChile_Biotec">
+
  <div class="dropdown">
<img src="#">
+
    <button class="dropbtn" onclick="myFunction('1')"><b>Team∇</b></button>
</a>
+
    <div class="dropdown-content" id="1">
 +
      <a href="https://2017.igem.org/Team:UChile_Biotec/Team">Team</a>
 +
      <a href="https://2017.igem.org/Team:UChile_Biotec/Sponsors">Sponsors</a>
 +
      <a href="https://2017.igem.org/Team:UChile_Biotec/Attributions">Attributions</a>
 +
    </div>
 +
  </div>  
  
 +
  <a href="https://2017.igem.org/Team:UChile_Biotec/igem_latam">iGEM LATAM</a>
  
<!-- this div is hidden by default and will only be displayed if the screen size is too small -->
+
  <div class="dropdown">
<div class="menu_button" id="display_menu_control">
+
    <button class="dropbtn" onclick="myFunction('2')"><b>Project∇</b>
MENU 
+
    </button>
</div>  
+
    <div class="dropdown-content" id="2">
 +
      <a href="https://2017.igem.org/Team:UChile_Biotec/Proyect">Description</a>
 +
      <a href="https://2017.igem.org/Team:UChile_Biotec/Design">Design</a>
 +
      <a href="https://2017.igem.org/Team:UChile_Biotec/Experiments">Experiments</a>
 +
      <a href="https://2017.igem.org/Team:UChile_Biotec/Collaborations">Collaborations</a>
 +
      <a href="https://2017.igem.org/Team:UChile_Biotec/Afters">Improve</a>
 +
    </div>
 +
  </div>  
  
<div id="menu_content">
+
  <div class="dropdown">
+
    <button class="dropbtn" onclick="myFunction('6')"><b>Results∇</b>
 +
    </button>
 +
    <div class="dropdown-content" id="6">
 +
      <a href="https://2017.igem.org/Team:UChile_Biotec/Notebook">Notebook</a>
 +
      <a href="https://2017.igem.org/Team:UChile_Biotec/Model">Model</a>
 +
      <a href="https://2017.igem.org/Team:UChile_Biotec/Results">Results</a>
 +
    </div>
 +
  </div>
  
 +
  <a href="https://2017.igem.org/Team:UChile_Biotec/Parts">Parts</a>
  
 +
  <a href="https://2017.igem.org/Team:UChile_Biotec/Safety"><b>Safety</b></a>
  
<a href="https://2017.igem.org/Team:UChile_Biotec">
+
  <div class="dropdown">
<div class="menu_button direct_to_page">
+
    <button class="dropbtn" onclick="myFunction('4')"><b>Practices∇</b>
HOME
+
    </button>
</div>  
+
    <div class="dropdown-content" id="4">
</a>
+
      <a href="https://2017.igem.org/Team:UChile_Biotec/Practices/Overview">Overview</a>
 +
      <a href="https://2017.igem.org/Team:UChile_Biotec/HP/Integrated">Integrated</a>
 +
      <a href="https://2017.igem.org/Team:UChile_Biotec/Public_engagement">Public Engagement</a>
 +
    </div>
 +
  </div>  
  
 +
  <a href="https://2017.igem.org/Team:UChile_Biotec/Judging"><b>For Judges</b></a>
  
 +
</div>
  
<div class="menu_button">
+
<!-- start of content -->
<div class="expand_collapse_icon">  </div> TEAM
+
</div>  
+
  
<div class="submenu_wrapper" id="team_submenu">
 
 
<a href="https://2017.igem.org/Team:UChile_Biotec/Team">
 
<div class="submenu_button" id="Team_page">
 
Team
 
</div>
 
</a>
 
 
<a href="https://2017.igem.org/Team:UChile_Biotec/Collaborations">
 
<div class="submenu_button"  id="Collaborations_page">
 
Collaborations
 
</div>
 
</a>
 
 
 
</div>
 
 
 
 
 
 
<div class="menu_button">
 
<div class="expand_collapse_icon">  </div> PROJECT
 
</div>
 
 
<!-- project submenu -->
 
<div class="submenu_wrapper">
 
 
<a href="https://2017.igem.org/Team:UChile_Biotec/Description">
 
<div class="submenu_button"  id="Description_page">
 
Description
 
</div>
 
</a>
 
 
<a href="https://2017.igem.org/Team:UChile_Biotec/Design">
 
<div class="submenu_button"  id="Design_page">
 
Design
 
</div>
 
</a>
 
 
<a href="https://2017.igem.org/Team:UChile_Biotec/Experiments">
 
<div class="submenu_button"  id="Experiments_page">
 
Experiments
 
</div>
 
</a>
 
 
 
<a href="https://2017.igem.org/Team:UChile_Biotec/Notebook">
 
<div class="submenu_button"  id="Notebook_page">
 
Notebook
 
</div>
 
</a>
 
 
<a href="https://2017.igem.org/Team:UChile_Biotec/InterLab">
 
<div class="submenu_button"  id="InterLab_page">
 
InterLab
 
</div>
 
</a>
 
 
<a href="https://2017.igem.org/Team:UChile_Biotec/Contribution">
 
<div class="submenu_button"  id="Contribution_page">
 
Contribution
 
</div>
 
</a>
 
 
<a href="https://2017.igem.org/Team:UChile_Biotec/Model">
 
<div class="submenu_button"  id="Model_page">
 
Model
 
</div>
 
</a>
 
 
<a href="https://2017.igem.org/Team:UChile_Biotec/Results">
 
<div class="submenu_button"  id="Results_page">
 
Results
 
</div>
 
</a>
 
 
 
<a href="https://2017.igem.org/Team:UChile_Biotec/Demonstrate">
 
<div class="submenu_button"  id="Demonstrate_page">
 
Demonstrate
 
</div>
 
</a>
 
 
<a href="https://2017.igem.org/Team:UChile_Biotec/Improve">
 
<div class="submenu_button"  id="Improve_page">
 
Improve
 
</div>
 
</a>
 
 
<a href="https://2017.igem.org/Team:UChile_Biotec/Attributions">
 
<div class="submenu_button"  id="Attributions_page">
 
Attributions
 
</div>
 
</a>
 
 
</div>
 
 
 
 
 
 
 
<div class="menu_button">
 
<div class="expand_collapse_icon">  </div> PARTS
 
</div>
 
 
<!-- parts submenu -->
 
<div class="submenu_wrapper">
 
 
<a href="https://2017.igem.org/Team:UChile_Biotec/Parts">
 
<div class="submenu_button"  id="Parts_page">
 
Parts
 
</div>
 
</a>
 
 
<a href="https://2017.igem.org/Team:UChile_Biotec/Basic_Part">
 
<div class="submenu_button"  id="Basic_Part_page">
 
Basic Parts
 
</div>
 
</a>
 
 
<a href="https://2017.igem.org/Team:UChile_Biotec/Composite_Part">
 
<div class="submenu_button"  id="Composite_Part_page">
 
Composite Parts
 
</div>
 
</a>
 
 
<a href="https://2017.igem.org/Team:UChile_Biotec/Part_Collection">
 
<div class="submenu_button"  id="Part_Collection_page">
 
Part Collection
 
</div>
 
</a>
 
</div>
 
 
 
 
 
 
 
<a href="https://2017.igem.org/Team:UChile_Biotec/Safety">
 
<div class="menu_button direct_to_page">
 
SAFETY
 
</div>
 
</a>
 
 
 
 
 
 
 
 
<div class="menu_button" >
 
<div class="expand_collapse_icon">  </div> HUMAN PRACTICES
 
</div>
 
 
<!-- human practices submenu -->
 
<div class="submenu_wrapper">
 
 
<a href="https://2017.igem.org/Team:UChile_Biotec/HP/Silver">
 
<div class="submenu_button"  id="Silver_page">
 
Silver HP
 
</div>
 
</a>
 
 
<a href="https://2017.igem.org/Team:UChile_Biotec/HP/Gold_Integrated">
 
<div class="submenu_button" id="Gold_Integrated_page">
 
Integrated and Gold
 
</div>
 
</a>
 
 
 
<a href="https://2017.igem.org/Team:UChile_Biotec/Engagement">
 
<div class="submenu_button"  id="Engagement_page">
 
Public Engagement
 
</div>
 
</a>
 
 
</div>
 
 
 
<div class="menu_button">
 
<div class="expand_collapse_icon">  </div> AWARDS
 
</div>
 
 
<!-- awards submenu -->
 
<div class="submenu_wrapper">
 
 
<a href="https://2017.igem.org/Team:UChile_Biotec/Applied_Design">
 
<div class="submenu_button"  id="Applied_Design_page">
 
Applied Design
 
</div>
 
</a>
 
 
<a href="https://2017.igem.org/Team:UChile_Biotec/Entrepreneurship">
 
<div class="submenu_button"  id="Entrepreneurship_page">
 
Entrepreneurship
 
</div>
 
</a>
 
 
<a href="https://2017.igem.org/Team:UChile_Biotec/Hardware">
 
<div class="submenu_button"  id="Hardware_page">
 
Hardware
 
</div>
 
</a>
 
 
<a href="https://2017.igem.org/Team:UChile_Biotec/Measurement">
 
<div class="submenu_button"  id="Measurement_page">
 
Measurement
 
</div>
 
</a>
 
 
<a href="https://2017.igem.org/Team:UChile_Biotec/Model">
 
<div class="submenu_button"  id="Model_page">
 
Model
 
</div>
 
</a>
 
 
<a href="https://2017.igem.org/Team:UChile_Biotec/Plant">
 
<div class="submenu_button"  id="Plant_page">
 
Plant
 
</div>
 
</a>
 
 
 
<a href="https://2017.igem.org/Team:UChile_Biotec/Software">
 
<div class="submenu_button"  id="Software_page">
 
Software
 
</div>
 
</a>
 
 
</div>
 
 
<a href="https://igem.org/2017_Judging_Form?team=UChile_Biotec">
 
<div class="menu_button direct_to_page">
 
JUDGING FORM
 
</div>
 
</a>
 
 
 
 
<div class="menu_bottom_padding" >
 
</div>
 
 
</div>
 
 
 
 
 
</div>
 
 
 
 
<!-- start of content -->
 
 
<div class="igem_2017_content_wrapper">
 
<div class="igem_2017_content_wrapper">
<h1>UChile_Biotec</h1>
+
<h1></h1>

Latest revision as of 03:44, 2 November 2017