(Created page with "<html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html...") |
|||
(87 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
− | |||
− | |||
<html lang="en"> | <html lang="en"> | ||
+ | <style> .tooltip { | ||
+ | position: relative; | ||
+ | display: inline-block; | ||
+ | border-bottom: 1px dotted black; | ||
+ | } | ||
+ | |||
+ | .tooltip .tooltiptext { | ||
+ | visibility: hidden; | ||
+ | width: 300px; | ||
+ | background-color: black; | ||
+ | color: #fff; | ||
+ | text-align: center; | ||
+ | border-radius: 6px; | ||
+ | padding: 5px 0; | ||
+ | font-size: 0.75em; | ||
+ | |||
+ | /* Position the tooltip */ | ||
+ | position: absolute; | ||
+ | z-index: 1; | ||
+ | bottom: 100%; | ||
+ | left: 50%; | ||
+ | margin-left: -75px; | ||
+ | } | ||
+ | |||
+ | .tooltip:hover .tooltiptext { | ||
+ | visibility: visible; | ||
+ | } | ||
+ | </style> | ||
<head> | <head> | ||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | ||
− | <title>Wageningen UR iGEM | + | <title>Wageningen UR iGEM 2016 </title> |
− | + | <!-- We don't have/want a 16x16 img? | |
− | <link rel="icon" href="https://static.igem.org/mediawiki/ | + | <link rel="icon" href="https://static.igem.org/mediawiki/2016/f/f7/T--Wageningen_UR--projectbutton.png" sizes="16x16" type="image/png"> |
− | <link rel="icon" href="https://static.igem.org/mediawiki/ | + | --> |
− | <link rel="icon" href="https://static.igem.org/mediawiki/ | + | <link rel="icon" href="https://static.igem.org/mediawiki/2016/7/76/T--Wageningen_UR--beeicon.png" sizes="32x32" type="image/png"> |
− | <link rel="apple-touch-icon" href="https://static.igem.org/mediawiki/ | + | <link rel="icon" href="https://static.igem.org/mediawiki/2016/7/76/T--Wageningen_UR--beeicon.png"> |
− | <!--[if IE]><link rel="shortcut icon" href="https://static.igem.org/mediawiki/ | + | <link rel="apple-touch-icon" href="https://static.igem.org/mediawiki/2016/7/76/T--Wageningen_UR--beeicon.png"> |
+ | <!--[if IE]><link rel="shortcut icon" href="https://static.igem.org/mediawiki/2016/7/76/T--Wageningen_UR--beeicon.png"><![endif]--> | ||
<!-- or, set /favicon.ico for IE10 win --> | <!-- or, set /favicon.ico for IE10 win --> | ||
<meta name="msapplication-TileColor" content="#D83434"> | <meta name="msapplication-TileColor" content="#D83434"> | ||
− | <meta name="msapplication-TileImage" content="https://static.igem.org/mediawiki/ | + | <meta name="msapplication-TileImage" content="https://static.igem.org/mediawiki/2016/7/76/T--Wageningen_UR--upbutton.jpg"> |
− | <link rel="stylesheet" href="https:// | + | <link rel="stylesheet" href="https://2016.igem.org/Template:Wageningen_UR/css?action=raw&ctype=text/css" type="text/css" /> |
− | + | <!--[if (lte IE 6)|(gte IE 8)]> | |
− | + | ||
<style type="text/css"> | <style type="text/css"> | ||
#wrapper {height:100%;display:table;} | #wrapper {height:100%;display:table;} | ||
Line 29: | Line 55: | ||
<![endif]--> | <![endif]--> | ||
− | + | <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script> | |
− | + | ||
− | <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script> | + | |
− | + | ||
− | + | ||
− | + | ||
<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> | <script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> | ||
+ | |||
<script> | <script> | ||
$(function() { | $(function() { | ||
− | $("a[href^='http']:not([href*=' | + | $("a[href^='http']:not([href*='2016.igem.org'])").each(function() { |
$(this).click(function(event) { | $(this).click(function(event) { | ||
event.preventDefault(); | event.preventDefault(); | ||
Line 47: | Line 70: | ||
}); | }); | ||
}); | }); | ||
− | </script> | + | |
+ | function ShowHide(divId) | ||
+ | { | ||
+ | if(document.getElementById(divId).style.display == 'none') | ||
+ | { | ||
+ | document.getElementById(divId).style.display='block'; | ||
+ | } | ||
+ | else | ||
+ | { | ||
+ | document.getElementById(divId).style.display = 'none'; | ||
+ | } | ||
+ | } | ||
+ | </script> | ||
</head> | </head> | ||
<body> | <body> | ||
+ | <style> | ||
+ | .hamburger{ | ||
+ | background:#e8ce94; | ||
+ | position:relative; | ||
+ | top:0; | ||
+ | right:0; | ||
+ | line-height:45px; | ||
+ | padding:60px 15px 0px 15px; | ||
+ | color:#black; | ||
+ | border:0; | ||
+ | font-size:1.4em; | ||
+ | font-weight:bold; | ||
+ | cursor:pointer; | ||
+ | outline:none; | ||
+ | z-index:5; | ||
+ | } | ||
+ | .cross{ | ||
+ | background:#e8ce94; | ||
+ | position:relative; | ||
+ | top:0px; | ||
+ | right:0; | ||
+ | padding:45px 15px 0px 15px; | ||
+ | color:black; | ||
+ | border:0; | ||
+ | font-size:3em; | ||
+ | line-height:60px; | ||
+ | font-weight:bold; | ||
+ | cursor:pointer; | ||
+ | outline:none; | ||
+ | z-index:5; | ||
+ | } | ||
+ | .mobilemenu{z-index:4; font-weight:bold; font-size:0.8em; width:20%; background:#e8ce94; position:absolute; text-align:center;} | ||
+ | .mobilemenu ul {margin: 0; padding: 0; list-style-type: none; list-style-image: none;} | ||
+ | .mobilemenu li {display: block; padding:15px 0 15px 0; border-bottom:black 1px solid;} | ||
+ | .mobilemenu li:hover{display: block; background:#181818; padding:15px 0 15px 0; border-bottom:black 1px solid;} | ||
+ | .mobilemenu ul li a { text-decoration:none; margin: 0px; color:#fff;} | ||
+ | .mobilemenu ul li a:hover { color: #6d5d31; text-decoration:none;} | ||
+ | .mobilemenu a{text-decoration:none; color:black;} | ||
+ | .mobilemenu a:hover{text-decoration:none; color:white;} | ||
+ | </style> | ||
+ | |||
+ | <style> | ||
+ | @media only screen and (min-width: 900px) { | ||
+ | .mobilemenu{ | ||
+ | display: none; | ||
+ | } | ||
+ | .hamburger{ | ||
+ | display: none; | ||
+ | } | ||
+ | |||
+ | </style> | ||
<div id="wrapper"> | <div id="wrapper"> | ||
<!--<div id="header"> | <!--<div id="header"> | ||
Line 57: | Line 143: | ||
</div> --> | </div> --> | ||
<div id="innerwrap"> | <div id="innerwrap"> | ||
− | |||
<div id="left"> | <div id="left"> | ||
+ | <button class="hamburger">☰</button> | ||
+ | <button class="cross">˟</button> | ||
+ | <div class="mobilemenu"> | ||
+ | <ul> | ||
+ | <a href="https://2016.igem.org/Team:Wageningen_UR"><li><b>Overview</b></li></a> | ||
+ | <a href="https://2016.igem.org/Team:Wageningen_UR/Description"><li>Description</li></a> | ||
+ | <a href="https://2016.igem.org/Team:Wageningen_UR/Results"><li>Results</li></a> | ||
+ | <a href="https://2016.igem.org/Team:Wageningen_UR/Achievements"><li>Achievements</li></a> | ||
+ | <a href="https://2016.igem.org/Team:Wageningen_UR/Parts"><li>BioBricks</li></a> | ||
+ | <a href="https://2016.igem.org/Team:Wageningen_UR/Description/Specificity"><li>Specificity</li></a> | ||
+ | <a href="https://2016.igem.org/Team:Wageningen_UR/Description/Regulation"><li>Regulation</li></a> | ||
+ | <a href="https://2016.igem.org/Team:Wageningen_UR/Description/Biocontainment"><li>Biocontainment</li></a> | ||
+ | <a href="https://2016.igem.org/Team:Wageningen_UR/Model"><li>Model</li></a> | ||
+ | <a href="https://2016.igem.org/Team:Wageningen_UR/HP/Gold"><li>Outreach</li></a> | ||
+ | <a href="https://2016.igem.org/Team:Wageningen_UR/team/members"><li>Team</li></a> | ||
+ | <a href="https://2016.igem.org/Team:Wageningen_UR/Notebook"><li>Notebook</li></a> | ||
+ | </ul><script type="text/javascript"> | ||
+ | $( ".cross" ).hide(); | ||
+ | $( ".mobilemenu" ).hide(); | ||
+ | $( ".hamburger" ).click(function() { | ||
+ | $( ".mobilemenu" ).slideToggle( "slow", function() { | ||
+ | $( ".hamburger" ).hide(); | ||
+ | $( ".cross" ).show(); | ||
+ | }); | ||
+ | }); | ||
+ | |||
+ | $( ".cross" ).click(function() { | ||
+ | $( ".mobilemenu" ).slideToggle( "slow", function() { | ||
+ | $( ".cross" ).hide(); | ||
+ | $( ".hamburger" ).show(); | ||
+ | }); | ||
+ | }); | ||
+ | </script> | ||
+ | |||
+ | </div> | ||
<p> </p> | <p> </p> | ||
<div id="inner-left"> | <div id="inner-left"> | ||
Line 67: | Line 187: | ||
<sidenav> | <sidenav> | ||
<!-------------------- First template section end ------------------------------------> | <!-------------------- First template section end ------------------------------------> | ||
− |
Latest revision as of 14:38, 19 October 2016