Team:TU Delft

From 2010.igem.org

(Difference between revisions)
 
(177 intermediate revisions not shown)
Line 1: Line 1:
 +
__NOTOC__
<html>
<html>
-
<head>
+
<!--
-
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+
-
<title>iGEM 2010: TU Delft Home</title>
+
-
<style type="text/css">
+
-
#decoy {}
+
============================================================================================
 +
*** PLEASE NOTE: ***
-
#globalWrapper {
+
When copying our code, please be so kind to mention so on your wiki.
-
padding: 0px;
+
 
 +
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 7]>
 +
<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 /-->
 +
<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>
 +
 
 +
<!-- 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 /-->
 +
 
 +
<script>
 +
//Global Vars
 +
var currentPage;
 +
var in_frame_test = 1;
 +
var ampersandStr = String.fromCharCode(38);
 +
var loading_home = false;
 +
 
 +
function dbgout(msg) {
 +
  var is_chrome = navigator.userAgent.toLowerCase().indexOf('chrome') > -1;
 +
  if(is_chrome) console.log(msg);
}
}
-
#contentSub {
+
function updateContentEditLink() {
-
display: none;
+
if (!wgUserName) {
 +
return;
 +
}
 +
 
 +
var page = currentPage ? currentPage : 'Home';
 +
var url = location.pathname + '/' + page + '?action=edit';
 +
$("#edit_content_link").attr('href', url);
 +
// $("#edit_content_link").click(function() {
 +
// $("#iGEM_TU_Delft_container").html('<iframe src="'+url+'" width="100%" height="100%"></iframe>');
 +
// });
 +
 
}
}
-
#content {
+
// Set document ready callback
-
width: 965px;
+
$(function() {
 +
if (wgUserName) {
 +
// Create content edit link
 +
$(".left-menu ul > *:last").after('<li><a id="edit_content_link">edit content</a></li>');
 +
updateContentEditLink();
 +
}
 +
 
 +
// Initialize history plugin.
 +
$(window).hashchange(historyCallback);
 +
rewriteLinks($("#navlist"));
 +
 
 +
historyCallback();
 +
 
 +
// setup hovering
 +
$(".menu_button").hover(
 +
function () { $(this).addClass("hover"); },
 +
function () { $(this).removeClass("hover"); }
 +
);
 +
});
 +
 
 +
 
 +
function isDefined(variable)
 +
{
 +
    return typeof(window[variable]) != "undefined";
}
}
-
#bodyContent > p {
+
function splitHash(hash) {
-
display: none;
+
var kvpairs = hash.split(ampersandStr);
 +
var i;
 +
var kvmap = {};
 +
for(i=0;i<kvpairs.length;i++) {
 +
var s = kvpairs[i].split('=');
 +
kvmap[s[0]] = s[1];
 +
}
 +
return kvmap;
}
}
-
.firstHeading {
+
function makeHash(page, kvmap) {
-
display: none;
+
var str = '#page=' + page;
 +
var i;
 +
if (kvmap) {
 +
for(i in kvmap) {
 +
str += ampersandStr + i + '=' + kvmap[i];
 +
}
 +
}
 +
return str; 
}
}
-
#p-logo {
+
function setHash(page, kvmap) {
-
width: 965px;
+
location.hash = makeHash(page,kvmap);
-
margin:0 5px;
+
-
background-image: url('/wiki/skins/common/images/wiki.png') !important;
+
}
}
-
#p-logo a {
+
 
-
display: none;
+
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();
 +
}
 +
 
 +
js.onload = cb;
}
}
-
#header {
+
function loadScript(src, callback)
-
width: 965px;
+
{
-
height: 222px;
+
  include_js(src, callback);
-
/*background-color: #001d1d*/
+
-
background-color: orange;
+
-
color: #8bce9e;
+
-
font-family: Verdana, Sans-Serif;
+
-
font-size: 12px;
+
-
text-align: justify;
+
-
margin: 0 auto;
+
}
}
-
#banner {
+
 
-
width: 965px;
+
function moveToAnchor(anchor) {
-
height: 222px;
+
try {
-
background-image: url("https://static.igem.org/mediawiki/2010/9/96/Banner1.jpg");
+
var pos = $('#iGEM_TU_Delft_container > a[name='+anchor+']').offset();
 +
dbgout('anchor: '+anchor+';  pos=' + pos.left + ','+pos.top );
 +
window.scroll(pos.left, pos.top);
 +
} catch (err) {
 +
dbgout('moveToAnchor error: ' + err);
}
}
 +
}
-
                #menu {
+
 
-
width: 965px;
+
function loadPage(page, anchor)
-
height: 24px;
+
{
-
text-align: center;
+
var showLoadAnim = !!currentPage;
-
margin-top:-32px;
+
currentPage = page;
-
padding-left:5px;
+
var url = wgServer + "/Team:TU_Delft/" + page + "?action=render";
 +
if(page.substring(0, 5) == "User:") {
 +
url = wgServer + "/" + page + "?action=render";
 +
}
 +
$(window).trigger('page_close');
 +
 
 +
if(showLoadAnim) {
 +
$("#TUD-loading-panel").show();
 +
//$("#loading-overlay").show();
 +
$("#iGEM_TU_Delft_container").fadeTo(200,0.25);
 +
$('html, body').animate({scrollTop:0}, 'slow');
 +
}
 +
loading_home = false;
 +
 
 +
var processPage = function(next) {
 +
dbgout('processPage: ' + page);
 +
$(window).trigger('page_init');
 +
rewriteLinks($("#iGEM_TU_Delft_container"));
 +
updateContentEditLink();
 +
$("#iGEM_TU_Delft_container").fadeTo(200,1).delay(200).queue(function(n) {
 +
if(anchor) moveToAnchor(anchor); n();
 +
});
 +
next();
 +
}
 +
 +
$.get(url, function(data) {
 +
$("#iGEM_TU_Delft_container").html(data).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");
 +
 
 +
$("#TUD-loading-panel").hide();
 +
$("#loading-overlay").hide();
 +
});
 +
}
 +
 
 +
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, kvmap.anchor);
 +
} else {
 +
if(kvmap.anchor) moveToAnchor(kvmap.anchor);
 +
$(window).trigger('hashupdate');
 +
}
}
}
-
+
} else {
-
.menuItem {
+
setHash('Home');
-
width: auto;
+
}
-
height: 20px;
+
}
-
padding: 2px 11px;
+
 
