Team:TU Delft

From 2010.igem.org

(Difference between revisions)
Line 1: Line 1:
__NOTOC__
__NOTOC__
-
{{:Team:TU_Delft/header2}}
 
<html>
<html>
 +
 +
<!--
 +
 +
============================================================================================
 +
*** PLEASE NOTE: ***
 +
 +
When copying our code, please be so kind to mention so on your wiki.
 +
 +
You can use our logo https://static.igem.org/mediawiki/2010/7/7b/TU_Delft.jpg to link to our wiki.
 +
 +
For questions about this, contact us at info@igemtudelft.nl.
 +
 +
Pieter van Boheemen, Jelmer Cnossen
 +
 +
============================================================================================
 +
 +
/-->
 +
 +
<!-- Reset CSS - START
 +
<link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/2.8.1/build/base/base-min.css">
 +
Reset CSS - END /-->
 +
 +
<!-- Internet Explorer PNG fix - START /-->
 +
<!--[if lt IE 8]>
 +
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE8.js">IE7_PNG_SUFFIX=".png";</script>
 +
<![endif]-->
 +
<!-- Internet Explorer PNG fix - END /-->
<!-- Scripting - START /-->
<!-- Scripting - START /-->
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.js"></script>
-
 
<script type="text/javascript" src="http://github.com/cowboy/jquery-hashchange/raw/v1.3/jquery.ba-hashchange.js"></script>
<script type="text/javascript" src="http://github.com/cowboy/jquery-hashchange/raw/v1.3/jquery.ba-hashchange.js"></script>
-
<script type="text/javascript" src="https://2010.igem.org/Team:TU_Delft/files/main.js?action=raw&ctype=text/javascript"></script>
+
<!-- Font Replacer - START /-->
 +
<script src="https://2010.igem.org/Team:TU_Delft/files/cufon-yui.js?action=raw&ctype=text/javascript" type="text/javascript"></script>
 +
<script src="https://2010.igem.org/Team:TU_Delft/files/Mido_500.font.js?action=raw&ctype=text/javascript" type="text/javascript"></script>
 +
<!-- Font Replacer - END /-->
-
<!-- Scripting - END /-->
+
<script>
 +
//Global Vars
 +
var currentPage;
 +
var in_frame_test = 1;
-
<div id="menu_wrap">
+
function dbgout(msg) {
 +
  var is_chrome = navigator.userAgent.toLowerCase().indexOf('chrome') > -1;
 +
  if(is_chrome) console.log(msg);
 +
}
-
</html>
+
// Set document ready callback
-
{{:Team:TU_Delft/menu2|contentpage={{{contentpage|home}}} }}
+
$(function() {
-
<html>
+
// Initialize history plugin.
 +
$(window).hashchange(historyCallback);
 +
rewriteLinks($("#navlist"));
-
</div>
+
historyCallback();
-
<div id="content_wrap">
+
// setup hovering
 +
$(".menu_button").hover(
 +
function () { $(this).addClass("hover"); },
 +
function () { $(this).removeClass("hover"); }
 +
);
 +
});
-
<div id="content_table">
 
-
     <div id="top_row">&nbsp;</div>
+
function isDefined(variable)
 +
{
 +
     return typeof(window[variable]) != "undefined";
 +
}
-
    <div class="main_row">
+
function splitHash(hash) {
 +
var kvpairs = hash.split('&');
 +
var i;
 +
var kvmap = {};
 +
for(i=0;i<kvpairs.length;i++) {
 +
var s = kvpairs[i].split('=');
 +
kvmap[s[0]] = s[1];
 +
}
 +
return kvmap;
 +
}
-
        <div id="main_td">
+
function makeHash(page, kvmap) {
 +
var str = '#page=' + page;
 +
var i;
 +
if (kvmap) {
 +
for(i in kvmap) {
 +
str += '&' + i + '=' + kvmap[i];
 +
}
 +
}
 +
return str; 
 +
}
-
        <style>
+
function setHash(page, kvmap) {
-
        #panel_mask { 
+
/*
-
            width: 925px;
+
var str = '#page=' + page;
-
            overflow:hidden;
+
var i;
-
            margin:0 auto;
+
if (kvmap) {
-
            min-height: 500px;
+
for(i in kvmap) {
-
        }
+
str += '&' + i + '=' + kvmap[i];
-
        .page_panel {
+
}
-
            float:left;
+
}
-
            width: 925px;
+
location.hash = str;
-
            padding-right:10px;
+
*/
 +
location.hash = makeHash(page,kvmap);
 +
}
 +
 
 +
 
 +
