Template:Team:DukeMBar/CSS

From 2014.igem.org

(Difference between revisions)
Line 1: Line 1:
<html xmlns="http://www.w3.org/1999/xhtml">
<html xmlns="http://www.w3.org/1999/xhtml">
-
 
-
<!--THIS STYLE SHEET REPLACES THE HOME TEMPLATE: https://2014.igem.org/Template:Team:DukeHomePage/CSS -->
 
<head>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
 +
<head>
 +
 +
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
 +
 +
<script type="text/javascript" src="http://linacabal.com/juan/ddaccordion.js">
 +
 +
/***********************************************
 +
* Accordion Content script- (c) Dynamic Drive DHTML code library (www.dynamicdrive.com)
 +
* Visit http://www.dynamicDrive.com for hundreds of DHTML scripts
 +
* This notice must stay intact for legal use
 +
***********************************************/
 +
 +
</script>
 +
<script type="text/javascript">
<script type="text/javascript">
-
//** Chrome Drop Down Menu- Author: Dynamic Drive (http://www.dynamicdrive.com)
 
-
//** Updated: July 14th 06' to v2.0
+
//Initialize Arrow Side Menu:
-
//1) Ability to "left", "center", or "right" align the menu items easily, just by modifying the CSS property "text-align".
+
ddaccordion.init({
-
//2) Added an optional "swipe down" transitional effect for revealing the drop down menus.
+
headerclass: "menuheaders", //Shared CSS class namfe of headers group
-
//3) Support for multiple Chrome menus on the same page.
+
contentclass: "menucontents", //Shared CSS class name of contents group
 +
revealtype: "mouseover", //Reveal content when user clicks or onmouseover the header? Valid value: "click", or "mouseover"
 +
mouseoverdelay: 200, //if revealtype="mouseover", set delay in milliseconds before header expands onMouseover
 +
collapseprev: true, //Collapse previous content (so only one open at any time)? true/false
 +
defaultexpanded: [0], //index of content(s) open by default [index1, index2, etc]. [] denotes no content.
 +
onemustopen: false, //Specify whether at least one header should be open always (so never all headers closed)
 +
animatedefault: false, //Should contents open by default be animated into view?
 +
persiststate: true, //persist state of opened contents within browser session?
 +
toggleclass: ["unselected", "selected"], //Two CSS classes to be applied to the header when it's collapsed and expanded, respectively ["class1", "class2"]
 +
togglehtml: ["none", "", ""], //Additional HTML added to the header when it's collapsed and expanded, respectively  ["position", "html1", "html2"] (see docs)
 +
animatespeed: 500, //speed of animation: integer in milliseconds (ie: 200), or keywords "fast", "normal", or "slow"
 +
oninit:function(expandedindices){ //custom code to run when headers have initalized
 +
//do nothing
 +
},
 +
onopenclose:function(header, index, state, isuseractivated){ //custom code to run whenever a header is opened or closed
 +
//do nothing
 +
}
 +
})
-
//** Updated: Nov 14th 06' to v2.01- added iframe shim technique
+
</script>
-
//** Updated: July 23rd, 08 to v2.4
+
<style type="text/css">
-
//1) Main menu items now remain "selected" (CSS class "selected" applied) when user moves mouse into corresponding drop down menu.
+
-
//2) Adds ability to specify arbitrary HTML that gets added to the end of each menu item that carries a drop down menu (ie: a down arrow image).
+
-
//3) All event handlers added to the menu are now unobstrusive, allowing you to define your own "onmouseover" or "onclick" events on the menu items.
+
-
//4) Fixed elusive JS error in FF that sometimes occurs when mouse quickly moves between main menu items and drop down menus
+
-
//** Updated: Oct 29th, 08 to v2.5 (only .js file modified from v2.4)
+
#content {
-
//1) Added ability to customize reveal animation speed (# of steps)
+
-
//2) Menu now works in IE8 beta2 (a valid doctype at the top of the page is required)
+
}
-
var cssdropdown={
+
#toc, .toc {
-
disappeardelay: 250, //set delay in miliseconds before menu disappears onmouseout
+
display:none;
-
dropdownindicator: '<img src="down.gif" border="0" />', //specify full HTML to add to end of each menu item with a drop down menu
+
-
enablereveal: [true, 8], //enable swipe effect? [true/false, steps (Number of animation steps. Integer between 1-20. Smaller=faster)]
+
-
enableiframeshim: 1, //enable "iframe shim" in IE5.5 to IE7? (1=yes, 0=no)
+
-
//No need to edit beyond here////////////////////////
+
}
-
dropmenuobj: null, asscmenuitem: null, domsupport: document.all || document.getElementById, standardbody: null, iframeshimadded: false, revealtimers: {},
+
h1, h2, h3, h4, h5, h6 {
 +
border: 0px;
 +
        color: #163F7F;
 +
        family-font: "Noto Sans";
 +
}
-
getposOffset:function(what, offsettype){
+
.arrowsidemenu{
-
var totaloffset=(offsettype=="left")? what.offsetLeft : what.offsetTop;
+
width: 180px; /*width of menu*/
-
var parentEl=what.offsetParent;
+
border-style: solid solid none solid;
-
while (parentEl!=null){
+
border-color: #003EFF; /*#94AA74;*/
-
totaloffset=(offsettype=="left")? totaloffset+parentEl.offsetLeft : totaloffset+parentEl.offsetTop;
+
border-size: 1px;
-
parentEl=parentEl.offsetParent;
+
border-width: 1px;
-
}
+
-
return totaloffset;
+
-
},
+
-
css:function(el, targetclass, action){
+
}
-
var needle=new RegExp("(^|\\s+)"+targetclass+"($|\\s+)", "ig")
+
-
if (action=="check")
+
-
return needle.test(el.className)
+
-
else if (action=="remove")
+
-
el.className=el.className.replace(needle, "")
+
-
else if (action=="add" && !needle.test(el.className))
+
-
el.className+=" "+targetclass
+
-
},
+
-
showmenu:function(dropmenu, e){
+
.arrowsidemenu ul{
-
if (this.enablereveal[0]){
+
list-style-type: none;
-
if (!dropmenu._trueheight || dropmenu._trueheight<10)
+
list-style-image: none;
-
dropmenu._trueheight=dropmenu.offsetHeight
+
}
-
clearTimeout(this.revealtimers[dropmenu.id])
+
-
dropmenu.style.height=dropmenu._curheight=0
+
.arrowsidemenu div a{ /*header bar links*/
-
dropmenu.style.overflow="hidden"
+
font: bold 12px Helvetica, Arial, sans-serif;
-
dropmenu.style.visibility="visible"
+
display: block;
-
this.revealtimers[dropmenu.id]=setInterval(function(){cssdropdown.revealmenu(dropmenu)}, 10)
+
background: transparent url(https://static.igem.org/mediawiki/2013/2/2f/Arrowblue.gif) 100% 0; /* this is where the arrow goes
-
}
+
  height: 24px; /*Set to height of bg image-padding within link (ie: 32px - 4px - 4px)*/
-
else{
+
padding: 4px 0 4px 10px;
-
dropmenu.style.visibility="visible"
+
line-height: 24px; /*Set line-height of bg image-padding within link (ie: 32px - 4px - 4px)*/
-
}
+
text-decoration: none;
-
this.css(this.asscmenuitem, "selected", "add")
+
}
-
},
+
 +
.arrowsidemenu div a:link, .arrowsidemenu div a:visited{
 +
color: #EDEDED; /*#26370A;*/
 +
}
-
revealmenu:function(dropmenu, dir){
+
.arrowsidemenu div a:hover{
-
var curH=dropmenu._curheight, maxH=dropmenu._trueheight, steps=this.enablereveal[1]
+
background-position: 100% -32px;
-
if (curH<maxH){
+
}
-
var newH=Math.min(curH, maxH)
+
-
dropmenu.style.height=newH+"px"
+
-
dropmenu._curheight= newH + Math.round((maxH-newH)/steps) + 1
+
-
}
+
-
else{ //if done revealing menu
+
-
dropmenu.style.height="auto"
+
-
dropmenu.style.overflow="hidden"
+
-
clearInterval(this.revealtimers[dropmenu.id])
+
-
}
+
-
},
+
-
clearbrowseredge:function(obj, whichedge){
+
.arrowsidemenu div.unselected a{ /*header that's currently not selected*/
-
var edgeoffset=0
+
color: #EDEDED; /*#283b00;*/
-
if (whichedge=="rightedge"){
+
}
-
var windowedge=document.all && !window.opera? this.standardbody.scrollLeft+this.standardbody.clientWidth-15 : window.pageXOffset+window.innerWidth-15
+
-
var dropmenuW=this.dropmenuobj.offsetWidth
+
-
if (windowedge-this.dropmenuobj.x < dropmenuW)  //move menu to the left?
+
-
edgeoffset=dropmenuW-obj.offsetWidth
+
-
}
+
-
else{
+
-
var topedge=document.all && !window.opera? this.standardbody.scrollTop : window.pageYOffset
+
-
var windowedge=document.all && !window.opera? this.standardbody.scrollTop+this.standardbody.clientHeight-15 : window.pageYOffset+window.innerHeight-18
+
-
var dropmenuH=this.dropmenuobj._trueheight
+
-
if (windowedge-this.dropmenuobj.y < dropmenuH){ //move up?
+
-
edgeoffset=dropmenuH+obj.offsetHeight
+
-
if ((this.dropmenuobj.y-topedge)<dropmenuH) //up no good either?
+
-
edgeoffset=this.dropmenuobj.y+obj.offsetHeight-topedge
+
-
}
+
-
}
+
-
return edgeoffset
+
-
},
+
-
dropit:function(obj, e, dropmenuID){
+
-
if (this.dropmenuobj!=null) //hide previous menu
+
.arrowsidemenu div.selected a{ /*header that's currently selected*/
-
this.hidemenu() //hide menu
+
color: #EDEDED; /*#616161;*/
-
this.clearhidemenu()
+
background-position: 100% -64px !important;
-
this.dropmenuobj=document.getElementById(dropmenuID) //reference drop down menu
+
}
-
this.asscmenuitem=obj //reference associated menu item
+
-
this.showmenu(this.dropmenuobj, e)
+
-
this.dropmenuobj.x=this.getposOffset(obj, "left")
+
-
this.dropmenuobj.y=this.getposOffset(obj, "top")
+
-
this.dropmenuobj.style.left=this.dropmenuobj.x-this.clearbrowseredge(obj, "rightedge")+"px"
+
-
this.dropmenuobj.style.top=this.dropmenuobj.y-this.clearbrowseredge(obj, "bottomedge")+obj.offsetHeight+1+"px"
+
-
this.positionshim() //call iframe shim function
+
-
},
+
-
positionshim:function(){ //display iframe shim function
+
.arrowsidemenu ul{
-
if (this.iframeshimadded){
+
list-style-type: none;
-
if (this.dropmenuobj.style.visibility=="visible"){
+
margin: 0;
-
this.shimobject.style.width=this.dropmenuobj.offsetWidth+"px"
+
padding: 0;
-
this.shimobject.style.height=this.dropmenuobj._trueheight+"px"
+
}
-
this.shimobject.style.left=parseInt(this.dropmenuobj.style.left)+"px"
+
-
this.shimobject.style.top=parseInt(this.dropmenuobj.style.top)+"px"
+
-
this.shimobject.style.display="block"
+
-
}
+
-
}
+
-
},
+
-
hideshim:function(){
+
.arrowsidemenu ul li{
-
if (this.iframeshimadded)
+
border-bottom: 1px solid #6183A6 /*#a1c67b;*/
-
this.shimobject.style.display='none'
+
list-style-type: none;
-
},
+
-
isContained:function(m, e){
 
-
var e=window.event || e
 
-
var c=e.relatedTarget || ((e.type=="mouseover")? e.fromElement : e.toElement)
 
-
while (c && c!=m)try {c=c.parentNode} catch(e){c=m}
 
-
if (c==m)
 
-
return true
 
-
else
 
-
return false
 
-
},
 
-
dynamichide:function(m, e){
+
}
-
if (!this.isContained(m, e)){
+
-
this.delayhidemenu()
+
-
}
+
-
},
+
-
delayhidemenu:function(){
 
-
this.delayhide=setTimeout("cssdropdown.hidemenu()", this.disappeardelay) //hide menu
 
-
},
 
-
hidemenu:function(){
+
.arrowsidemenu ul li a{ /*sub menu links*/
-
this.css(this.asscmenuitem, "selected", "remove")
+
display: block;
-
this.dropmenuobj.style.visibility='hidden'
+
background: #ffffff;
-
this.dropmenuobj.style.left=this.dropmenuobj.style.top="-1000px"
+
font: normal 12px Helvetica, Arial, sans-serif;
-
this.hideshim()
+
text-decoration: none;
-
},
+
color: black;
 +
padding: 5px 0;
 +
padding-left: 10px;
 +
border-left: 10px double #3B4990; /*#a1c67b;  this is the two vertical bars on the sub menus*/
 +
list-style-type: none;
 +
}
-
clearhidemenu:function(){
+
.arrowsidemenu ul li a:hover{
-
if (this.delayhide!="undefined")
+
background: #d5e5c1;
-
clearTimeout(this.delayhide)
+
}
-
},
+
-
addEvent:function(target, functionref, tasktype){
+
</style>
-
if (target.addEventListener)
+
-
target.addEventListener(tasktype, functionref, false);
+
-
else if (target.attachEvent)
+
-
target.attachEvent('on'+tasktype, function(){return functionref.call(target, window.event)});
+
-
},
+
-
startchrome:function(){
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
-
if (!this.domsupport)
+
<style type="text/css">
-
return
+
/* These styles just pretty up the page a bit. */
-
this.standardbody=(document.compatMode=="CSS1Compat")? document.documentElement : document.body
+
html
-
for (var ids=0; ids<arguments.length; ids++){
+
{
-
var menuitems=document.getElementById(arguments[ids]).getElementsByTagName("a")
+
overflow: -moz-scrollbars-vertical !important;
-
for (var i=0; i<menuitems.length; i++){
+
resize: none;
-
if (menuitems[i].getAttribute("rel")){
+
background: url(https://static.igem.org/mediawiki/2012/d/da/Fondo1.png) repeat;
-
var relvalue=menuitems[i].getAttribute("rel")
+
<!--background: url(https://static.igem.org/mediawiki/2013/0/0f/DukeBackground.png) repeat;-->
-
var asscdropdownmenu=document.getElementById(relvalue)
+
background-color: #fff;
-
this.addEvent(asscdropdownmenu, function(){cssdropdown.clearhidemenu()}, "mouseover")
+
}
-
this.addEvent(asscdropdownmenu, function(e){cssdropdown.dynamichide(this, e)}, "mouseout")
+
-
this.addEvent(asscdropdownmenu, function(){cssdropdown.delayhidemenu()}, "click")
+
-
try{
+
-
menuitems[i].innerHTML=menuitems[i].innerHTML+" "+this.dropdownindicator
+
-
}catch(e){}
+
-
this.addEvent(menuitems[i], function(e){ //show drop down menu when main menu items are mouse over-ed
+
-
if (!cssdropdown.isContained(this, e)){
+
-
var evtobj=window.event || e
+
-
cssdropdown.dropit(this, evtobj, this.getAttribute("rel"))
+
-
}
+
-
}, "mouseover")
+
-
this.addEvent(menuitems[i], function(e){cssdropdown.dynamichide(this, e)}, "mouseout") //hide drop down menu when main menu items are mouse out
+
-
this.addEvent(menuitems[i], function(){cssdropdown.delayhidemenu()}, "click") //hide drop down menu when main menu items are clicked on
+
-
}
+
-
} //end inner for
+
-
} //end outer for
+
-
if (this.enableiframeshim && document.all && !window.XDomainRequest && !this.iframeshimadded){ //enable iframe shim in IE5.5 thru IE7?
+
-
document.write('<IFRAME id="iframeshim" src="about:blank" frameBorder="0" scrolling="no" style="left:0; top:0; position:absolute; display:none;z-index:90; background: transparent;"></IFRAME>')
+
-
this.shimobject=document.getElementById("iframeshim") //reference iframe object
+
-
this.shimobject.style.filter='progid:DXImageTransform.Microsoft.Alpha(style=0,opacity=0)'
+
-
this.iframeshimadded=true
+
-
}
+
-
} //end startchrome
+
-
}</script>
+
#top-section {
 +
height: 0px;
 +
border-top: 1
 +
border-left: none;
 +
border-right: none;
 +
}
-
<style type="text/css" media="screen">
+
#siteSub {
-
.chromestyle{
+
display:none;
-
width: 99%;
+
-
font-weight: bold;
+
}
}
-
.chromestyle:after{ /*Add margin between menu and rest of content in Firefox*/
+
#search-controls {
-
content: ".";
+
display:none;
-
display: block;
+
-
height: 0;
+
-
clear: both;
+
-
visibility: hidden;
+
}
}
-
.chromestyle ul{
+
.firstHeading {
-
border: 1px solid #BBB;
+
display:none;
-
width: 100%;
+
-
background: url(chromebg.gif) center center repeat-x; /*THEME CHANGE HERE*/
+
-
padding: 4px 0;
+
-
margin: 0;
+
-
text-align: center; /*set value to "left", "center", or "right"*/
+
}
}
-
.chromestyle ul li{
+
#search-controls {
-
display: inline;
+
margin-top:0px;
}
}
-
.chromestyle ul li a{
+
#footer-box {
-
color: #494949;
+
display:none;
-
padding: 4px 7px;
+
-
margin: 0;
+
-
text-decoration: none;
+
-
border-right: 1px solid #DADADA;
+
}
}
-
.chromestyle ul li a:hover, .chromestyle ul li a.selected{ /*script dynamically adds a class of "selected" to the current active menu item*/
+
body
-
background: url(chromebg-over.gif) center center repeat-x; /*THEME CHANGE HERE*/
+
{
 +
background: url(https://static.igem.org/mediawiki/2012/d/da/Fondo1.png) repeat;
 +
<!--background: url(https://static.igem.org/mediawiki/2013/0/0f/DukeBackground.png) repeat;-->
 +
background-color: #fff;
}
}
-
/* ######### Style for Drop Down Menu ######### */
+
body {
 +
  font: 65%/1.2 Arial, Helvetica, sans-serif;
 +
  background-color: #E8F6FF; }
 +
#wrap {
 +
  font-size: 1.1em;
 +
  width: 180px;
 +
  padding: 0px;
 +
  margin-left: 15px;
 +
  background-color: #fff;
 +
  position: relative;
 +
  height: 100%;
 +
 
 +
margin-right: 20px;
 +
margin-bottom: 20px;
 +
margin-top: 10px;
 +
float: left;
-
.dropmenudiv{
 
-
position:absolute;
 
-
top: 0;
 
-
border: 1px solid #BBB; /*THEME CHANGE HERE*/
 
-
border-bottom-width: 0;
 
-
font:normal 12px Verdana;
 
-
line-height:18px;
 
-
z-index:100;
 
-
background-color: white;
 
-
width: 200px;
 
-
visibility: hidden;
 
}
}
 +
.right_box{
 +
width: 730px;
 +
margin-left: 210px;
 +
margin-top: 20px;
 +
-
.dropmenudiv a{
 
-
width: auto;
 
-
display: block;
 
-
text-indent: 3px;
 
-
border-bottom: 1px solid #BBB; /*THEME CHANGE HERE*/
 
-
padding: 2px 0;
 
-
text-decoration: none;
 
-
font-weight: bold;
 
-
color: black;
 
}
}
-
* html .dropmenudiv a{ /*IE only hack*/
+
/* These styles create the dropdown menus. */
-
width: 100%;
+
#navbar {
 +
  margin: 1600;
 +
  padding: 0;
 +
  height: 1em; }
 +
#navbar li {
 +
  list-style: none;
 +
  float: left; }
 +
#navbar li a {
 +
  padding-left: 6px;
 +
  padding-bottom: 4px;
 +
  padding-right: 6px;
 +
  padding-top: 4px;
 +
  display: block;
 +
  background-color: #C1CDCD/*#5d9548;*/
 +
  color: #fff;
 +
  text-decoration: none; }
 +
