Template:TU-header3

From 2011.igem.org

(Difference between revisions)
 
(298 intermediate revisions not shown)
Line 1: Line 1:
 +
__NOTOC__
 +
 +
<!--We would like to thank Brown Stanford 2011 for the inspiration on the usage of the menu. Their way of implementation was used for the construction of our own menu. We would like to thank http://tympanus.net/codrops/2010/07/16/slide-down-box-menu/ for the necessary code. -->
 +
 +
 +
<html>
 +
<head>
 +
 +
 +
<script type="text/javascript">
 +
/*
 +
* jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
 +
*
 +
* Uses the built in easing capabilities added In jQuery 1.1
 +
* to offer multiple easing options
 +
*
 +
* TERMS OF USE - jQuery Easing
 +
*
 +
* Open source under the BSD License.
 +
*
 +
* Copyright c 2008 George McGinley Smith
 +
* All rights reserved.
 +
*
 +
* Redistribution and use in source and binary forms, with or without modification,
 +
* are permitted provided that the following conditions are met:
 +
*
 +
* Redistributions of source code must retain the above copyright notice, this list of
 +
* conditions and the following disclaimer.
 +
* Redistributions in binary form must reproduce the above copyright notice, this list
 +
* of conditions and the following disclaimer in the documentation and/or other materials
 +
* provided with the distribution.
 +
*
 +
* Neither the name of the author nor the names of contributors may be used to endorse
 +
* or promote products derived from this software without specific prior written permission.
 +
*
 +
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
 +
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 +
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 +
*  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 +
*  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
 +
*  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
 +
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 +
*  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
 +
* OF THE POSSIBILITY OF SUCH DAMAGE.
 +
*
 +
*/
 +
 +
// t: current time, b: begInnIng value, c: change In value, d: duration
 +
jQuery.easing['jswing'] = jQuery.easing['swing'];
 +
 +