-
border-right: 1px solid #032725;
+
function rewriteLinks(elem) {
-
float: left;
+
$("a",elem).each(function() {
-
background-color: #8bce9e;
+
var txt = $(this).text();
-
color: #032725;
+
var url = this.href;
-
text-align: center;
+
 
-
font-family: Verdana, Sans-Serif;
+
if(this.hash) {
-
font-size: 16px;
+
var anchor = this.hash.substring(1);
-
position: relative;
+
 
-
}
+
if (anchor.substring(0,5)!='page=')
-
+
this.href = '#page=' + currentPage + ampersandStr + 'anchor=' + anchor;
-
.menuItemLink {
+
} else if(txt != "edit")
-
color: #032725;
+
this.href = this.href.replace("https://2010.igem.org/Team:TU_Delft/", "#page=");
-
font-family: Verdana, Sans-Serif;
+
 
-
font-size: 16px;
+
// dbgout('rewriting ' + url + ' to ' + this.href);
-
text-decoration: none;
+
});
-
}
+
}
-
+
 
-
.menuItemLink:hover {
+
 
-
color: #8bce9e;
+
</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('display', 'block');
 +
//ddmenuitem = $(this).find('ul').show(200);
 +
}
 +
 
 +
function jsddm_close() {
 +
  if(ddmenuitem) ddmenuitem.css('display', 'none');
 +
//if(ddmenuitem) ddmenuitem.hide();
 +
}
 +
 
 +
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">
 +
function capitaliseFirstLetter(string)
 +
{
 +
    return string.charAt(0).toUpperCase() + string.slice(1);
 +
}
 +
 
 +
function buildDepth(array,count)
 +
{
 +
var depthStr="";
 +
for (i=0;i<count;i++)
 +
{
 +
depthStr=depthStr + array[i] + "/" ;
 +
}
 +
return depthStr;
 +
}
 +
function buildBreadCrumbTrail(page)
 +
{
 +
var constituentFolders = new Array();
 +
var currentURL = page;
 +
constituentFolders=currentURL.split("/");
 +
var outputStr="<a href='https://2010.igem.org/Team:TU_Delft#page=Home'>Home</a>";
 +
if(page != "Home") {
 +
for (count=0;count<(constituentFolders.length);count++)
 +
{
 +
if(constituentFolders[count].substring(0, 5) == "User:") {
 +
outputStr = outputStr + " <span class='doubleright'>&raquo;</span> <a href='https://2010.igem.org/Team:TU_Delft#page=Team/'>Team</a> <span class='doubleright'>&raquo;</span> <a href='https://2010.igem.org/Team:TU_Delft#page=Team/members'>Members</a> <span class='doubleright'>&raquo;</span> <a href='https://2010.igem.org/Team:TU_Delft#page=" + buildDepth(constituentFolders,count) + constituentFolders[count] + "'>" + capitaliseFirstLetter(constituentFolders[count]).replace(/-/gi," ").substring(5) + "</a>";
}
}
-
+
if(constituentFolders[count].substring(0, 5) !== "User:") {
-
.menuItemLink:visited {
+
outputStr=outputStr + " <span class='doubleright'>&raquo;</span> <a href='https://2010.igem.org/Team:TU_Delft#page=" + buildDepth(constituentFolders,count) + constituentFolders[count] + "'>" + capitaliseFirstLetter(constituentFolders[count]).replace(/-/gi," ") + "</a>";
-
color: #032725;
+
}
}
-
+
}
-
.submenu {
+
}
-
width: 200px;
+
$("#breadcrumbs").html(outputStr);
-
height: auto;
+
}
-
position: absolute;
+
</script>
-
top: 31px;
+
<!-- Scripting END /-->
-
left: 0px;
+
-
margin: -7px 0px 0px -1px;
+
-
background-color: #8bce9e;
+
-
border: 1px solid #032725;
+
-
display: none;
+
-
text-align: left;
+
-
}
+
-
+
-
.submenuItem {
+
-
width: 196px;
+
-
height: 20px;
+
-
background-color: #032725;
+
-
border: 1px Solid #032725;
+
-
font-weight: normal;
+
-
margin: 1px 2px 1px 1px;
+
-
}
+
-
+
-
.submenuItem:hover {
+
-
background-color: #8bce9e;
+
-
color: #032725;
+
-
}
+
-
+
-
.submenuItemLink {
+
-
text-align:left;
+
-
font-weight: normal;
+
-
text-decoration: none;
+
-
color: #8bce9e;
+
-
margin: 1px 2px 1px 2px;
+
-
}
+
-
+
-
.submenuItemLink:visited {
+
-
color: #8bce9e;
+
-
}
+
-
+
-
.submenuItemLink:hover {
+
-
color: #032725;
+
-
}
+
-
#mainContent {
+
<!-- Main CSS - START /-->
-
width: 965px;
+
<style type="text/css">
-
height: 880px;
+
/* Wiki Hacks - START */
-
background-image: url("https://static.igem.org/mediawiki/2010/e/e9/Body.png");
+
/* Author: Pieter van Boheemen */
-
color: #8bce9e;
+
/* Team: TU Delft */
-
font-family: Verdana, Sans-Serif;
+
#globalWrapper { background-color: transparent; border: none; margin: 0; padding: 0; width: 100%;
-
font-size: 12px;
+
height:auto !important; /* real browsers */
-
text-align: justify;
+
height:100%; /* IE6: treaded as min-height*/
-
margin: 0 auto;
+
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;
-
.SmallPic {
+
height:auto !important; /* real browsers */
-
height: 120px;
+
height:100%; /* IE6: treaded as min-height*/
-
width: 180px;
+
min-height:100%; /* real browsers */
-
margin: 5px 6px 2px 5px;
+
}
-
float: left;
+
#bodyContent { border: none; padding:0; margin:0; width:100%;
-
border: 1px solid #001d1d;
+
height:auto !important; /* real browsers */
-
link: url("https://2010.igem.org/Team:TU_Delft/Gallery");
+
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;}
 +