#navbar li ul {
 +
  display: none;
 +
  width: 10em; /* Width to help Opera out */
 +
  background-color: #80ff00;}
 +
#navbar li:hover ul, #navbar li.hover ul {
 +
  display: block;
 +
  position: absolute;
 +
  background-color: #C1CDCD; /*#5d9549;*/
 +
  margin: 0;
 +
  padding: 0; }
 +
#navbar li:hover li, #navbar li.hover li {
 +
  float: none; }
 +
#navbar li:hover li a, #navbar li.hover li a {
 +
  background-color: #66b83d;
 +
  border-bottom: 1px solid #fff;
 +
  color: white; }
 +
#navbar li li a:hover {
 +
  background-color: #C1CDCD;} /*#8db3ff; }*/
 +
</style>
 +
 
 +
<script>
 +
// Javascript originally by Patrick Griffiths and Dan Webb.
 +
// http://htmldog.com/articles/suckerfish/dropdowns/
 +
sfHover = function() {
 +
  var sfEls = document.getElementById("navbar").getElementsByTagName("li");
 +
  for (var i=0; i<sfEls.length; i++) {
 +
      sfEls[i].onmouseover=function() {
 +
        this.className+=" hover";
 +
      }
 +
      sfEls[i].onmouseout=function() {
 +
        this.className=this.className.replace(new RegExp(" hover\\b"), "");
 +
      }
 +
  }
}
}
 +