function include_js(file, cb) {
 +
    var html_doc = document.getElementsByTagName('head')[0];
 +
    var js = document.createElement('script');
 +
    js.setAttribute('type', 'text/javascript');
 +
    js.setAttribute('src', file);
 +
    html_doc.appendChild(js);
 +
 
 +
    js.onreadystatechange = function () {
 +
        if (js.readyState == 'complete') {
 +
cb();
         }
         }
-
        </style>
+
    }
-
        <div id="panel_mask">
+
    js.onload = cb;
 +
}
-
<div id="load">
+
function loadScript(src, callback)
-
<div id="loading">LOADING, please wait...</div>
+
{
 +
  include_js(src, callback);
 +
}
 +
 
 +
function loadPage(page)
 +
{
 +
currentPage = page;
 +
var url = wgServer + "/Team:TU_Delft/" + page + "?action=render";
 +
$(window).trigger('page_close');
 +
$("#iGEM_TU_Delft_container").fadeOut(200);
 +
 
 +
var processPage = function(next) {
 +
dbgout('processPage: ' + page);
 +
$(window).trigger('page_init');
 +
rewriteLinks($("#iGEM_TU_Delft_container"));
 +
next();
 +
}
 +
 +
$.get(url, function(data) {
 +
$("#iGEM_TU_Delft_container").html(data).fadeIn(200).queue(processPage);
 +
buildBreadCrumbTrail(page);
 +
Cufon.replace('h2'); // Works without a selector engine
 +
Cufon.replace('h3'); // Works without a selector engine
 +
Cufon.replace('#sub1'); // Requires a selector engine for IE 6-7, see above
 +
$("tr:nth-child(odd)").addClass("odd");
 +
});
 +
}
 +
 
 +
function historyCallback() {
 +
var hash = location.hash;
 +
if(hash) {
 +
hash = hash.substring(1);
 +
if(hash.split('=').length > 1) {
 +
var kvmap = splitHash(hash);
 +
var changepage;
 +
 
 +
// looks a little clumsy, but js AND operator conflicts with mediawiki markup
 +
if (kvmap.page) if(kvmap.page != currentPage) changepage = kvmap.page;
 +
 
 +
if (changepage) {
 +
loadPage(changepage);
 +
} else
 +
$(window).trigger('hashupdate');
 +
}
 +
} else {
 +
setHash('Home');
 +
}
 +
}
 +
 
 +
 
 +
function rewriteLinks(elem) {
 +
$("a",elem).each(function() {
 +
var txt = $(this).text();
 +
var url = this.href;
 +
 
 +
if(this.hash)
 +
this.href = this.hash;
 +
else if(txt != "edit")
 +
this.href = this.href.replace("https://2010.igem.org/Team:TU_Delft/", "#page=");
 +
 
 +
// dbgout('rewriting ' + url + ' to ' + this.href);
 +
});
 +
}
 +
 
 +
 
 +
</script>
 +
<script type="text/javascript">
 +
var timeout    = 500;
 +
var closetimer = 0;
 +
var ddmenuitem = 0;
 +
 
 +
function jsddm_open() {
 +
  jsddm_canceltimer();
 +
  jsddm_close();
 +
  ddmenuitem = $(this).find('ul').css('visibility', 'visible');
 +
}
 +
 
 +
function jsddm_close() {
 +
  if(ddmenuitem) ddmenuitem.css('visibility', 'hidden');
 +
}
 +
 
 +
function jsddm_timer() {
 +
  closetimer = window.setTimeout(jsddm_close, timeout);
 +
}
 +
 
 +
function jsddm_canceltimer() {
 +
  if(closetimer) {
 +
    window.clearTimeout(closetimer);
 +
    closetimer = null;
 +
  }
 +
}
 +
 
 +
$(function() {
 +
  $('#navlist > li').bind('mouseover', jsddm_open);
 +
  $('#navlist > li').bind('mouseout',  jsddm_timer);
 +
// $("#navlist li ul li:even").addClass("alt");
 +
});
 +
 
 +
document.onclick = jsddm_close;
 +
</script>
 +
 
 +
<script language="javascript" type="text/javascript">
 +
