(81 intermediate revisions by the same user not shown) | |||
Line 50: | Line 50: | ||
$('nav').addClass('black'); | $('nav').addClass('black'); | ||
}else { | }else { | ||
+ | if($(window).width()>1200){ | ||
$('nav').removeClass('black'); | $('nav').removeClass('black'); | ||
+ | } | ||
} | } | ||
}) | }) | ||
− | |||
− | |||
+ | |||
+ | |||
+ | |||
+ | function myFunction() { | ||
+ | var x = document.getElementById("myLinks"); | ||
+ | if (x.style.display === "block") { | ||
+ | x.style.display = "none"; | ||
+ | } else { | ||
+ | x.style.display = "block"; | ||
+ | } | ||
+ | } | ||
+ | |||
+ | function myFunction1() { | ||
+ | var x = document.getElementById("myLinks1"); | ||
+ | if (x.style.display === "block") { | ||
+ | x.style.display = "none"; | ||
+ | } else { | ||
+ | x.style.display = "block"; | ||
+ | } | ||
+ | } | ||
+ | |||
+ | function myFunction2() { | ||
+ | var x = document.getElementById("myLinks2"); | ||
+ | if (x.style.display === "block") { | ||
+ | x.style.display = "none"; | ||
+ | } else { | ||
+ | x.style.display = "block"; | ||
+ | } | ||
+ | } | ||
+ | |||
+ | function myFunction3() { | ||
+ | var x = document.getElementById("myLinks3"); | ||
+ | if (x.style.display === "block") { | ||
+ | x.style.display = "none"; | ||
+ | } else { | ||
+ | x.style.display = "block"; | ||
+ | } | ||
+ | } | ||
+ | |||
+ | function myFunction4() { | ||
+ | var x = document.getElementById("myLinks4"); | ||
+ | if (x.style.display === "block") { | ||
+ | x.style.display = "none"; | ||
+ | } else { | ||
+ | x.style.display = "block"; | ||
+ | } | ||
+ | } | ||
+ | |||
+ | function myFunction5() { | ||
+ | var x = document.getElementById("myLinks5"); | ||
+ | if (x.style.display === "block") { | ||
+ | x.style.display = "none"; | ||
+ | } else { | ||
+ | x.style.display = "block"; | ||
+ | } | ||
+ | } | ||
+ | |||
+ | function myFunction6() { | ||
+ | var x = document.getElementById("myLinks6"); | ||
+ | if (x.style.display === "block") { | ||
+ | x.style.display = "none"; | ||
+ | } else { | ||
+ | x.style.display = "block"; | ||
+ | } | ||
+ | } | ||
+ | |||
+ | |||
+ | var windowsize = $(window).width(); | ||
+ | |||
+ | $(document).ready(function() { | ||
+ | if ($(window).width()< 850 ) { | ||
+ | //if the window is less than 700 wide then turn on footer as coloumn. | ||
+ | smallscreennavbar(); | ||
+ | |||
+ | } else { | ||
+ | largescreennavbar(); | ||
+ | } | ||
+ | |||
+ | if ($(window).width() < 1070) { | ||
+ | //if the window is less than 700 wide then turn on footer as coloumn. | ||
+ | $('nav').addClass('black'); | ||
+ | |||
+ | } else { | ||
+ | $('nav').removeClass('black'); | ||
+ | } | ||
+ | }); | ||
+ | |||
+ | |||
+ | $(window).resize(function() { | ||
+ | windowsize = $(window).width(); | ||
+ | if (windowsize < 850 ) { | ||
+ | //if the window is less than 700 wide then turn on footer as coloumn. | ||
+ | smallscreennavbar(); | ||
+ | |||
+ | } else { | ||
+ | largescreennavbar(); | ||
+ | } | ||
+ | |||
+ | if (windowsize < 1070) { | ||
+ | //if the window is less than 700 wide then turn on footer as coloumn. | ||
+ | $('nav').addClass('black'); | ||
+ | |||
+ | } else { | ||
+ | $('nav').removeClass('black'); | ||
+ | } | ||
+ | }); | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | function smallscreennavbar() { | ||
+ | $(".igem_2019_team_menu").addClass("non_displaying_menu"); | ||
+ | $(".igem_2019_team_menu").removeClass("displaying_menu"); | ||
+ | $("#igem_2019_team_menu_beltbuckle").hide(); | ||
+ | |||
+ | |||
+ | document.getElementById("mobiletopnav").style.display = "block"; | ||
+ | |||
+ | } | ||
+ | |||
+ | function largescreennavbar() { | ||
+ | $(".igem_2019_team_menu").removeClass("non_displaying_menu"); | ||
+ | $(".igem_2019_team_menu").addClass("displaying_menu"); | ||
+ | $("#igem_2019_team_menu_beltbuckle").show(); | ||
+ | |||
+ | |||
+ | document.getElementById("mobiletopnav").style.display = "none"; | ||
+ | |||
+ | |||
+ | |||
+ | } | ||
+ | |||
+ | |||
+ | //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// | ||
+ | </script> | ||
<style> | <style> | ||
/**************************************************************************************************************************************************************************************************/ | /**************************************************************************************************************************************************************************************************/ | ||
Line 71: | Line 206: | ||
height: 100%; | height: 100%; | ||
} | } | ||
− | + | #globalWrapper{padding-bottom: 0px;font-size:127%;} | |
body{ | body{ | ||
display: flex; | display: flex; | ||
Line 83: | Line 218: | ||
#content { margin-left:0px; margin-top:-7px; padding:0px; width:100%;} | #content { margin-left:0px; margin-top:-7px; padding:0px; width:100%;} | ||
body {background-color:white; } | body {background-color:white; } | ||
− | + | #bodyContent{} | |
+ | |||
#bodyContent a[href ^="https://"], .link-https { padding-right:0px;} | #bodyContent a[href ^="https://"], .link-https { padding-right:0px;} | ||
Line 93: | Line 229: | ||
/**************************************************************************************************************************************************************************************************/ | /**************************************************************************************************************************************************************************************************/ | ||
− | + | ||
/*mobile menu bar styling*/ | /*mobile menu bar styling*/ | ||
/**************************************************************************************************************************************************************************************************/ | /**************************************************************************************************************************************************************************************************/ | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | /*mobile menu bar styling*/ | ||
+ | /**************************************************************************************************************************************************************************************************/ | ||
+ | #mobiletopnav{ | ||
+ | z-index:20; | ||
+ | top:15px; | ||
+ | } | ||
+ | |||
+ | .topnav { | ||
+ | display:none; | ||
+ | overflow: hidden; | ||
+ | background-color: #333; | ||
+ | position: fixed; | ||
+ | width:100%; | ||
+ | z-index:3; | ||
+ | } | ||
+ | |||
+ | p {margin:0px !important;} | ||
+ | |||
+ | .topsubnav { | ||
+ | overflow: hidden; | ||
+ | background-color: #999; | ||
+ | position: relative; | ||
+ | display:none; | ||
+ | } | ||
+ | |||
+ | .topnav #myLinks { | ||
+ | display: none; | ||
+ | } | ||
+ | |||
+ | .topnav a { | ||
+ | color: white; | ||
+ | padding: 14px 16px; | ||
+ | text-decoration: none; | ||
+ | font-size: 17px; | ||
+ | display: block; | ||
+ | } | ||
+ | |||
+ | .topnav a.icon { | ||
+ | background: black; | ||
+ | display: block; | ||
+ | position: absolute; | ||
+ | right: 0; | ||
+ | top: 0; | ||
+ | } | ||
+ | |||
+ | .topnav a:hover { | ||
+ | background-color: #F8A05B; | ||
+ | color: black; | ||
+ | } | ||
+ | |||
+ | |||
+ | .activeMM { | ||
+ | background-color: #rgba(0, 0, 0, 0.8);; | ||
+ | color: white; | ||
+ | padding: 0px 0px; | ||
+ | } | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | .igem_2019_team_menu.displaying_menu{ | ||
+ | display:block; | ||
} | } | ||
+ | |||
+ | .igem_2019_team_menu.non_displaying_menu{ | ||
+ | display:none; | ||
+ | } | ||
/**************************************************************************************************************************************************************************************************/ | /**************************************************************************************************************************************************************************************************/ | ||
Line 167: | Line 359: | ||
/*footer styling*/ | /*footer styling*/ | ||
/**************************************************************************************************************************************************************************************************/ | /**************************************************************************************************************************************************************************************************/ | ||
− | |||
Line 175: | Line 366: | ||
#myFooter { | #myFooter { | ||
background-color: #3c3d41; | background-color: #3c3d41; | ||
− | + | ||
background-repeat: no-repeat; | background-repeat: no-repeat; | ||
color: white; | color: white; | ||
padding-top: 30px; | padding-top: 30px; | ||
background-size: cover; | background-size: cover; | ||
+ | } | ||
+ | |||
+ | .blue{ | ||
+ | background-image: linear-gradient(to bottom right, rgba(12, 49, 89, .94), rgba(9, 49, 79, 1)), url(https://static.igem.org/mediawiki/2019/1/1f/T--DTU-Denmark--vectorim.png); | ||
+ | } | ||
+ | |||
+ | .grey{ | ||
+ | background-image: linear-gradient(to bottom right, rgb(10, 10, 10), rgb(49, 49, 49)), url(https://static.igem.org/mediawiki/2019/1/1f/T--DTU-Denmark--vectorim.png); | ||
} | } | ||
Line 199: | Line 398: | ||
#myFooter ul { | #myFooter ul { | ||
list-style-type: none; | list-style-type: none; | ||
+ | padding:0; | ||
padding-left: 0; | padding-left: 0; | ||
line-height: 1.7; | line-height: 1.7; | ||
+ | list-style-image: none; | ||
+ | margin-block-start: 0em; | ||
+ | margin-block-end: 0em; | ||
+ | margin-inline-start: 0px; | ||
+ | margin-inline-end: 0px; | ||
+ | padding-inline-start: 0px; | ||
} | } | ||
Line 283: | Line 489: | ||
flex: 1 0 auto; | flex: 1 0 auto; | ||
-webkit-flex: 1 0 auto; | -webkit-flex: 1 0 auto; | ||
− | + | ||
} | } | ||
Line 291: | Line 497: | ||
} | } | ||
+ | #myFooter ul li{ | ||
+ | list-style-image: none; | ||
+ | padding:0; | ||
+ | } | ||
Line 336: | Line 546: | ||
nav .logo{ | nav .logo{ | ||
float: left; | float: left; | ||
+ | margin-top:10px; | ||
} | } | ||
nav .logo img{ | nav .logo img{ | ||
Line 354: | Line 565: | ||
margin-top: 25px; | margin-top: 25px; | ||
line-height: none; | line-height: none; | ||
− | font-size: | + | font-size: 17px; |
color: white; | color: white; | ||
padding: 5px 15px; | padding: 5px 15px; | ||
Line 362: | Line 573: | ||
text-shadow: 0 0 4px #000; | text-shadow: 0 0 4px #000; | ||
} | } | ||
+ | |||
+ | |||
+ | @media screen and (max-width: 920px) { | ||
+ | nav ul li{font-size:13.8px;} | ||
+ | } | ||
+ | |||
+ | |||
nav ul li a{ | nav ul li a{ | ||
color: white; | color: white; | ||
Line 438: | Line 656: | ||
/*size for title h tags | /*size for title h tags | ||
.igem_2019_team_content .igem_2019_team_column_wrapper h1 { font-size: 210%;} | .igem_2019_team_content .igem_2019_team_column_wrapper h1 { font-size: 210%;} | ||
− | .igem_2019_team_content .igem_2019_team_column_wrapper h2 { font-size: 190%;} | + | .igem_2019_team_content .igem_2019_team_column_wrapper h2 { font-size: 190%;margin-bottom:25px;} |
.igem_2019_team_content .igem_2019_team_column_wrapper h3 { font-size: 170%;} | .igem_2019_team_content .igem_2019_team_column_wrapper h3 { font-size: 170%;} | ||
.igem_2019_team_content .igem_2019_team_column_wrapper h4 { font-size: 160%;} | .igem_2019_team_content .igem_2019_team_column_wrapper h4 { font-size: 160%;} | ||
Line 493: | Line 711: | ||
/* Table tag*/ | /* Table tag*/ | ||
.igem_2019_team_content .igem_2019_team_column_wrapper table { | .igem_2019_team_content .igem_2019_team_column_wrapper table { | ||
− | border: 1px solid #635d5d; | + | border-bottom: 1px solid #635d5d; |
border-collapse: collapse; | border-collapse: collapse; | ||
font-size: 130%; | font-size: 130%; | ||
width: 100%; | width: 100%; | ||
+ | margin-bottom: 20px; | ||
+ | margin-top: 15px; | ||
} | } | ||
/* table cells */ | /* table cells */ | ||
.igem_2019_team_content .igem_2019_team_column_wrapper td { | .igem_2019_team_content .igem_2019_team_column_wrapper td { | ||
− | + | ||
− | + | ||
− | + | ||
padding: 10px; | padding: 10px; | ||
vertical-align: text-top; | vertical-align: text-top; | ||
Line 510: | Line 728: | ||
/* table headers */ | /* table headers */ | ||
.igem_2019_team_content .igem_2019_team_column_wrapper th { | .igem_2019_team_content .igem_2019_team_column_wrapper th { | ||
− | + | ||
− | + | ||
border-collapse: collapse; | border-collapse: collapse; | ||
− | + | ||
padding: 10px; | padding: 10px; | ||
vertical-align: text-top; | vertical-align: text-top; | ||
Line 665: | Line 882: | ||
@media only screen and (max-width: 1800px) { | @media only screen and (max-width: 1800px) { | ||
/*.igem_2019_team_content { width: 85%;}*/ | /*.igem_2019_team_content { width: 85%;}*/ | ||
− | + | ||
} | } | ||
Line 671: | Line 888: | ||
/************************************************/ | /************************************************/ | ||
@media only screen and (max-width: 1400px) { | @media only screen and (max-width: 1400px) { | ||
− | + | ||
− | + | ||
− | + | ||
} | } | ||
Line 682: | Line 897: | ||
.igem_2019_team_content {width:100%; margin-left:0px;} | .igem_2019_team_content {width:100%; margin-left:0px;} | ||
− | + | ||
.igem_2019_team_mobile_bar {display:block;} | .igem_2019_team_mobile_bar {display:block;} | ||
Line 693: | Line 908: | ||
/************************************************/ | /************************************************/ | ||
@media only screen and (max-width: 850px) { | @media only screen and (max-width: 850px) { | ||
− | + | ||
− | + | ||
/*500px */ | /*500px */ | ||
/************************************************/ | /************************************************/ | ||
@media only screen and (max-width: 500px) { | @media only screen and (max-width: 500px) { | ||
− | + | ||
} | } | ||
Line 705: | Line 919: | ||
/**************************************************************************************************************************************************************************************************/ | /**************************************************************************************************************************************************************************************************/ | ||
− | + | ||
li.clearfix{ | li.clearfix{ | ||
list-style-type:none; | list-style-type:none; | ||
+ | } | ||
+ | |||
+ | #mw-content-text p { | ||
+ | margin: 0 0 0px !important; | ||
} | } | ||
Line 720: | Line 938: | ||
<head> | <head> | ||
− | <!-- This tells the browser that your page is responsive --> | + | <!-- This tells the browser that your page is responsive--> |
− | <link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Roboto+Slab:300,400,500,700"> | + | <link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Roboto+Slab:300,400,500,700"> |
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css"> | <link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css"> | ||
− | <link rel="stylesheet" href=" | + | <!--<link rel="stylesheet" type="text/css" href="https://2019.igem.org/Template:DTU-Denmark/jquerymin?family=Roboto+Slab:300,400,500,700">--> |
− | + | ||
+ | <link rel="stylesheet" type="text/css" href="Template:DTU-Denmark/fontCSS?action=raw&ctype=text/css&family"> | ||
+ | <script type="text/javascript" src="https://2018.igem.org/common/MathJax-2.5-latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> | ||
+ | <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"> | ||
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> | <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> | ||
− | < | + | |
+ | |||
+ | <meta name="viewport" content="width=device-width, initial-scale=1"> | ||
+ | |||
+ | |||
</head> | </head> | ||
Line 740: | Line 964: | ||
− | + | <body> | |
− | + | <nav class="igem_2019_team_menu displaying_menu" style="z-index:20;"> | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
<div class="logo"> | <div class="logo"> | ||
− | <a href="https://2019.igem.org/Team:DTU-Denmark"><img src="https://static.igem.org/mediawiki/2019 | + | <a href="https://2019.igem.org/Team:DTU-Denmark"><img src="https://static.igem.org/mediawiki/2019/f/fe/T--DTU-Denmark--happylogotemp.png" alt="logo"></a> |
</div> | </div> | ||
<div class="menu-icon"> | <div class="menu-icon"> | ||
− | + | ||
</div> | </div> | ||
<ul id='menu'> | <ul id='menu'> | ||
− | + | <li class="dropdown"> | |
− | + | <a href="https://2019.igem.org/Team:DTU-Denmark/Awards" class="dropbtn"><img src="https://static.igem.org/mediawiki/2019/c/c0/T--DTU-Denmark--medallogo.svg" style="height:30px;" alt="Awards"></a> | |
− | + | </li> | |
<li class="dropdown"> | <li class="dropdown"> | ||
<a href="https://2019.igem.org/Team:DTU-Denmark/Description" class="dropbtn">Project</a> | <a href="https://2019.igem.org/Team:DTU-Denmark/Description" class="dropbtn">Project</a> | ||
Line 761: | Line 981: | ||
<a href="https://2019.igem.org/Team:DTU-Denmark/Description">Description</a> | <a href="https://2019.igem.org/Team:DTU-Denmark/Description">Description</a> | ||
<a href="https://2019.igem.org/Team:DTU-Denmark/Design">Design</a> | <a href="https://2019.igem.org/Team:DTU-Denmark/Design">Design</a> | ||
+ | <a style="padding-left:2em" href="https://2019.igem.org/Team:DTU-Denmark/Design_Promoter">Promoter Design</a> | ||
+ | <a style="padding-left:2em" href="https://2019.igem.org/Team:DTU-Denmark/Design_Plasmid">Vector Design</a> | ||
+ | <a style="padding-left:2em" href="https://2019.igem.org/Team:DTU-Denmark/Design_Measurement">Measurement Design</a> | ||
+ | |||
+ | |||
<a href="https://2019.igem.org/Team:DTU-Denmark/Results">Results</a> | <a href="https://2019.igem.org/Team:DTU-Denmark/Results">Results</a> | ||
<a href="https://2019.igem.org/Team:DTU-Denmark/Demonstrate">Demonstrate</a> | <a href="https://2019.igem.org/Team:DTU-Denmark/Demonstrate">Demonstrate</a> | ||
<a href="https://2019.igem.org/Team:DTU-Denmark/Safety">Safety</a> | <a href="https://2019.igem.org/Team:DTU-Denmark/Safety">Safety</a> | ||
− | + | ||
− | + | <a href="https://2019.igem.org/Team:DTU-Denmark/Contribution">Characterization</a> | |
− | + | ||
− | + | ||
− | + | ||
− | <a href="https://2019.igem.org/Team:DTU-Denmark/Contribution"> | + | |
</div> | </div> | ||
</li> | </li> | ||
Line 808: | Line 1,029: | ||
<div class="dropdown-content"> | <div class="dropdown-content"> | ||
<a href="https://2019.igem.org/Team:DTU-Denmark/Team">Team Members</a> | <a href="https://2019.igem.org/Team:DTU-Denmark/Team">Team Members</a> | ||
+ | <a href="https://2019.igem.org/Team:DTU-Denmark/Collaborations">Collaboration</a> | ||
<a href="https://2019.igem.org/Team:DTU-Denmark/Attributions">Attributions</a> | <a href="https://2019.igem.org/Team:DTU-Denmark/Attributions">Attributions</a> | ||
Line 815: | Line 1,037: | ||
<li class="dropdown"> | <li class="dropdown"> | ||
− | <a href="https://2019.igem.org/Team:DTU-Denmark/ | + | <a href="https://2019.igem.org/Team:DTU-Denmark/Integrated_Human_Practices" class="dropbtn">Human Practices</a> |
<div class="dropdown-content"> | <div class="dropdown-content"> | ||
+ | <a href="https://2019.igem.org/Team:DTU-Denmark/Integrated_Human_Practices">Integrated Human Practices</a> | ||
<a href="https://2019.igem.org/Team:DTU-Denmark/Human_Practices">Human Practices</a> | <a href="https://2019.igem.org/Team:DTU-Denmark/Human_Practices">Human Practices</a> | ||
<a href="https://2019.igem.org/Team:DTU-Denmark/Public_Engagement">Education and Engagement</a> | <a href="https://2019.igem.org/Team:DTU-Denmark/Public_Engagement">Education and Engagement</a> | ||
Line 831: | Line 1,054: | ||
+ | <!-- Top Navigation Menu --> | ||
+ | <div id="mobiletopnav" class="topnav"> | ||
+ | <a href="https://2019.igem.org/Team:DTU-Denmark" class="activeMM" >LEAP</a> | ||
+ | |||
+ | <div id="myLinks"> | ||
+ | |||
+ | <a href="javascript:void(0);" onclick="myFunction1()"> | ||
+ | Project | ||
+ | </a><div id="myLinks1" class="topsubnav"> | ||
+ | <a href="https://2019.igem.org/Team:DTU-Denmark/Description">Description</a> | ||
+ | <a href="https://2019.igem.org/Team:DTU-Denmark/Design">Design</a> | ||
+ | <a style="padding-left:2em" href="https://2019.igem.org/Team:DTU-Denmark/Design_Promoter">Promoter Design</a> | ||
+ | <a style="padding-left:2em" href="https://2019.igem.org/Team:DTU-Denmark/Design_Plasmid">Vector Design</a> | ||
+ | <a style="padding-left:2em" href="https://2019.igem.org/Team:DTU-Denmark/Design_Measurement">Measurement Design</a> | ||
+ | <a href="https://2019.igem.org/Team:DTU-Denmark/Results">Results</a> | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | <a href="https://2019.igem.org/Team:DTU-Denmark/Demonstrate">Demonstrate</a> | ||
+ | |||
+ | <a href="https://2019.igem.org/Team:DTU-Denmark/Contribution">Characterization</a> | ||
+ | </div> | ||
+ | |||
+ | <a href="javascript:void(0);" onclick="myFunction2()"> | ||
+ | Modelling | ||
+ | </a><div id="myLinks2" class="topsubnav"> | ||
+ | <a href="https://2019.igem.org/Team:DTU-Denmark/Model">Model</a> | ||
+ | <a href="https://2019.igem.org/Team:DTU-Denmark/Software">Software</a> | ||
+ | </div> | ||
+ | |||
+ | <a href="javascript:void(0);" onclick="myFunction3()"> | ||
+ | Parts | ||
+ | </a><div id="myLinks3" class="topsubnav"> | ||
+ | <a href="https://2019.igem.org/Team:DTU-Denmark/Parts">Parts</a> | ||
+ | <a href="https://2019.igem.org/Team:DTU-Denmark/Basic_Part">Basic_Part</a> | ||
+ | <a href="https://2019.igem.org/Team:DTU-Denmark/Composite_Part">Composite_Part</a> | ||
+ | <a href="https://2019.igem.org/Team:DTU-Denmark/Part_Collection">Part_Collection</a> | ||
+ | </div> | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | <a href="javascript:void(0);" onclick="myFunction4()"> | ||
+ | Journal | ||
+ | </a><div id="myLinks4" class="topsubnav"> | ||
+ | <a href="https://2019.igem.org/Team:DTU-Denmark/Notebook">Notebook</a> | ||
+ | <a href="https://2019.igem.org/Team:DTU-Denmark/Experiments">Experiments</a> | ||
+ | </div> | ||
+ | |||
+ | <a href="javascript:void(0);" onclick="myFunction5()"> | ||
+ | People | ||
+ | </a><div id="myLinks5" class="topsubnav"> | ||
+ | <a href="https://2019.igem.org/Team:DTU-Denmark/Team">Team Members</a> | ||
+ | <a href="https://2019.igem.org/Team:DTU-Denmark/Collaborations">Collaborations</a> | ||
+ | <a href="https://2019.igem.org/Team:DTU-Denmark/Attributions">Attributions</a> | ||
+ | </div> | ||
+ | |||
+ | <a href="https://2019.igem.org/Team:DTU-Denmark/Safety">Safety</a> | ||
+ | |||
+ | <a href="javascript:void(0);" onclick="myFunction6()"> | ||
+ | Human Practices | ||
+ | </a><div id="myLinks6" class="topsubnav"> | ||
+ | <a href="https://2019.igem.org/Team:DTU-Denmark/Integrated_Human_Practices">Integrated Human Practices</a> | ||
+ | <a href="https://2019.igem.org/Team:DTU-Denmark/Human_Practices">Human Practices</a> | ||
+ | <a href="https://2019.igem.org/Team:DTU-Denmark/Public_Engagement">Education & Engagement</a> | ||
+ | <a href="https://2019.igem.org/Team:DTU-Denmark/BioBrick_Tutorial">BioBrick Tutorial</a> | ||
+ | </div> | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | </div> | ||
+ | <a href="javascript:void(0);" class="icon" onclick="myFunction()"> | ||
+ | <i class="fa fa-bars"></i> | ||
+ | </a> | ||
+ | </div> | ||
Line 839: | Line 1,139: | ||
− | <div class="igem_2019_team_content" style="overflow:unset"> | + | <div class="igem_2019_team_content" style="overflow:unset; "> |
<div class="igem_2019_team_column_wrapper" style="overflow:unset"> | <div class="igem_2019_team_column_wrapper" style="overflow:unset"> |
Latest revision as of 00:46, 13 December 2019