if (window.attachEvent) window.attachEvent("onload", sfHover);
 +
</script>
-
.dropmenudiv a:hover{ /*THEME CHANGE HERE*/
+
 
-
background-color: #F0F0F0;
+
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script>
 +
<script type="text/javascript" src="http://linacabal.com/juan/s3Slider.js"></script>
 +
<script type="text/javascript">
 +
    $(document).ready(function() {
 +
        $('#slider').s3Slider({
 +
            timeOut: 5000
 +
        });
 +
    });
 +
</script>
 +
 
 +
<style type="text/css" media="screen">
 +
#slider {
 +
    width: 970px; /* important to be same as image width */
 +
    height: 244px; /* important to be same as image height */
 +
    position: relative; /* important */
 +
overflow: hidden; /* important */
 +
margin-left: -2px;
 +
}
 +
#sliderContent {
 +
    width: 970px; /* important to be same as image width or wider */
 +
    position: absolute;
 +
top: 0;
 +
margin-left: 0;
 +
}
 +
.sliderImage {
 +
    float: left;
 +
    position: relative;
 +
display: none;
 +
}
 +
.sliderImage span {
 +
    position: absolute;
 +
font: 10px/15px Arial, Helvetica, sans-serif;
 +
    width: 384px;
 +
 
 +
display: none;
 +
   
 +
}
 +