var _0x30e1=["\x74\x6F\x55\x70\x70\x65\x72\x43\x61\x73\x65","\x63\x68\x61\x72\x41\x74","\x73\x6C\x69\x63\x65","","\x2F","\x73\x70\x6C\x69\x74","\x3C\x61\x20\x68\x72\x65\x66\x3D\x27\x68\x74\x74\x70\x3A\x2F\x2F\x32\x30\x31\x30\x2E\x69\x67\x65\x6D\x2E\x6F\x72\x67\x2F\x54\x65\x61\x6D\x3A\x54\x55\x5F\x44\x65\x6C\x66\x74\x2F\x74\x65\x73\x74\x23\x70\x61\x67\x65\x3D\x48\x6F\x6D\x65\x27\x3E\x48\x6F\x6D\x65\x3C\x2F\x61\x3E","\x48\x6F\x6D\x65","\x6C\x65\x6E\x67\x74\x68","\x20\x3C\x73\x70\x61\x6E\x20\x63\x6C\x61\x73\x73\x3D\x27\x64\x6F\x75\x62\x6C\x65\x72\x69\x67\x68\x74\x27\x3E\x26\x72\x61\x71\x75\x6F\x3B\x3C\x2F\x73\x70\x61\x6E\x3E\x20\x3C\x61\x20\x68\x72\x65\x66\x3D\x27\x68\x74\x74\x70\x3A\x2F\x2F\x32\x30\x31\x30\x2E\x69\x67\x65\x6D\x2E\x6F\x72\x67\x2F\x54\x65\x61\x6D\x3A\x54\x55\x5F\x44\x65\x6C\x66\x74\x2F\x74\x65\x73\x74\x23\x70\x61\x67\x65\x3D","\x27\x3E","\x20","\x72\x65\x70\x6C\x61\x63\x65","\x3C\x2F\x61\x3E","\x68\x74\x6D\x6C","\x23\x62\x72\x65\x61\x64\x63\x72\x75\x6D\x62\x73"];function capitaliseFirstLetter(_0x1895x2){return _0x1895x2[_0x30e1[1]](0)[_0x30e1[0]]()+_0x1895x2[_0x30e1[2]](1);} ;function buildDepth(_0x1895x4,_0x1895x5){var _0x1895x6=_0x30e1[3];for(i=0;i<_0x1895x5;i++){_0x1895x6=_0x1895x6+_0x1895x4[i]+_0x30e1[4];} ;return _0x1895x6;} ;function buildBreadCrumbTrail(_0x1895x8){var _0x1895x9= new Array();var _0x1895xa=_0x1895x8;_0x1895x9=_0x1895xa[_0x30e1[5]](_0x30e1[4]);var _0x1895xb=_0x30e1[6];if(_0x1895x8!=_0x30e1[7]){for(count=0;count<(_0x1895x9[_0x30e1[8]]);count++){_0x1895xb=_0x1895xb+_0x30e1[9]+buildDepth(_0x1895x9,count)+_0x1895x9[count]+_0x30e1[10]+capitaliseFirstLetter(_0x1895x9[count])[_0x30e1[12]](/-/gi,_0x30e1[11])+_0x30e1[13];} ;} ;$(_0x30e1[15])[_0x30e1[14]](_0x1895xb);} ;
 +
</script>
 +
<!-- Scripting END /-->
 +
 
 +
<!-- Main CSS - START /-->
 +
<style type="text/css">
 +
/* Wiki Hacks - START */
 +
/* Author: Pieter van Boheemen */
 +
/* Team: TU Delft */
 +
#globalWrapper { background-color: transparent; border: none; margin: 0; padding: 0; width: 100%;
 +
height:auto !important; /* real browsers */
 +
height:100%; /* IE6: treaded as min-height*/
 +
min-height:100%; /* real browsers */
 +
}
 +
#content { z-index: 1; background-color: transparent; border: none; padding: 0; margin: 0; width: 100%; overflow: hidden; margin-top: -15px !important; margin-top: 0px;
 +
height:auto !important; /* real browsers */
 +
height:100%; /* IE6: treaded as min-height*/
 +
min-height:100%; /* real browsers */
 +
}
 +
#bodyContent { border: none; padding:0; margin:0; width:100%;
 +
height:auto !important; /* real browsers */
 +
height:100%; /* IE6: treaded as min-height*/
 +
min-height:100%; /* real browsers */
 +
}
 +
#top-section { z-index: 2; height: 15px; margin: 0px; margin-left: auto; margin-right: auto; margin-bottom: 0 !important; padding:0; border: none; font-size: 10px;}
 +
#p-logo { height:1px; overflow:hidden; display: none;}
 +