h1{border:none; width: 100%; clear: both;}
 +
/* Wiki Hacks - END */
-
#small_1 {background-image: url("https://static.igem.org/mediawiki/2010/4/48/Small_1.png");}
+
table {
-
#small_2 {background-image: url("https://static.igem.org/mediawiki/2010/b/bd/Small_2.png");}
+
margin: 0;
-
#small_3 {background-image: url("https://static.igem.org/mediawiki/2010/a/ae/Small_3.png");}
+
padding: 0;
-
#small_4 {background-image: url("https://static.igem.org/mediawiki/2010/7/7b/Small_4.png");}
+
font-size: 11px;
-
#small_5 {background-image: url("https://static.igem.org/mediawiki/2010/5/59/Small_5.png");}
+
border: 1px solid #000;
-
#small_6 {background-image: url("https://static.igem.org/mediawiki/2010/c/c9/Small_6.png");}
+
}
-
#small_7 {background-image: url("https://static.igem.org/mediawiki/2010/8/86/Small_7.png");}
+
table td {
-
+
padding: 5px;
-
#HomeCenter {
+
}
-
width: 747px;
+
table .head {
-
height: auto;
+
background-color: #216085 ;
-
background-color: #001d1d;
+
font-weight: bold;
-
margin: 10px 5px 0px 1px;
+
color: #fff;
-
float: left;
+
}
-
color: white;
+
table .odd {
-
font-family: Verdana, Sans-Serif;
+
background-color: #d0f1fa;
-
font-size: 12px;
+
}
-
text-align: justify;
+
 
-
}
+
h2 {
-
+
font-size: 30px;
-
#HomeCenterBox1 {
+
border: none;
-
Width: 731px;
+
-
height: 170px;
+
-
margin: 0px 0px 2px 4px;
+
-
padding: 5px;
+
-
background-color: #0d3a3f;
+
-
border: 1px solid #001d1d;
+
}
}
-
+
 
-
#HomeCenterBox2 {
+
h3 {
-
Width: 731px;
+
font-size: 20px;
-
height: 170px;
+
border: none;
-
margin: 0px 0px 2px 4px;
+
-
padding: 5px;
+
-
background-color: #001d1d;
+
-
border: 1px solid #0d3a3f;
+
}
}
-
+
 
-
#CenterbodyText1 {
+
html, body {
-
width: 465px;
+
margin: 0;
-
height: auto;
+
padding: 0;
-
padding-right: 4px;
+
width: 100%;
-
margin: 0px 5px 0px 4px;
+
height: 100%;
-
font-family: Verdana, Sans-Serif;
+
}
 +
 
 +
body {
 +
background-color: #d0f1fa;
 +
font-family: Verdana, Arial;
font-size: 12px;
font-size: 12px;
-
text-align: justify;
+
color: #222222;
-
float: left;
+
min-width: 1050px;
-
color: white;
+
-
text-decoration: none;
+
}
}
-
+
-
#CenterbodyText2 {
+
#TUD-main-wrapper {
-
width: 470px;
+
width: 100%;
-
height: auto;
+
height:auto !important; /* real browsers */
-
margin: 0px 0px 0px 4px;
+
height:100%; /* IE6: treaded as min-height*/
-
font-family: Verdana, Sans-Serif;
+
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;
font-size: 12px;
-
text-align: justify;
+
color: #222222;
-
float: left;
+
-
color: white;
+
-
text-decoration: none;
+
}
}
-
+
 
-
#GroupphotoSmall {
+
#TUD-main-wrapper div {
-
width: 245px;
+
line-height: 18px;
-
height: 166px;
+
}
-
float: left;
+
 
-
padding-left: 5px;
+
/* IE ignores this */
-
margin-top: 1px;
+
html>body #TUD-main-wrapper {
-
background-image: url("https://static.igem.org/mediawiki/2010/b/b4/Groupphoto_small.jpg");
+
height: auto;
-
border: 1px solid #001d1d;
+
min-height: 100%;
-
color: #8bce9e;
+
}
}
-
+
 
-
#ProjectPic {
+
#TUD-main-wrapper2 {
-
width: 240px;
+
width: 100%;
-
height: 150px;
+
height:auto !important; /* real browsers */
-
color: white;
+
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;
font-size: 12px;
-
font-weight: bold;
+
color: #222222;
-
float: left;
+
margin-top: -8px;
-
padding: 5px;
+
-
border: 1px solid #0d3a3f;
+
-
background-image: url("https://static.igem.org/mediawiki/2010/2/2c/ProjectPic.jpg");
+
-
margin: 4px 0px 4px 4px;
+
}
}
-
+
 