jQuery.extend( jQuery.easing,
 +
{
 +
def: 'easeOutQuad',
 +
swing: function (x, t, b, c, d) {
 +
//alert(jQuery.easing.default);
 +
return jQuery.easing[jQuery.easing.def](x, t, b, c, d);
 +
},
 +
easeInQuad: function (x, t, b, c, d) {
 +
return c*(t/=d)*t + b;
 +
},
 +
easeOutQuad: function (x, t, b, c, d) {
 +
return -c *(t/=d)*(t-2) + b;
 +
},
 +
easeInOutQuad: function (x, t, b, c, d) {
 +
if ((t/=d/2) < 1) return c/2*t*t + b;
 +
return -c/2 * ((--t)*(t-2) - 1) + b;
 +
},
 +
easeInCubic: function (x, t, b, c, d) {
 +
return c*(t/=d)*t*t + b;
 +
},
 +
easeOutCubic: function (x, t, b, c, d) {
 +
return c*((t=t/d-1)*t*t + 1) + b;
 +
},
 +
easeInOutCubic: function (x, t, b, c, d) {
 +
if ((t/=d/2) < 1) return c/2*t*t*t + b;
 +
return c/2*((t-=2)*t*t + 2) + b;
 +
},
 +
easeInQuart: function (x, t, b, c, d) {
 +
return c*(t/=d)*t*t*t + b;
 +
},
 +
easeOutQuart: function (x, t, b, c, d) {
 +
return -c * ((t=t/d-1)*t*t*t - 1) + b;
 +
},
 +
easeInOutQuart: function (x, t, b, c, d) {
 +
if ((t/=d/2) < 1) return c/2*t*t*t*t + b;
 +
return -c/2 * ((t-=2)*t*t*t - 2) + b;
 +
},
 +
easeInQuint: function (x, t, b, c, d) {
 +
return c*(t/=d)*t*t*t*t + b;
 +
},
 +
easeOutQuint: function (x, t, b, c, d) {
 +
return c*((t=t/d-1)*t*t*t*t + 1) + b;
 +
},
 +
easeInOutQuint: function (x, t, b, c, d) {
 +
if ((t/=d/2) < 1) return c/2*t*t*t*t*t + b;
 +
return c/2*((t-=2)*t*t*t*t + 2) + b;
 +
},
 +
easeInSine: function (x, t, b, c, d) {
 +
return -c * Math.cos(t/d * (Math.PI/2)) + c + b;
 +
},
 +
easeOutSine: function (x, t, b, c, d) {
 +
return c * Math.sin(t/d * (Math.PI/2)) + b;
 +
},
 +
easeInOutSine: function (x, t, b, c, d) {
 +
return -c/2 * (Math.cos(Math.PI*t/d) - 1) + b;
 +
},
 +
easeInExpo: function (x, t, b, c, d) {
 +
return (t==0) ? b : c * Math.pow(2, 10 * (t/d - 1)) + b;
 +
},
 +
easeOutExpo: function (x, t, b, c, d) {
 +
return (t==d) ? b+c : c * (-Math.pow(2, -10 * t/d) + 1) + b;
 +
},
 +
easeInOutExpo: function (x, t, b, c, d) {
 +
if (t==0) return b;
 +
if (t==d) return b+c;
 +
if ((t/=d/2) < 1) return c/2 * Math.pow(2, 10 * (t - 1)) + b;
 +
return c/2 * (-Math.pow(2, -10 * --t) + 2) + b;
 +
},
 +
easeInCirc: function (x, t, b, c, d) {
 +
return -c * (Math.sqrt(1 - (t/=d)*t) - 1) + b;
 +
},
 +
easeOutCirc: function (x, t, b, c, d) {
 +
return c * Math.sqrt(1 - (t=t/d-1)*t) + b;
 +
},
 +
easeInOutCirc: function (x, t, b, c, d) {
 +
if ((t/=d/2) < 1) return -c/2 * (Math.sqrt(1 - t*t) - 1) + b;
 +
return c/2 * (Math.sqrt(1 - (t-=2)*t) + 1) + b;
 +
},
 +
easeInElastic: function (x, t, b, c, d) {
 +
var s=1.70158;var p=0;var a=c;
 +
if (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;
 +
if (a < Math.abs(c)) { a=c; var s=p/4; }
 +
else var s = p/(2*Math.PI) * Math.asin (c/a);
 +
return -(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
 +
},
 +
easeOutElastic: function (x, t, b, c, d) {
 +
var s=1.70158;var p=0;var a=c;
 +
if (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;
 +
if (a < Math.abs(c)) { a=c; var s=p/4; }
 +
else var s = p/(2*Math.PI) * Math.asin (c/a);
 +
return a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b;
 +
},
 +
easeInOutElastic: function (x, t, b, c, d) {
 +
var s=1.70158;var p=0;var a=c;
 +
if (t==0) return b;  if ((t/=d/2)==2) return b+c;  if (!p) p=d*(.3*1.5);
 +
if (a < Math.abs(c)) { a=c; var s=p/4; }
 +
else var s = p/(2*Math.PI) * Math.asin (c/a);
 +
if (t < 1) return -.5*(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
 +
return a*Math.pow(2,-10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )*.5 + c + b;
 +
},
 +
easeInBack: function (x, t, b, c, d, s) {
 +
if (s == undefined) s = 1.70158;
 +
return c*(t/=d)*t*((s+1)*t - s) + b;
 +
},
 +
easeOutBack: function (x, t, b, c, d, s) {
 +
if (s == undefined) s = 1.70158;
 +
return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b;
 +
},
 +
easeInOutBack: function (x, t, b, c, d, s) {
 +
if (s == undefined) s = 1.70158;
 +
if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b;
 +
return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b;
 +
},
 +
easeInBounce: function (x, t, b, c, d) {
 +
return c - jQuery.easing.easeOutBounce (x, d-t, 0, c, d) + b;
 +
},
 +
easeOutBounce: function (x, t, b, c, d) {
 +
if ((t/=d) < (1/2.75)) {
 +
return c*(7.5625*t*t) + b;
 +
} else if (t < (2/2.75)) {
 +
return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b;
 +
} else if (t < (2.5/2.75)) {
 +
return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b;
 +
} else {
 +
return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b;
 +
}
 +
},
 +
easeInOutBounce: function (x, t, b, c, d) {
 +
if (t < d/2) return jQuery.easing.easeInBounce (x, t*2, 0, c, d) * .5 + b;
 +
return jQuery.easing.easeOutBounce (x, t*2-d, 0, c, d) * .5 + c*.5 + b;
 +
}
 +
});
 +
 +
/*
 +
*
 +
* TERMS OF USE - EASING EQUATIONS
 +
*
 +
* Open source under the BSD License.
 +
*
 +
* Copyright c 2001 Robert Penner
 +
* All rights reserved.
 +
*
 +
* Redistribution and use in source and binary forms, with or without modification,
 +
* are permitted provided that the following conditions are met:
 +
*
 +
* Redistributions of source code must retain the above copyright notice, this list of
 +
* conditions and the following disclaimer.
 +
* Redistributions in binary form must reproduce the above copyright notice, this list
 +
* of conditions and the following disclaimer in the documentation and/or other materials
 +
* provided with the distribution.
 +
*
 +
* Neither the name of the author nor the names of contributors may be used to endorse
 +
* or promote products derived from this software without specific prior written permission.
 +
*
 +
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
 +
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 +
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 +
*  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 +
*  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
 +
*  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
 +
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 +
*  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
 +
* OF THE POSSIBILITY OF SUCH DAMAGE.
 +
*
 +
*/
 +
</script>
 +
 +
 +
        <script type="text/javascript">
 +
 +
$(function() {
 +
$('#sdt_menu > li').bind('mouseenter',function(){
 +
var $elem = $(this);
 +
$elem.find('img')
 +
.stop(true)
 +
.animate({
 +
'width':'124px',
 +
'height':'124px',
 +
'left':'0px'
 +
},0,'easeOutBack')
 +
.andSelf()
 +
.find('.sdt_wrap')
 +
    .stop(true)
 +
.animate({'top':'94px'},400,'easeOutBack')
 +
.andSelf()
 +
.find('.sdt_active')
 +
    .stop(true)
 +
.animate({'height':'128px'},300,function(){
 +
var $sub_menu = $elem.find('.sdt_box');
 +
if($sub_menu.length){
 +
var left = '124px';
 +
if($elem.parent().children().length == $elem.index()+1)
 +
left = '-124px';
 +
$sub_menu.show().animate({'left':left},300);
 +
}
 +
});
 +
}).bind('mouseleave',function(){
 +
var $elem = $(this);
 +
var $sub_menu = $elem.find('.sdt_box');
 +
if($sub_menu.length)
 +
$sub_menu.hide().css('left','0px');
 +
 +
$elem.find('.sdt_active')
 +
.stop(true)
 +
.animate({'height':'0px'},400)
 +
.andSelf().find('img')
 +
.stop(true)
 +
.animate({
 +
'width':'0px',
 +
'height':'0px',
 +
'left':'62px'},400)
 +
.andSelf()
 +
.find('.sdt_wrap')
 +
.stop(true)
 +
.animate({'top':'25px'},500);
 +
});
 +
            });
 +
        </script>
 +
</script>
 +
<link rel="stylesheet" type="text/css" href="https://2011.igem.org/Team:TU-Delft/Testcss?action=raw&ctype=text/css" />
 +
</head>
 +
<body>
 +
 +
 +
<div id="TU-header1">
 +
 +
<img src="http://upload.wikimedia.org/wikipedia/en/d/d6/IGEM_official_logo.png" alt="TUDelft Logo2" height="52" align="LEFT" style="position:absolute; margin:20px 0px 0px 0px; " >
 +
 +
<img src="http://www.osli.ca/uploads/images/base/logo.png" alt="TUDelft Logo2" height="52" align="RIGHT" style="position:absolute; margin:20px 0px 0px 90px; align="Right" >
 +
 +
<img src="http://www.dsm.com/en_US/static/common/img/banner-cworld-logo.png" height="52" align="RIGHT" style="position:absolute; margin:20px 0px 0px 260px; align="RIGHT" >
 +
 +
<img src="http://home.tudelft.nl/fileadmin/UD/MenC/Support/Internet/TU_Website/TU_Delft_portal/Over_TU_Delft/Alumni/Verenigingen/Alumnivereniging/Alumnipas/Service/img/Logo_640_x_280.jpg" alt="TUDelft Logo2" height="52" align="RIGHT" style="position:absolute; margin:20px 0px 0px 460px; align="RIGHT" >
 +
 +
<img src="http://www.selectscience.net/images/logos/companies/1393_Greiner-Bio-One-Logo_Intern.jpg" alt="TUDelft Logo2" height="52" align="RIGHT" style="position:absolute; margin:20px 0px 0px 970px; align="RIGHT" >
 +
 +
<img src="http://edwingardner.com/projectivelandscape/site/img/UfD.gif" alt="TUDelft Logo2" height="52" align="RIGHT" style="position:absolute; margin:20px 0px 0px 750px; align="RIGHT" >
 +
 +
<img src="https://static.igem.org/mediawiki/2011/2/20/Dia1.png" height="52" align="RIGHT" style="position:absolute; margin:20px 0px 0px 630px; align="RIGHT" >
 +
 +
<img src="https://static.igem.org/mediawiki/2011/e/e0/TU_Delft_iGEM_logo.jpg" alt="TUDelft Logo2" height="52" align="RIGHT" style="position:absolute; margin:20px 0px 0px 1150px; align="RIGHT" >
 +
 +
<br>
 +
<div id="TU-wrapper">
 +
<div id="TU-header2">
 +
<div id="TU-menu">
 +
<ul id="sdt_menu" class="sdt_menu">
<ul id="sdt_menu" class="sdt_menu">
<li>
<li>
-
<a href="#">
+
<a href="https://2011.igem.org/Team:TU-Delft">
-
<img src="images/1.jpg" alt=""/>
+
<img src="http://www.den-dopper.com/wp-content/uploads/2009/03/thumb_tudelft.png" alt=""/>
<span class="sdt_active"></span>
<span class="sdt_active"></span>
<span class="sdt_wrap">
<span class="sdt_wrap">
-
<span class="sdt_link">Portfolio</span>
+
<span class="sdt_link">Home</span>
-
<span class="sdt_descr">My work</span>
+
<span class="sdt_descr"></span>
 +
</span>
 +
</a>
 +
</li>
 +
<li>
 +
<a href="https://2011.igem.org/Team:TU-Delft/Project">
 +
<img src="https://static.igem.org/mediawiki/2011/0/0a/Logo_vierkant_2011.jpg" alt=""/>
 +
<span class="sdt_active"></span>
 +
<span class="sdt_wrap">
 +
<span class="sdt_link">The Project</span>
 +
<span class="sdt_descr">What we are doing</span>
</span>
</span>
</a>
</a>
<div class="sdt_box">
<div class="sdt_box">
-
<a href="#">Websites</a>
+
                        <br><br>
-
<a href="#">Illustrations</a>
+
<a href="https://2011.igem.org/Team:TU-Delft/Project">Overview</a>
-
<a href="#">Photography</a>
+
                        <a href="https://2011.igem.org/Team:TU-Delft/Project/Modelling">Modelling</a>
 +
<a href="https://2011.igem.org/Team:TU-Delft/Project/Detailed">Detailed</a>
 +
                        <a href="https://2011.igem.org/Team:TU-Delft/Project/Production">Production</a>
 +
                        <a href="https://2011.igem.org/Team:TU-Delft/Project/Transportation">Transportation</a>
 +
                        <a href="https://2011.igem.org/Team:TU-Delft/Project/Hydroxylation">Hydroxylation</a>
 +
                        <a href="https://2011.igem.org/Team:TU-Delft/Project/Localization">Localization</a>
 +
<a href="https://static.igem.org/mediawiki/2011/3/34/IGEM_TUDelft2011_Research_Proposal.pdf">Research Proposal</a>
 +
</div>
 +
</li>
 +
 
 +
<li>
 +
<a href="https://2011.igem.org/Team:TU-Delft/Team">
 +
<img src="https://static.igem.org/mediawiki/2011/5/5d/Teamfoto_wiki.jpg" alt=""/>
 +
<span class="sdt_active"></span>
 +
<span class="sdt_wrap">
 +
<span class="sdt_link">The Team</span>
 +
<span class="sdt_descr">Who we are</span>
 +
</span>
 +
</a>
 +
<div class="sdt_box">
 +
                        <br>
 +
                        <br>
 +
                        <a href="https://2011.igem.org/Team:TU-Delft/Team">Overview</a>
 +
<a href="https://2011.igem.org/Team:TU-Delft/Team/Students">Students</a>
 +
<a href="https://2011.igem.org/Team:TU-Delft/Team/Supervisors">Supervisors</a>
 +
<a href="https://2011.igem.org/Team:TU-Delft/Team/University">University</a>
 +
</div>
 +
</li>
 +
<li>
 +
<a href="https://2011.igem.org/Team:TU-Delft/Notebooks/Overview">
 +
<img src="https://static.igem.org/mediawiki/2011/e/ee/TUDelft-Template-Notebook.png" alt=""/>
 +
<span class="sdt_active"></span>
 +
<span class="sdt_wrap">
 +
<span class="sdt_link">Notebooks</span>
 +
<span class="sdt_descr">What we did</span>
 +
</span>
 +
</a>
 +
<div class="sdt_box">
 +
                      <a href="https://2011.igem.org/Team:TU-Delft/Notebooks/Overview">Overview</a>
 +
                      <a href="https://2011.igem.org/Team:TU-Delft/Notebooks">Students</a>
 +
                      <a href="https://2011.igem.org/Team:TU-Delft/Notebooks/Brainstorming">Brainstorming</a>
 +
                      <a href="https://2011.igem.org/Team:TU-Delft/Notebooks/Protocols">Protocols</a>
 +
<!-- <a href="#">Departments</a> -->
</div>
</div>
</li>
</li>
-
...
 
-
</ul>
 
-
 
 +
<li>
 +
<a href="https://2011.igem.org/Team:TU-Delft/Human-Practice">
 +
<img src="https://static.igem.org/mediawiki/igem.org/6/61/Good_vs_Bad.jpg" alt=""/>
 +
<span class="sdt_active"></span>
 +
<span class="sdt_wrap">
 +
<span class="sdt_link">Human Practice</span>
 +
<span class="sdt_descr">Awareness </span>
 +
</span>
 +
</a>
 +
<div class="sdt_box">
 +
<br><br><br>
 +
                        <a href="https://2011.igem.org/Team:TU-Delft/Human-Practice">Overview</a>
 +
<a href="https://2011.igem.org/Team:TU-Delft/Human-Practice/Rathenau">Rathenau</a>
 +
<a href="https://2011.igem.org/Team:TU-Delft/Human-Practice/Science-Centre">Science Centre</a>
 +
 +
</div>
 +
</li>
 +
<li>
 +
<a href="https://2011.igem.org/Team:TU-Delft/Project/Safety">
 +
<img src="https://static.igem.org/mediawiki/2011/a/a2/Lab_safety.jpg" alt=""/>
 +
<span class="sdt_active"></span>
 +
<span class="sdt_wrap">
 +
<span class="sdt_link">Safety</span>
 +
<span class="sdt_descr">Responsibilty</span>
 +
</span>
 +
</a>
 +
<div class="sdt_box">
 +
<br>
 +
                        <a href="https://2011.igem.org/Team:TU-Delft/Project/Safety">Overview</a>
 +
                        <a href="https://2011.igem.org/Team:TU-Delft/Project/Safety/Safety-proposal">Safety proposal</a>
 +
 +
</li>
 +
<li>
 +
<a href="https://2011.igem.org/Team:TU-Delft/Project/Microbial-History">
 +
<img src="https://static.igem.org/mediawiki/2011/0/01/Logo_with_book.jpg" alt=""/>
 +
<span class="sdt_active"></span>
 +
<span class="sdt_wrap">
 +
<span class="sdt_link">Microbial history</span>
 +
<span class="sdt_descr">Where it all started</span>
 +
</span>
 +
</a>
 +
<div class="sdt_box">
 +
<br>
 +
                        <a href="https://2011.igem.org/Team:TU-Delft/Project/Microbial-History/Influences-of-Delft">Influences of Delft</a>
 +
<a href="https://2011.igem.org/Team:TU-Delft/Project/Microbial-History/Van Leeuwenhoek">Van Leeuwenhoek</a>
 +
                        <a href="https://2011.igem.org/Team:TU-Delft/Project/Microbial-History/Beijerink">Beijerink</a>
 +
                        <a href="https://2011.igem.org/Team:TU-Delft/Project/Microbial-History/Iterson">Iterson</a>
 +
                        <a href="https://2011.igem.org/Team:TU-Delft/Project/Microbial-History/Kluyer">Kluyver</a>
 +
</div>
 +
</li>
 +
<li>
 +
<a href="https://2011.igem.org/Team:TU-Delft/Sponsors">
 +
<img src="https://static.igem.org/mediawiki/2011/f/fe/TUDelft-Template-Sponsors.png" alt=""/>
 +
<span class="sdt_active"></span>
 +
<span class="sdt_wrap">
 +
<span class="sdt_link">Our Partners</span>
 +
<span class="sdt_descr">Making it possible</span>
 +
</span>
 +
</a>
 +
<div class="sdt_box">
 +
<br>
 +
                        <br>
 +
                        <a href="https://2011.igem.org/Team:TU-Delft/Sponsors">Sponsors</a>
 +
<a href="http://www.crowdfundingfacilities.com/content/igem-tu-delft">Support Us</a>
 +
                        <a href="https://2011.igem.org/Team:TU-Delft/Collaboration">Collaboration</a>
 +
<a href="https://2011.igem.org/Team:TU-Delft/Acknowledgement">Acknowledgements</a>
 +
</div>
 +
</li>
 +
</ul>
 +
</div>
 +
</body>
<style type="text/css">
<style type="text/css">
-
ul.sdt_menu{
 
-
margin:0;
 
-
padding:0;
 
-
list-style: none;
 
-
font-family:"Myriad Pro", "Trebuchet MS", sans-serif;
 
-
font-size:14px;
 
-
width:1020px;
 
-
}
 
-
ul.sdt_menu a{
+
#TU-header1 {
-
text-decoration:none;
+
width:100%;
-
outline:none;
+
absolute:left;
 +
background-color:#fff;
 +
display:block;
 +
position:absolute;
 +
top:-15px;
 +
clear:both;
 +
solid white;
 +
height:130px;
}
}
-
ul.sdt_menu li{
+
#TU-header2 {
-
float:left;
+
width:100%;
-
width:170px;
+
height:67px;
-
height:85px;
+
background-color:#002B60;
-
position:relative;
+
display:block;
-
cursor:pointer;
+
position:absolute;
 +
top:73px;
 +
clear:both;
}
}
-
 
+
#TU-wrapper {
-
ul.sdt_menu li > a{
+
line-height:1em;
-
position:absolute;
+
font-size:100%;
-
top:0px;
+
font: normal sans-serif;
-
left:0px;
+
-
width:170px;
+
-
height:85px;
+
-
z-index:12;
+
-
background:transparent url(../images/overlay.png) no-repeat bottom right;
+
-
-moz-box-shadow:0px 0px 2px #000;
+
-
-webkit-box-shadow:0px 0px 2px #000;
+
-
box-shadow:0px 0px 2px #000;
+
}
}
-
 
+
#TU-body {
-
ul.sdt_menu li a img{
+
width:100%;
-
border:none;
+
min-height: 400px;
-
position:absolute;
+
display:block;
-
width:0px;
+
float: left;
-
height:0px;
+
clear:both;
-
bottom:0px;
+
-
left:85px;
+
-
z-index:100;
+
-
-moz-box-shadow:0px 0px 4px #000;
+
-
-webkit-box-shadow:0px 0px 4px #000;
+
-
box-shadow:0px 0px 4px #000;
+
}
}
-
 