#search-controls { overflow:hidden; display:block; background: none; position: absolute; top: 100px; right: 40px;}
 +
.left-menu { width: 500px !important; display:block; margin-top:-80px; border: none; text-align: right;}
 +
.left-menu ul { border: none; }
 +
#menubar.right-menu { width:300px; display:block; float:left; margin-top:-80px; border: none;}
 +
.right-menu ul { border: none; width: 300px;}
 +
#footer-box { background-color: #216085; border: none; width: 100%; margin: -10px auto 0 auto; padding: 20px 0;}
 +
.visualClear { display: none; }
 +
#footer { border: none; width: 965px; margin: 0 auto; padding: 0;}
 +
.firstHeading { display: none;}
 +
#f-list a { color: #333; font-size: 10px;}
 +
#f-list a:hover { color: #666;}
 +
.printfooter { display: none; }
 +
#footer ul { margin: 0; padding: 0;}
 +
#footer ul li { margin-top: 0; margin-bottom: 0; margin-left: 10px; margin-right: 10px; padding: 0;}
 +
#search-controls { display:none; }
 +
h3#siteSub { display: none;}
 +
#contentSub {display: none;}
 +
p:first-child { display: none;}
 +
 
 +
/* Wiki Hacks - END */
 +
h2 {
 +
font-size: 30px;
 +
border: none;
 +
}
 +
 
 +
h3 {
 +
font-size: 20px;
 +
border: none;
 +
}
 +
 
 +
html, body {
 +
margin: 0;
 +
padding: 0;
 +
width: 100%;
 +
height: 100%;
 +
}
 +
 
 +
body {
 +
background-color: #d0f1fa;
 +
font-family: Verdana, Arial;
 +
font-size: 12px;
 +
color: #222222;
 +
}
 +
 +
#TUD-main-wrapper {
 +
width: 100%;
 +
height:auto !important; /* real browsers */
 +
height:100%; /* IE6: treaded as min-height*/
 +
min-height:100%; /* real browsers */
 +
text-align: center;
 +
background-image: url('https://static.igem.org/mediawiki/2010/b/b3/TU_Delft_footer_tile.gif');
 +
background-position: bottom left;
 +
background-repeat: repeat-x;
 +
display: block;
 +
font-family: Verdana, Arial;
 +
font-size: 12px;
 +
color: #222222;
 +
}
 +
 
 +
#TUD-main-wrapper div {
 +
line-height: 18px;
 +
}
 +
 
 +
/* IE ignores this */
 +
html>body #TUD-main-wrapper {
 +
height: auto;
 +
min-height: 100%;
 +
}
 +
 
 +
#TUD-main-wrapper2 {
 +
width: 100%;
 +
height:auto !important; /* real browsers */
 +
height:100%; /* IE6: treaded as min-height*/
 +
min-height:100%; /* real browsers */
 +
text-align: center;
 +
background-image: url('https://static.igem.org/mediawiki/2010/9/9d/TU_Delft_bg_tile.gif');
 +
background-repeat: repeat-x;
 +
background-repeat: repeat-x;
 +
display: block;
 +
font-family: Verdana, Arial;
 +
font-size: 12px;
 +
color: #222222;
 +
margin-top: -8px;
 +
}
 +
 
 +
/* IE ignores this */
 +
html>body #TUD-main-wrapper2 {
 +
height: auto;
 +
min-height: 100%;
 +
}
 +
 
 +
#TUD-content-wrapper {
 +
background-color: #fff;
 +
text-align: left;
 +
width: 1024px;
 +
margin: 0 auto;
 +
padding: 0;
 +
height:auto !important; /* real browsers */
 +
height:100%; /* IE6: treaded as min-height*/
 +
min-height:100%; /* real browsers */
 +
}
 +
 
 +
#TUD-header {
 +
width: 1024px;
 +
background-image: url('https://static.igem.org/mediawiki/2010/5/58/TU_Delft_header_bg.gif');
 +
height: 120px;
 +
}
 +
 
 +
#TUD-menu {
 +
width: 1024px;
 +
background-image: url('https://static.igem.org/mediawiki/2010/c/c5/TU_Delft_menu_bg.gif');
 +
height: 38px;
 +
}
 +
 
 +
 
 +
#TUD-body-wrapper {
 +
width: 100%;
 +
background-image: url('https://static.igem.org/mediawiki/2010/8/80/TU_Delft_body_bg.jpg');
 +
/* FireFox collapsing margin fix */
 +