.clear {
 +
clear: both;
 +
}
 +
.sliderImage span strong {
 +
    font-size: 14px;
 +
}
 +
.top {
 +
top: 0;
 +
left: 0;
 +
}
 +
.bottom {
 +
bottom: 0;
 +
    left: 0;
}
}
 +
ul { list-style-type: none;}
</style>
</style>
Line 293: Line 324:
<body>
<body>
-
<div class="chromestyle" id="chromemenu">
+
<div id="wrap">
-
<ul>
+
-
<li><a href="#">Home</a></li>
+
-
<li><a href="#" rel="dropmenu1">Resources</a></li>
+
-
<li><a href="#" rel="dropmenu2">News</a></li>
+
-
</ul>
+
-
</div>
+
-
<!--1st drop down menu -->  
+
<div class="arrowsidemenu">
-
<div id="dropmenu1" class="dropmenudiv">
+
      <div><a href="https://2013.igem.org/Team:Duke">Home</a></div>
-
<a href="#">Dynamic Drive</a>
+
       
-
<a href="#">CSS Drive</a>
+
        <div class="menuheaders"><a href="https://2013.igem.org/Team:Duke/Team">Team Duke 2013</a></div>
-
<a href="#">JavaScript Kit</a>
+
            <ul class="menucontents">