-
#newslogo {
+
/* IE ignores this */
-
width: 245px;
+
html>body #TUD-main-wrapper2 {
-
height: 160px;
+
height: auto;
-
float: left;
+
min-height: 100%;
-
padding-right: 0px;
+
}
-
margin-top: 1px;
+
 
-
background-image: url("https://static.igem.org/mediawiki/2010/0/07/News.png");
+
#TUD-content-wrapper {
-
border: 1px solid #001d1d;
+
background-color: #fff;
-
color: #8bce9e;
+
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;
}
}
-
#iJAM {
+
#iGEM_TU_Delft_container {
-
width: 230px;
+
min-height: 400px;
-
height: 150px;
+
-
color: white;
+
-
font-size: 12px;
+
-
font-weight: bold;
+
-
float: left;
+
-
padding: 5px;
+
-
margin: 4px 0px 4px 4px;
+
-
border: 1px solid #0d3a3f;
+
-
background-image: url("https://static.igem.org/mediawiki/2010/7/73/IJAM.png");
+
}
}
-
+
 
-
#HomeRight {
+
#TUD-footer {
-
width: 195px;
+
width: 100%;
-
height: 723px;
+
height: 254px;
-
background-color: #2c5983;
+
-
margin: 10px 5px 0px 0px;
+
-
padding: 5px;
+
-
float: left;
+
-
color: #e0fea0;
+
-
font-family: Verdana, Sans-Serif;
+
-
font-size: 12px;
+
-
text-align: justify;
+
-
}
+
-
+
-
#Countdown {
+
-
width: 189px;
+
-
height: auto;
+
-
background-color: #001d1d;
+
-
border: 1px solid #8bce9e;
+
-
color: white;
+
text-align: center;
text-align: center;
-
padding: 2px;
 
}
}
-
+
 
-
#Upcoming {
+
h1 {
-
width: 195px;
+
margin: 0;
-
height: auto;
+
padding: 0;
-
color: white;
+
display: block;
 +
float: left;
}
}
-
+
 
-
#Sponsors {
+
.TUD-logo {
-
width: 200px;
+
background-image: url('https://static.igem.org/mediawiki/2010/0/09/TU_Delft_iGEM_Team_Logo.png');
-
height: auto;
+
width: 237px;
-
color: white;
+
height: 95px;
 +
margin-left: 90px;
 +
background-repeat: no-repeat;
 +
border: none;
}
}
-
 
-
#Sponsor1 {
 
-
width: 180px;
 
-
height: 131px;
 
-
background-image: url("https://static.igem.org/mediawiki/2010/c/c1/SuitSupply.png");
 
-
margin: 0 auto;
 
-
}
 
-
 
-
#Sponsor2 {
 
-
width: 200px;
 
-
height: 65px;
 
-
background-image: url("https://static.igem.org/mediawiki/2010/b/b5/DSM.png");
 
-
background-color: white;
 
-
margin: 0 auto;
 
-
}
 
-
 
-
#Sponsor3 {
 
-
width: 120px;
 
-
height: 80px;
 
-
margin: 0 auto;
 
-
background-image: url("images/NGI_logo.png");
 
-
background-repeat: no-repeat;
 
-
}
 
-
#content {
+
.TUD-logo span {
-
padding:0px;
+
visibility: hidden;
-
}
+
}
-
a {
 
-
text-decoration: none;
 
-
}
 
-
a:hover {
 
-
text-decoration:none;}
 
-
h3 {
+
#TUD-loading-panel {
-
margin-top:3px;
+
z-index: 100;
-
color:white;
+
position: absolute;
-
}
+
left: 0px;
-
h4 {
+
top: 0px;
-
margin-bottom: 3px;
+
width: 100%;
-
color:white;
+
height: 100%;
-
}
+
display:none;
 +
}
 +
 
 +
#TUD-loading-panel-logo {
 +
margin: 0 auto;
 +
margin-top: 250px;
 +
}
 +
 
 +
#loading-overlay {
 +
z-index: 70;
 +
width: 100%;
 +
height: 100%;
 +
display:none;
 +
opacity:0.4;
 +
filter:alpha(opacity=40);
 +
}
 +
 
 +
#back_to_igem {
 +
margin: 15px 0 0 0;
 +
padding:0;
 +
float: right;
 +
}
 +
 
 +