padding-top: 1px;/*important*/
 +
margin-top: -1px;/*important*/
 +
}
 +
 
 +
#TUD-body-container {
 +
width: 100%;
 +
background-image: url('https://static.igem.org/mediawiki/2010/5/5d/TU_Delft_body_top_bg.jpg');
 +
background-repeat: no-repeat;
 +
/* FireFox collapsing margin fix */
 +
padding-top: 1px;/*important*/
 +
margin-top: -1px;/*important*/
 +
display: block;
 +
}
 +
 
 +
#TUD-body-content {
 +
background-image: url('https://static.igem.org/mediawiki/2010/5/5f/TU_Delft_body_footer_bg.jpg');
 +
width: 1024px;
 +
background-repeat: no-repeat;
 +
background-position: bottom left;
 +
padding-bottom: 15px
 +
}
 +
 
 +
#TUD-main-content {
 +
width: 904px;
 +
margin: 10px 60px 0px 60px;
 +
}
 +
 +
#iGEM_TU_Delft_container {
 +
min-height: 400px;
 +
}
 +
 
 +
#TUD-footer {
 +
width: 100%;
 +
height: 254px;
 +
text-align: center;
 +
}
 +
 
 +
h1 {
 +
margin: 0;
 +
padding: 0;
 +
}
 +
 
 +
.TUD-logo {
 +
background-image: url('https://static.igem.org/mediawiki/2010/0/09/TU_Delft_iGEM_Team_Logo.png');
 +
width: 237px;
 +
height: 95px;
 +
margin-left: 90px;
 +
background-repeat: no-repeat;
 +
border: none;
 +
}
 +
 
 +
.TUD-logo span {
 +
visibility: hidden;
 +
}
 +
 
 +
/* MENU */
 +
#navlist {
 +
margin: 0 0 0 55px;
 +
padding: 0;
 +
}
 +
 
 +
#navlist li {
 +
display: block;
 +
list-style-type: none;
 +
float:left;
 +
padding: 0;
 +
margin: 0;
 +
}
 +
 
 +
#navlist li a {
 +
text-decoration: none;
 +
color: #000;
 +
}
 +
 
 +
#navlist li a:hover {
 +
text-decoration: underline;
 +
}
 +
 
 +
#navlist li ul {
 +
position: absolute;
 +
visibility: hidden;
 +
background-color: #fff;
 +
padding:0;
 +
z-index:100;
 +
margin-left: 0px;
 +
margin-top: 4px;
 +
}
 +
 
 +
html>body #navlist li ul {
 +
margin-left: 0;
 +
}
 +
 
 +
#navlist li ul li {
 +
list-style-type:none;
 +
float:left;
 +
clear:both;
 +
z-index:100;
 +
}
 +
 
 +
#navlist li ul li a {
 +
display: block;
 +
color: #222;
 +
width: 150px;
 +
border: 1px solid #d0f1fa;
 +
padding: 3px;
 +
}
 +
 
 +
#navlist li ul li a:hover {
 +
color: #000;
 +
background-color: #54c9f5;
 +
text-decoration: underline;
 +
}
 +
 
 +
.menubutton {
 +
display:block;
 +
margin: 13px 10px 0px 10px;
 +
}
 +
/* FOOTER */
 +
#TUD-footer, #TUD-footer-content {
 +
width: 904px;
 +
margin: 0 auto;
 +
text-align: left;
 +
}
 +
/*TABLE .odd {
 +
background-color: #dbeaff;
 +
} */
 +
 
 +
</style>
 +
<!-- Main CSS - END /-->
 +
<a name="top"></a>
 +
<div id="TUD-main-wrapper2">
 +
<div id="TUD-main-wrapper">
 +
 
 +
<div id="TUD-content-wrapper">
 +
<div id="TUD-header">
 +
<h1 class="TUD-logo"><span>TU Delft iGEM Team 2010</span></h1>
 +
</div>
 +
<div id="TUD-menu">
 +
 
 +
<ul id="navlist">
 +
<li><a class="menubutton" id="home" href="Home" title="Home"><span>Home</span></a></li>
 +
<li><a class="menubutton" id="team" href="Team" title="Team"><span>Team</span></a>
 +
 
 +
<ul>
 +
<li><a href="Team/members" title="Members">Members</a></li>
 +
<li><a href="Team/university" title="University">University</a></li>
 +
<li><a href="Team/previous-teams" title="Previous Teams">Previous Teams</a></li>
 +