-
</div>
+
              <li><a href="https://2013.igem.org/Team:Duke/Team#The_Team">The Team</a></li>
 +
              <li><a href="https://2013.igem.org/Team:Duke/Team#Undergrads">Undergrads</a></li>
 +
              <li><a href="https://2013.igem.org/Team:Duke/Team#Grad_Students">Grad Students</a></li>
 +
              <li><a href="https://2013.igem.org/Team:Duke/Team#Instructors">Instructors</a></li>
 +
            </ul>
 +
       
 +
        <div class="menuheaders"><a>Genetic Toggle Switch</a></div>
 +
            <ul class="menucontents">
 +
              <li><a href="https://2013.igem.org/Team:Duke/Project/Problem">The Project</a></li>
 +
              <li><a href="https://2013.igem.org/Team:Duke/Project/Basics">Background Information</a></li>
 +
              <li><a href="https://2013.igem.org/Team:Duke/Project/Design">Experimental Design</a></li>             
 +
              <li><a href="https://2013.igem.org/Team:Duke/Project/Results/Part1">Results:<br>Library of DNA Parts</a></li>
 +
              <li><a href="https://2013.igem.org/Team:Duke/Project/Results/Part2">Results:<br>Parts Characterization</a></li>
 +
<!--               <li><a href="https://2013.igem.org/Team:Duke/Project/CRISPR_Results">Results: CRISPR</a></li>  -->
 +
 +
            </ul>       
 +
        <div><a href="https://2013.igem.org/Team:Duke/Parts">Biological Parts Submitted</a></div>
 +
            <!--ul>
 +
              <li><a href="#">Via Email</a></li>
 +
              <li><a href="#">Stalk Us Elsewhere</a></li>
 +
            </ul-->       
 +
        <div class="menuheaders"><a>Mathematical Modeling</a></div>
 +
            <ul class="menucontents">
 +
              <li><a href="https://2013.igem.org/Team:Duke/Modeling/Cooperativity">Cooperativity and Hill Equation</a></li>
 +
              <li><a href="https://2013.igem.org/Team:Duke/Modeling/Thermodynamic_Model_Intro">Thermodynamic Model : Introduction</a></li>
 +
              <li><a href="https://2013.igem.org/Team:Duke/Modeling/Thermodynamic_Model_Application">Thermodynamic Model : Cooperative Repression</a></li>
 +
              <li><a href="https://2013.igem.org/Team:Duke/Modeling/Kinetic_Model">Kinetic Model : <br>Bifurcation and Bistability</a></li>
 +
            </ul>       
 +
        <!-- <div><a href="https://2013.igem.org/Team:Duke/Notebook">Results</a></div> -->
 +
        <div class="menuheaders"><a href="https://2013.igem.org/Team:Duke/Human/">Human Practices</a></div>
 +
          <ul class="menucontents">
 +
            <li><a href="https://2013.igem.org/Team:Duke/Human/FromBenchToBiotech">From Bench to Biotech</a></li>
 +