/* 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;
 +
display:none;
 +
background-color: #fff;
 +
padding:0;
 +
border: 1px solid #aaa;
 +
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;
 +
}
 +
 
 +
#insilico_menu li a {
 +
width: 230px !important;
 +
}
 +
 
 +
.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>
</style>
-
<script type="text/javascript">
+
<!-- Main CSS - END /-->
-
function showMenu(callerObject) {
+
<a name="top"></a>
-
// document.getElementById('sub1').style.display = 'block';
+
-
callerObject.childNodes[3].style.display = 'block';
+
-
}
+
-
function hideMenu(callerObject) {
+
<div id="TUD-loading-panel">
-
// document.getElementById('sub1').style.display = 'none';
+
<div id="TUD-loading-panel-logo">
-
callerObject.childNodes[3].style.display = 'none';
+
<!-- yes im using center -->
-
}
+
<center><img width="100" height="120" src="https://static.igem.org/mediawiki/2010/d/d8/TUDelft_2010_AlkanivoreAnimated.gif" /> <h2>Loading...</h2></center>
-
</script>
+
</div>
-
</head>
+
</div>
-
<body>
+
-
<div id="header">
+
<div id="TUD-main-wrapper2">
-
<div id="banner">
+
<div id="TUD-main-wrapper">
-
</div>
+
 
-
<div id="menu">
+
<div id="TUD-content-wrapper">
-
<div class="menuItem" onmouseover="showMenu(this)" onmouseout="hideMenu(this)">
+
<div id="TUD-header">
-
<a class="menuItemLink" href="https://2010.igem.org/Team:TU_Delft">Home</a>
+
<style>
-
<div class="submenu">
+
a.nohover:hover {
-
<div class="submenuItem">
+
text-decoration: none;
-
<a class="submenuItemLink" href="https://2010.igem.org/Team:TU_Delft/Home/News">What's new?</a>
+
}
-
</div>
+
</style>
-
<div class="submenuItem">
+
<a class="nohover" href="https://2010.igem.org/Team:TU_Delft"><h1 class="TUD-logo"><span>TU Delft iGEM Team 2010</span></h1></a>
-
<a class="submenuItemLink" href="https://2010.igem.org/Team:TU_Delft/Home/What">What we're up to</a>
+
<span id="back_to_igem"><a href="https://2010.igem.org/" alt="back to 2010.igem.org" title="back to 2010.igem.org"><img src="https://static.igem.org/mediawiki/2010/3/32/TU_Delft_back_to_igem.png" border="0" /></a></span>
-
</div>
+
</div>
</div>
-
</div>
+
<div id="TUD-menu">
-
+
 
-
<div class="menuItem" onmouseover="showMenu(this)" onmouseout="hideMenu(this)">
+
<ul id="navlist">
-
<a class="menuItemLink" href="https://2010.igem.org/Team:TU_Delft/Team">Team</a>
+
<li><a class="menubutton" id="home" href="https://2010.igem.org/Team:TU_Delft/Home" title="Home"><span>Home</span></a></li>
-
<div class="submenu">
+
<li><a class="menubutton" id="team" href="https://2010.igem.org/Team:TU_Delft/Team" title="Team"><span>Team</span></a>
-
<div class="submenuItem">
+
 
-
<a class="submenuItemLink" href="https://2010.igem.org/Team:TU_Delft/Team">Who we are</a>
+
<ul>
-
</div>
+
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Team" title="Overview">Overview</a></li>
-
<div class="submenuItem">
+
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Team/members" title="Members">Members</a></li>
-
<a class="submenuItemLink" href="https://2010.igem.org/Team:TU_Delft/Team/Students">Students</a>
+
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Team/organization" title="Organization">Organization</a></li>
-
</div>
+
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Team/university" title="University">University</a></li>
-
<div class="submenuItem">
+
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Team/previous-teams" title="Previous Teams">Previous Teams</a></li>
-
<a class="submenuItemLink" href="https://2010.igem.org/Team:TU_Delft/Team/TUDelft">Where we're from</a>
+
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Team/gallery" title="Picture Gallery">Picture Gallery</a></li>
-
</div>
+
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Team/movies" title="Movies">Movies</a></li>
-
<div class="submenuItem">
+
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Team/ijam" title="iJAM">iJAM</a></li>
-
<a class="submenuItemLink" href="https://2010.igem.org/Team:TU_Delft/Team/Advisors">Advisors/Supporters</a>
+
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Team/statistics" title="Statistics">Statistics</a></li>
-
</div>
+
</ul>
-
<div class="submenuItem">
+
</li>
-
<a class="submenuItemLink" href="https://igem.org/Team.cgi?year=2010">Official team profile</a>
+
<li><a class="menubutton" id="project" href="https://2010.igem.org/Team:TU_Delft#page=Project" title="Project">Project</a>
-
</div>
+
<ul>
-
</div>
+
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Project" title="Overview">Overview</a></li>
-
</div>
+
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Project/introduction" title="Introduction">Introduction</a></li>
-
+
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Project/alkane-degradation" title="Alkane Degradation">Alkane Degradation</a></li>
-
<div class="menuItem" onmouseover="showMenu(this)" onmouseout="hideMenu(this)">
+
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Project/sensing" title="Hydrocarbon Sensing">Sensing</a></li>
-
<a class="menuItemLink" href="https://2010.igem.org/Team:TU_Delft/Project">Project</a>
+
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Project/tolerance" title="Survival">Survival</a></li>
-
<div class="submenu">
+
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Project/solubility" title="Emulsification">Solubility</a></li>
-
<div class="submenuItem">
+
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Project/rbs-characterization" title="RBS Characterization">RBS Characterization</a></li>
-
<a class="submenuItemLink" href="https://2010.igem.org/Team:TU_Delft/Project">In short</a>
+
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Project/conclusions" title="General Conclusions">General Conclusions</a></li>
-
</div>
+
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Project/references" title="References">References</a></li>
-
<div class="submenuItem">
+
</ul>
-
<a class="submenuItemLink" href="https://2010.igem.org/Team:TU_Delft/Project/Part1">Part 1</a>
+
</li>
-
</div>
+
<li><a class="menubutton" id="insilico" href="https://2010.igem.org/Team:TU_Delft#page=Notebook" title="Notebook">Notebook</a>
-
<div class="submenuItem">
+
<ul>
-
<a class="submenuItemLink" href="https://2010.igem.org/Team:TU_Delft/Project/Part2">Part 2</a>
+
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Notebook" title="Overview">Overview</a></li>
-
</div>
+
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Notebook/blog" title="Blog">Blog</a></li>
-
<div class="submenuItem">
+
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Notebook/timeline" title="Timeline">Timeline</a></li>
-
<a class="submenuItemLink" href="https://2010.igem.org/Team:TU_Delft/Project/Part3">Part 3</a>
+
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Notebook/brainstorm" title="Brainstorm">Brainstorm</a></li>
-
</div>
+
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Notebook/cloning-plan" title="Cloning Plan">Cloning Plan</a></li>
-
<div class="submenuItem">
+
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Notebook/protocols" title="Protocols">Protocols</a></li>
-
<a class="submenuItemLink" href="https://2010.igem.org/Team:TU_Delft/Project/Part4">Part 4</a>
+
</ul>
-
</div>
+
</li>
-
</div>
+
<li><a class="menubutton" id="parts" href="https://2010.igem.org/Team:TU_Delft#page=Parts" title="Parts">Parts</a>
-
</div>
+
<ul>
-
+
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Parts" title="Overview">Overview</a></li>
-
<div class="menuItem" onmouseover="showMenu(this)" onmouseout="hideMenu(this)">
+
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Parts/biobricks" title="BioBricks">BioBricks</a></li>
-
<a class="menuItemLink" href="https://2010.igem.org/Team:TU_Delft/Parts">Biobricks</a>
+
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Parts/characterization" title="Characterization">Characterization</a></li>
-
</div>
+
</ul>
-
+
</li>
-
<div class="menuItem" onmouseover="showMenu(this)" onmouseout="hideMenu(this)">
+
<li><a class="menubutton" id="insilico" href="https://2010.igem.org/Team:TU_Delft#page=Modeling" title="In Silico">In Silico</a>
-
<a class="menuItemLink" href="https://2010.igem.org/Team:TU_Delft/Modeling">Modeling</a>
+
<ul id="insilico_menu">
-
</div>
+
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Modeling" title="Overview">Overview</a></li>
-
+
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Modeling/MFA" title="MFA">Metabolic Flux Analysis</a></li>
-
<div class="menuItem" onmouseover="showMenu(this)" onmouseout="hideMenu(this)">
+
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Modeling/HC_regulation" title="Hydrocarbon Regulation">Hydrocarbon Regulation</a></li>
-
<a class="menuItemLink" href="https://2010.igem.org/Team:TU_Delft/Safety">Safety</a>
+
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Modeling/protein-production-model" title="Protein production model">Protein production model</a></li>
-
<div class="submenu">
+
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Modeling/pcaif-model" title="pCaiF CRP sensing model">pCaiF CRP sensing model</a></li>
-
<div class="submenuItem">
+
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Modeling/interaction-mapping" title="Software Tool">Interaction Mapping</a></li>
-
<a class="submenuItemLink" href="https://2010.igem.org/Team:TU_Delft/Safety/Lab">Safety in the Lab</a>
+
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Software/part-search" title="Part search server & iPhone app">Part search server & iPhone app</a></li>
-
</div>
+
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Modeling/wiki-tips-tricks" title="Wiki tips & tricks">Wiki Tips &amp; Tricks</a></li>
-
<div class="submenuItem">
+
</ul>
-
<a class="submenuItemLink" href="https://2010.igem.org/Team:TU_Delft/Safety/Society">Safety for Society</a>
+
</li>
-
</div>
+
<li><a class="menubutton" id="safety" href="https://2010.igem.org/Team:TU_Delft#page=Safety" title="Safety">Safety</a>
-
</div>
+
<ul>
-
</div>
+
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Safety" title="Overview">Overview</a></li>
-
+
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Safety/in-the-lab" title="Biosafety">Biosafety in the lab</a></li>
-
<div class="menuItem" onmouseover="showMenu(this)" onmouseout="hideMenu(this)">
+
</ul>
-
<a class="menuItemLink" href="https://2010.igem.org/Team:TU_Delft/Notebook">Notebook</a>
+
</li>
-
<div class="submenu">
+
<li><a class="menubutton" id="humanpractice" href="https://2010.igem.org/Team:TU_Delft#page=Human-practice" title="Human Practice">Human Practice</a>
-
<div class="submenuItem">
+
<ul>
-
<a class="submenuItemLink" href="https://2010.igem.org/Team:TU_Delft/Notebook/Calender">Calendar</a>
+
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Human-practice" title="Overview">Overview</a></li>
-
</div>
+
<li><a href="https://2010.igem.org/Team:TU_Delft#page=EPAC" title="EPAC">EPAC</a></li>
-
<div class="submenuItem">
+
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Education" title="Education">Education</a></li>
-
<a class="submenuItemLink" href="https://2010.igem.org/Team:TU_Delft/Notebook/LabJournal">Lab Journal</a>
+
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Perception" title="Perception">Perception</a></li>
-
</div>
+
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Awareness" title="Awareness">Awareness</a></li>
 +
</ul>
 +
</li>
 +
<li><a class="menubutton" id="education" href="https://2010.igem.org/Team:TU_Delft#page=Education" title="Education">Education</a>
 +
<ul>
 +
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Education" title="Overview">Overview</a></li>
 +
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Education/science-museum" title="Science Museum">Science Museum</a></li>
 +
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Education/game" title="Game">iGEM Game</a></li>
 +
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Education/Workshop_on_synthetic_biology" title="SynBio Workshop">SynBio Workshop</a></li>
 +
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Education/nemo" title="Night of the Nerds">Night of the Nerds</a></li>
 +
</ul>
 +
</li>
 +
<li><a class="menubutton" id="publicity" href="https://2010.igem.org/Team:TU_Delft#page=Publicity" title="Publicity">Publicity</a>
 +
<ul>
 +
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Publicity" title="Overview">Overview</a></li>
 +
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Publicity/communication_plan" title="Communication Plan">Communication Plan</a></li>
 +
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Publicity/in-the-news" title="In The News">In the Media</a></li>
 +
<!-- <li><a href="https://2010.igem.org/Team:TU_Delft#page=Publicity/articles" title="Articles">Articles</a></li> /-->
 +
</ul>
 +
</li>
 +
<li><a class="menubutton" id="collaboration" href="https://2010.igem.org/Team:TU_Delft#page=Collaboration" title="Collaboration">Collaboration</a>
 +
<ul>
 +
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Collaboration" title="Overview">Overview</a></li>
 +
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Collaboration/sponsors" title="Sponsors">Sponsors</a></li>
 +
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Collaboration/Rathenau Institute" title="Rathenau Institute">Rathenau Institute</a></li>
 +
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Collaboration/Science Centre Delft" title="Science Centre Delft">Science Centre Delft</a></li>
 +
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Collaboration/igem-teams" title="iGEM Teams">iGEM Teams</a></li>
 +
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Collaboration/acknowledgements" title="Acknowledgements">Acknowledgements</a></li>
 +
</ul>
 +
</li>
 +
<li><a class="menubutton" id="collaboration" href="https://2010.igem.org/Team:TU_Delft#page=Contact" title="Contact">Contact</a></li>
 +
</ul>
</div>
</div>
-
</div>
+
<div id="TUD-body-wrapper">
 +
<div id="TUD-body-container">
-
<div class="menuItem" onmouseover="showMenu(this)" onmouseout="hideMenu(this)">
+
<div id="TUD-body-content">
-
<a class="menuItemLink" href="https://2010.igem.org/Team:TU_Delft/Brainstorming">Brainstorming</a>
+
<div id="TUD-main-content">
-
<div class="submenu">
+
<div id="loading-overlay"></div>
-
<div class="submenuItem">
+
<div id="breadcrumbs"></div>
-
<a class="submenuItemLink" href="https://2010.igem.org/Team:TU_Delft/Brainstorming">Our ideas</a>
+
<div id="iGEM_TU_Delft_container">
-
</div>
+
</div>
-
<div class="submenuItem">
+
</div>
-
<a class="submenuItemLink" href="https://2010.igem.org/Team:TU_Delft/Brainstorming/HRS">Hugo's Risk Scale</a>
+
</div>
</div>
</div>
</div>
</div>
</div>
</div>
 +
<div id="TUD-footer">
 +
<div id="TUD-footer-content">
-
<div class="menuItem" onmouseover="showMenu(this)" onmouseout="hideMenu(this)">
+
<div id="TUD-footer-contact-info">
-
<a class="menuItemLink" href="https://2010.igem.org/Team:TU_Delft/Fun">iJAM</a>
+
<span class="TUD-footer-title">About the TU Delft Team</span>
-
</div>
+
<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="menuItem" onmouseover="showMenu(this)" onmouseout="hideMenu(this)">
+
<div class="br"></div>
-
<a class="menuItemLink" href="https://2010.igem.org/Team:TU_Delft/Gallery">Gallery</a>
+
<a href="https://2010.igem.org/Team:TU_Delft#page=Team">Meet the team</a>
-
</div>
+
<br />
-
+
<a href="#top">Back to top</a>
-
<div class="menuItem" onmouseover="showMenu(this)" onmouseout="hideMenu(this)">
+
-
<a class="menuItemLink" href="https://2010.igem.org/Team:TU_Delft/Contact">Follow us!</a>
+
-
<div class="submenu">
+
-
<div class="submenuItem">
+
-
<a class="submenuItemLink" href="https://2010.igem.org/Team:TU_Delft/Contact">Contact</a>
+
-
</div>
+
-
<div class="submenuItem">
+
-
<a class="submenuItemLink" href="http://twitter.com/igemtudelft2010" target="_blank">Twitter</a>
+
-
</div>
+
-
<div class="submenuItem">
+
-
<a class="submenuItemLink" href="http://www.facebook.com/pages/TU-Delft-iGEM-team/112242102125963" target="_blank">Facebook</a>
+
-
</div>
+
-
</div>
+
-
</div>
+
-
</div>
+
-
<!-- End of header -->
+
</div>
</div>
-
<div id="mainContent">
+
<div id="TUD-footer-search">
-
<a href="https://2010.igem.org/Team:TU_Delft/Gallery">
+
<span class="TUD-footer-title">Search</span>
-
<div class="SmallPic" id="small_1"></div>
+
 
-
<div class="SmallPic" id="small_2"></div>
+
<div class="br"></div>
-
<div class="SmallPic" id="small_3"></div>
+
<form action="/Special:Search" id="search-form">
-
<div class="SmallPic" id="small_4"></div>
+
<input id="searchInput" name="search" type="text" title="Search 2010.igem.org [f]" accesskey="f" value="" />
-
<div class="SmallPic" id="small_5"></div>
+
<input type='submit' name="go" class="searchButton" id="searchGoButton" value="Go" title="Go to a page with this exact name if exists" />&nbsp;
-
</a>
+
<input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Search" title="Search the pages for this text" />
-
+
</form>
-
<div id="HomeCenter">
+
<br />
-
<a id="HomeCenterbodyText1" href="https://2010.igem.org/Team:TU_Delft/Team">
+
<span class="TUD-footer-title">Contact us</span>
-
<div id="HomeCenterBox1">
+
<div class="br"></div>
-
<div id="CenterbodyText1">
+
<i>Kluyverlaboratorium voor Biotechnologie</i><br />
-
<br><h3>The Team</h3>
+
Julianalaan 67, 2628 BC Delft, The Netherlands<br />
-
Yes! We've got our team together!
+
<div class="br"></div>
-
9 undergraduate students of the Delft Technical University have cleared their schedules
+
<b>E:</b> <a href="mailto:info@igemtudelft.nl">info@igemtudelft.nl</a><br />
-
until September in order to work on iGEM. Most of us have backgrounds in Life Sciences
+
 
-
and Biotechnology, but we also have a Bioinformatic on our side. Want to get to know us?
+
<div class="br"></div>
-
Have a look at our team page.  
+
<b>T:</b> +31 15 278 1625
-
</div>
+
</div>
-
<div id="GroupphotoSmall">
+
 
-
</div>
+
<div id="TUD-footer-navlist">
 +
<span class="TUD-footer-title">Navigate our wiki</span>
 +
<div class="br"></div>
 +
<ul>
 +
<li><a href="/Team:TU_Delft#page=Home">Home</a></li>
 +
<li><a href="/Team:TU_Delft#page=Team">Team</a></li>
 +
<li><a href="/Team:TU_Delft#page=Project">Project</a></li>
 +
<li><a href="/Team:TU_Delft#page=Notebook/blog">Blog</a></li>
 +
<li><a href="/Team:TU_Delft#page=Parts">Parts</a></li>
 +
<li><a href="/Team:TU_Delft#page=Modeling">In Silico</a></li>
 +
<li><a href="/Team:TU_Delft#page=Safety">Safety</a></li>
 +
<li><a href="/Team:TU_Delft#page=Education">Education</a></li>
 +
<li><a href="/Team:TU_Delft#page=Publicity">Publicity</a></li>
 +
<li><a href="/Team:TU_Delft#page=Collaboration">Collaboration</a></li>
 +
<li><a href="/Team:TU_Delft#page=Contact">Contact</a></li>
 +
</ul>
 +
</div>
 +
 
 +
<div id="TUD-footer-twitter-box">
 +
<div id="twitter_div">
 +
<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>
 +
 
 +
<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>
-
</a>
 
-
<a id="HomeCenterbodyText2" href="https://2010.igem.org/Team:TU_Delft/Project">
 
-
<div id="HomeCenterBox2">
 
-
<div id="ProjectPic">
 
-
</div>
 
-
<div id="CenterbodyText2">
 
-
<br><h3>The Project</h3>
 
-
This year the TU Delft team will take a more worldly approach by making an attempt on improving the environment by creating biobricks that will facilitate hydrocarbon degradation in aqueous environments. More information on our project will follow soon!
 
-
</div>
 
-
</div>
 
-
</a>
 
-
<a id="HomeCenterbodyText1" href="https://2010.igem.org/Team:TU_Delft/Home/News">
 
-
<div id="HomeCenterBox1">
 
-
<div id="CenterbodyText1">
 
-
<br><h3>In the news</h3>
 
-
insert text
 
-
</div>
 
-
<div id="newslogo">
 
-
</div>
 
-
</div>
 
-
</a>
 
-
<a id="HomeCenterbodyText1" href="https://2010.igem.org/Team:TU_Delft/Fun">
 
-
<div id="HomeCenterBox2">
 
-
<div id="iJAM">
 
-
</div>
 
-
<div id="CenterbodyText2">
 
-
<br><h3>Fun Stuff</h3>
 
-
<h4>iJAM</h4>
 
-
Next to Synthetic Biology our team also has another common interest: Music! We actually had our first jamming session last week
 
-
</div>
 
-
</div>
 
-
</a>
 
-
</div>
 
-
<div id="HomeRight">
 
-
    <div id="Countdown">
 
-
    <embed width="200" height="60" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" src="http://www.oneplusyou.com/bb/files/countdown/countdown.swf?co=8bce9e&amp;bgcolor=FFFFFF&amp;date_month=11&amp;date_day=05&amp;date_year=10&amp;un=IGEM JAMBOREE 2010&amp;size=normal&amp;mo=11&amp;da=05&amp;yr=2010">
 
-
    </div>
 
-
    <div id="Upcoming">
 
-
    <br><h3>Upcoming Events</h3>
 
-
    <h4>May 19th</h4>
 
-
    Our next meeting: We will be presenting action plans for each subpart of our project<br>
 
-
    <h4>May 20th</h4>
 
-
    Important day! We will present our action plans for a number of professors and other department members, hoping they'll have some good input concerning our project.
 
-
    <br><br>
 
-
</div>
 
-
<br>
 
-
<div id="Sponsors">
 
-
<h3>Our Sponsors</h3>
 
-
<a href="http://www.suitsupply.nl/">
 
-
<div id="Sponsor1">
 
-
</div>
 
-
</a>
 
-
<br>
 
-
<a href="http://www.dsm.nl/">
 
-
<div id="Sponsor2">
 
-
</div>
 
-
</a>
 
-
<br>
 
-
<a href="http://www.genomics.nl//">
 
-
<div id="Sponsor3">
 
-
</div>
 
-
</a>
 
</div>
</div>
</div>
</div>
-
<!-- End of main content -->
+
</div>
-
</div>
+
<script type="text/javascript">
-
</body>
+
 
 +
  var _gaq = _gaq || [];
 +
  _gaq.push(['_setAccount', 'UA-16783722-1']);
 +
  _gaq.push(['_trackPageview']);
 +
 
 +
  (function() {
 +
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
 +
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
 +
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
 +
  })();
 +
 
 +
</script>
</html>
</html>

Latest revision as of 01:53, 26 May 2011