+
#TU-body-wrapper {
-
 
+
margin:-5px;
-
ul.sdt_menu li span.sdt_wrap{
+
width:100%;
-
position:absolute;
+
-
top:25px;
+
-
left:0px;
+
-
width:170px;
+
-
height:60px;
+
-
z-index:15;
+
}
}
-
 
+
#TU-footer {
-
ul.sdt_menu li span.sdt_active{
+
width:100%;
-
position:absolute;
+
height:50px;
-
background:#111;
+
background-color:#002B60;
-
top:85px;
+
display:block;
-
width:170px;
+
float:left;
-
height:0px;
+
-
left:0px;
+
-
z-index:14;
+
-
-moz-box-shadow:0px 0px 4px #000 inset;
+
-
-webkit-box-shadow:0px 0px 4px #000 inset;
+
-
box-shadow:0px 0px 4px #000 inset;
+
}
}
-
ul.sdt_menu li span span.sdt_link,
 
-
ul.sdt_menu li span span.sdt_descr,
 
-
ul.sdt_menu li div.sdt_box a{
 
-
margin-left:15px;
 
-
text-transform:uppercase;
 
-
text-shadow:1px 1px 1px #000;
 
-
}
 
-
ul.sdt_menu li span span.sdt_link{
+
</style>
-
color:#fff;
+
-
font-size:24px;
+
-
float:left;
+
-
clear:both;
+
-
}
+
-
ul.sdt_menu li span span.sdt_descr{
+
-
color:#0B75AF;
+
-
float:left;
+
-
clear:both;
+
-
width:155px;
+
-
font-size:10px;
+
-
letter-spacing:1px;
+
-
}
+
-
ul.sdt_menu li div.sdt_box{
 
-
display:block;
 
-
position:absolute;
 
-
width:170px;
 
-
overflow:hidden;
 
-
height:170px;
 
-
top:85px;
 
-
left:0px;
 
-
display:none;
 
-
background:#000;
 
-
}
 
-
ul.sdt_menu li div.sdt_box a{
 
-
float:left;
 
-
clear:both;
 
-
line-height:30px;
 
-
color:#0B75AF;
 
-
}
 
-
ul.sdt_menu li div.sdt_box a:first-child{
+
<div id="TU-body">
-
margin-top:15px;
+
<div id="TU-body-wrapper">
-
}
+
 
-
ul.sdt_menu li div.sdt_box a:hover{
+
 
-
color:#fff;
+
</html>
-
}
+
<html>
 +
<body style="background-image: initial; background-repeat-x:no-repeat; background-repeat-y:no-repeat; background-repeat:no-repeat; background-attachment:initial; background-position:initial initial; background-position-x:initial; background-position-y:initial; background-origin:initial; background-clip:initial;background-color:#656565; margin:0pt; " onload="onPageLoad();" onunload="onPageUnload();" >
 +
    <div style="text-align:center; " >
 +
      <div style="background-color:#FFFFFF; text-align:left; width:1010px; margin:0px auto 0px auto; " id="body_content" >
 +
</html>

Latest revision as of 18:08, 18 December 2011



TUDelft Logo2 TUDelft Logo2 TUDelft Logo2 TUDelft Logo2 TUDelft Logo2 TUDelft Logo2