<!--<li><a href="https://2013.igem.org/Team:Duke/Human/2">BBBB</a></li>-->
 +
            </ul>
 +
     
 +
        <div class="menuheaders"><a>Lab Notebook</a></div>
 +
            <ul class="menucontents">
 +
              <li><a href="https://2013.igem.org/Team:Duke/Notebook/Lab_Notebook">Overview</a></li>
 +
              <li><a href="https://2013.igem.org/Team:Duke/Notebook/Protocols">Protocols</a></li>
 +
              <li><a href="https://2013.igem.org/Team:Duke/Notebook/Strain List">Strain List</a></li>
 +
<!--              <li><a href="https://2013.igem.org/Team:Duke/Notebook/Prezi">Project Outline (Prezi) </a></li> -->
 +
            </ul>       
 +
        <div class="menuheaders"><a href="https://2013.igem.org/Team:Duke/Safety">Safety</a></div>
 +
            <ul class="menucontents">
 +
              <li><a href="https://2013.igem.org/Team:Duke/Safety/Ecoli_and_Scerevisiae"><i>E.coli</i> and <i>S.cerevisiae</i></a></li>
 +
              <li><a href="https://2013.igem.org/Team:Duke/Safety/Xanthomonas"><i>Xanthomonas</i> Bacteria</a></li>
 +
            </ul>       
 +
        <div><a href="https://2013.igem.org/Team:Duke/Attributions">Attributions</a></div>
 +
            <!--ul>
 +
              <li><a href="#">1</a></li>
 +
              <li><a href="#">2</a></li>
 +
              <li><a href="#">3</a></li>
 +
            </ul-->     
 +