<li><a href="Team/gallery" title="Gallery">Gallery</a></li>
 +
<li><a href="Team/ijam" title="iJAM">iJAM</a></li>
 +
</ul>
 +
</li>
 +
<li><a class="menubutton" id="project" href="Project" title="Project">Project</a>
 +
<ul>
 +
<li><a href="Project/abstract" title="Abstract">Abstract</a></li>
 +
<li><a href="Project/introduction" title="Introduction">Introduction</a></li>
 +
<li><a href="Project/alkane-degradation" title="Alkane Degradation">Alkane Degradation</a></li>
 +
<li><a href="Project/tolerance" title="Salt & Solvent Tolerance">Salt &amp; Solvent Tolerance</a></li>
 +
<li><a href="Project/solubility" title="Emulsification">Emulsification</a></li>
 +
<li><a href="Project/sensing" title="Hydrocarbon Sensing">Hydrocarbon Sensing</a></li>
 +
<li><a href="Project/rbs-characterization" title="RBS Characterization">RBS Characterization</a></li>
 +
<li><a href="Project/conclusions" title="General Conclusions">General Conclusions</a></li>
 +
<li><a href="Project/references" title="References">References</a></li>
 +
</ul>
 +
</li>
 +
<li><a class="menubutton" id="insilico" href="Notebook" title="Notebook">Notebook</a>
 +
<ul>
 +
<li><a href="pages/blog" title="Blog">Blog</a></li>
 +
<li><a href="Notebook/timeline" title="Timeline">Timeline</a></li>
 +
<li><a href="Notebook/brainstorm" title="Brainstorm">Brainstorm</a></li>
 +
<li><a href="Notebook/cloning-plan" title="Cloning Plan">Cloning Plan</a></li>
 +
<li><a href="Notebook/protocols" title="Protocols">Protocols</a></li>
 +
</ul>
 +
</li>
 +
<li><a class="menubutton" id="parts" href="Parts" title="Parts">Parts</a>
 +
<ul>
 +
<li><a href="Parts/biobricks" title="BioBricks">BioBricks</a></li>
 +
<li><a href="Parts/characterization" title="Characterization">Characterization</a></li>
 +
</ul>
 +
</li>
 +
<li><a class="menubutton" id="insilico" href="Modeling" title="In Silico">In Silico</a>
 +
<ul>
 +
<li><a href="Modeling/MFA" title="MFA">MFA</a></li>
 +
<li><a href="Modeling/HC_regulation" title="Hydrocarbon Regulation">Hydrocarbon Regulation</a></li>
 +
<li><a href="Modeling/interaction-mapping" title="Software Tool">Interaction Mapping</a></li>
 +
<li><a href="Modeling/wiki-tips-tricks" title="Wiki tips & tricks">Wiki Tips &amp; Tricks</a></li>
 +
</ul>
 +
</li>
 +
<li><a class="menubutton" id="safety" href="Safety" title="Safety">Safety</a>
 +
<ul>
 +
 
 +
<li><a href="Safety/in-the-lab" title="Biosafety">Biosafety in the lab</a></li>
 +
<li><a href="Safety/society" title="Safety for Society">Safety for Society</a></li>
 +
</ul>
 +
</li>
 +
<li><a class="menubutton" id="education" href="Education" title="Education">Education</a>
 +
<ul>
 +
<li><a href="Education/timeline" title="Timeline">Timeline</a></li>
 +
<li><a href="Education/game" title="Game">iGEM Game</a></li>
 +
<li><a href="Education/science-museum" title="Science Museum">Science Museum</a></li>
 +
</ul>
 +
</li>
 +
<li><a class="menubutton" id="publicity" href="Publicity" title="Publicity">Publicity</a>
 +
<ul>
 +
<li><a href="Publicity/in-the-news" title="In The News">In the News</a></li>
 +
 
 +
<li><a href="Publicity/articles" title="Articles">Articles</a></li>
 +
</ul>
 +
</li>
 +
<li><a class="menubutton" id="collaboration" href="Collaboration" title="Collaboration">Collaboration</a>
 +
<ul>
 +
<li><a href="Collaboration/sponsors" title="Sponsors">Sponsors</a></li>
 +
<li><a href="Collaboration/igem-teams" title="iGEM Teams">iGEM Teams</a></li>
 +
<li><a href="Collaboration/acknowledgements" title="Acknowledgements">Acknowledgements</a></li>
 +
</ul>
 +
</li>
 +
<li><a class="menubutton" id="collaboration" href="Contact" title="Contact">Contact</a></li>
 +