<!--        <div><a href="https://2013.igem.org/Team:Duke/Gallery">Gallery</a></div> -->
 +
       
 +
        <!-- <div class="menuheaders"><a>University & Jamboree</a></div> -->
 +
            <!--ul class="menucontents">
 +
              <li><a href="http://www.uniandes.edu.co">DUKE? </a></li>
 +
              <li><a href="https://2012.igem.org/Regions/Latin_America/Jamboree">North American Jamboree 2013</a></li>
 +
            </ul--> 
 +
<!--
 +
        <div><a href="https://2013.igem.org/Team:Duke/Sponsors">Our Sponsors</a></div>
 +
            <!--ul>
 +
              <li><a href="#">Bench Press</a></li>
 +
              <li><a href="#">Military Press</a></li>
 +
              <li><a href="#">Press n Seal</a></li>
 +
            </ul-->       
 +
   
 +
  <div><a href="https://2013.igem.org/">iGEM 2013</a></div>
 +
     
 +
    </div>
 +
 
-
<!--2nd drop down menu -->
+
     
-
<div id="dropmenu2" class="dropmenudiv" style="width: 150px;">
+
  </div>
-
<a href="#">CNN</a>
+
-
<a href="#">MSNBC</a>
+
-
<a href="#">BBC News</a>
+
-
</div>
+
-
 
+
-
<script type="text/javascript">
+
-
cssdropdown.startchrome("chromemenu")
+
-
</script>
+
</body>
</body>
</html>
</html>

Revision as of 21:56, 14 October 2014