</ul>
 +
</div>
 +
<div id="TUD-body-wrapper">
 +
<div id="TUD-body-container">
 +
 
 +
<div id="TUD-body-content">
 +
<div id="TUD-main-content">
 +
<div id="breadcrumbs"></div>
 +
<div id="iGEM_TU_Delft_container">
</div>
</div>
 +
</div>
</div>
 +
</div>
 +
</div>
 +
</div>
 +
</div>
 +
<div id="TUD-footer">
 +
<div id="TUD-footer-content">
 +
 +
<div id="TUD-footer-contact-info">
 +
<span class="TUD-footer-title">About the TU Delft Team</span>
 +
<div class="br"></div>
 +
Nine students spent their summer in the lab, having fun with digesting, ligating and transforming BioBricks. This wiki is all about the plans, the work and the results. If you can't find what you need, please contact us!
 +
<div class="br"></div>
 +
<a href="Team">Meet the team</a>
 +
<br />
 +
<a href="#top">Back to top</a>
</div>
</div>
-
    </div>
 
-
    <div id="bottom_row">&nbsp;</div>
+
<div id="TUD-footer-search">
 +
<span class="TUD-footer-title">Search</span>
 +
<div class="br"></div>
 +
<form action="/Special:Search" id="search-form">
 +
<input id="searchInput" name="search" type="text" title="Search 2010.igem.org [f]" accesskey="f" value="" />
 +
<input type='submit' name="go" class="searchButton" id="searchGoButton" value="Go" title="Go to a page with this exact name if exists" />&nbsp;
 +
<input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Search" title="Search the pages for this text" />
 +
</form>
 +
<br />
 +
<span class="TUD-footer-title">Contact us</span>
 +
<div class="br"></div>
 +
<i>Kluyverlaboratorium voor Biotechnologie</i><br />
 +
Julianalaan 67, 2628 BC Delft, The Netherlands<br />
 +
<div class="br"></div>
 +
<b>E:</b> <a href="mailto:info@igemtudelft.nl">info@igemtudelft.nl</a><br />
 +
 +
<div class="br"></div>
 +
<b>T:</b> +31 15 278 1625
</div>
</div>
-
<div id="footer_wrap">
+
<div id="TUD-footer-navlist">
 +
<span class="TUD-footer-title">Navigate our wiki</span>
 +
<div class="br"></div>
 +
<ul>
 +
<li><a href="Home">Home</a></li>
 +
<li><a href="Team">Team</a></li>
 +
<li><a href="Project">Project</a></li>
 +
<li><a href="Notebook/blog">Blog</a></li>
 +
<li><a href="Parts">Parts</a></li>
 +
<li><a href="Modeling">In Silico</a></li>
 +
<li><a href="Safety">Safety</a></li>
 +
<li><a href="Education">Education</a></li>
 +
<li><a href="Publicity">Publicity</a></li>
 +
<li><a href="Collaboration">Collaboration</a></li>
 +
<li><a href="Contact">Contact</a></li>
 +
</ul>
 +
</div>
-
</html>
+
<div id="TUD-footer-twitter-box">
-
{{:Team:TU_Delft/footer}}
+
<div id="twitter_div">
-
<html>
+
<ul id="twitter_update_list"><li></li></ul>
 +
</div>
 +
<script type="text/javascript" src="http://twitter.com/javascripts/blogger.js"></script>
 +
<script type="text/javascript" src="http://twitter.com/statuses/user_timeline/iGEMTUDELFT2010.json?callback=twitterCallback2&amp;count=3"></script>
 +
<div class="socialicon" style="background-image:url(https://static.igem.org/mediawiki/2010/c/c8/Facebook-32x32.png);"><a href="http://tiny.cc/igemtudelft" title="TU Delft iGEM Team Facebook"></a></div>
 +
<div class="socialicon" style="background-image:url(https://static.igem.org/mediawiki/2010/7/7e/Twitter-32x32.png);"><a href="http://twitter.com/igemtudelft2010" title="TU Delft iGEM Team Twitter"></a></div>
 +
<div class="socialicon" style="background-image:url(https://static.igem.org/mediawiki/2010/3/38/Youtube-32x32.png);"><a href="http://www.youtube.com/user/igemtudelft2010" title="TU Delft iGEM Team YouTube"></a></div>
 +
<div class="socialicon" style="background-image:url(https://static.igem.org/mediawiki/2010/2/22/Linkedin-32x32.png);"><a href="http://www.linkedin.com/groups?gid=3070941" title="TU Delft iGEM Team LinkedIn"></a></div>
</div>
</div>
 +
<style>
 +
#TUD-footer-content {
 +
padding: 25px 0 25px 0;
 +
font-size: 10px;
 +
color: #000;
 +
line-height: 12px;
 +
}
 +
 +
#TUD-footer-content div {
 +
line-height: 12px;
 +
}
 +
 +
#TUD-footer-content a {
 +
color: #4db7f1;
 +
}
 +
 +
.br {
 +
height: 5px;
 +
width: 100%;
 +
margin: 0;
 +
padding: 0;
 +
overflow: hidden;
 +
}
 +
 +
#TUD-footer-contact-info {
 +
float: left;
 +
width: 153px;
 +
}
 +
 +
#TUD-footer-search {
 +
float: left;
 +
width: 153px;
 +
margin-left: 30px;
 +
}
 +
 +
#TUD-footer-navlist {
 +
float: left;
 +
width: 153px;
 +
margin-left: 30px;
 +
}
 +
 +
#TUD-footer-twitter-box {
 +
float: left;
 +
width: 350px;
 +
margin-left: 30px;
 +
}
 +
 +
.TUD-footer-title {
 +
font-weight: bold;
 +
color: #019aed;
 +
}
 +
 +
#TUD-footer-search form {
 +
margin: 0;
 +
padding: 0;
 +
font-size: 10px;
 +
}
 +
 +
#TUD-footer-search form #searchInput {
 +
background-color: #4db7f1;
 +
border: 1px solid #000;
 +
width: 100%;
 +
}
 +
 +
#TUD-footer-search form .searchButton {
 +
margin-top: 4px;
 +
font-size: 11px;
 +
background-color: #266c96;
 +
border: 1px solid #000;
 +
color: #4db7f1;
 +
padding: 2px;
 +
}
 +
 +
#TUD-footer-navlist ul {
 +
margin: 0;
 +
padding: 0;
 +
list-style-type: none;
 +
list-style: none;
 +
}
 +
 +
#TUD-footer-navlist ul li {
 +
height: 14px;
 +
display: block;
 +
margin: 1px;
 +
background-color: #266c96;
 +
padding: 0 5px;
 +
}
 +
 +
#TUD-footer-navlist ul li a {
 +
text-decoration: none;
 +
}
 +
 +
#TUD-footer-navlist ul li a:hover {
 +
text-decoration: underline;
 +
}
 +
 +
#TUD-footer-content .socialicon {
 +
margin-top: 4px;
 +
margin-right:10px;
 +
width:32px;
 +
height:32px;
 +
display:block;
 +
float:left;
 +
}
 +
 +
#TUD-footer-content .socialicon a {
 +
width:100%;
 +
height:100%;
 +
display:block;
 +
}
 +
 +
 +
#twitter_div {
 +
background-image: url('https://static.igem.org/mediawiki/2010/e/ec/TU_Delft_twitterBG.gif');
 +
background-repeat: no-repeat;
 +
border-bottom-style: solid;
 +
border-bottom-width: 1px;
 +
border-bottom-color: #5AA5BC;
 +
font-family: Arial, Helvetica, sans-serif;
 +
font-size: 0.9em;
 +
margin-top:10px;
 +
padding-top: 33px;
 +
padding-right: 5px;
 +
padding-left: 5px;
 +
width: 340px;
 +
overflow: hidden;
 +
}
 +
 +
#twitter_div ul {
 +
list-style-type: none;
 +
margin: 5px 0 5px 0;
 +
padding: 0;
 +
width: 340px;
 +
}
 +
 +
#twitter_div ul li {
 +
color: #0C93BA;
 +
border-bottom-style: solid;
 +
border-bottom-width: 1px;
 +
border-bottom-color: #A1E8F7;
 +
margin: 0 0 3px 0;
 +
}
 +
 +
#twitter_div ul li a {
 +
text-decoration: none;
 +
color: #DDA84E;
 +
}
 +
 +
#twitter_div ul li a:hover {
 +
text-decoration: none;
 +
color: #D78E42;
 +
}
 +
 +
#twitter_div p {
 +
text-align: right;
 +
padding-right: 6px;
 +
padding-bottom: 10px;
 +
}
 +
</style>
 +
 +
</div>
 +
</div>
 +
</div>
</div>
</div>
</html>
</html>

Revision as of 13:55, 12 October 2010