Team:Tuebingen

From 2013.igem.org

(Difference between revisions)
Line 1: Line 1:
-
<html>
+
= iGEM 2013: Team Tübingen =
-
<!-- template base for all sites -->
+
 
-
<!-- styles -->
+
{{:Team:Tuebingen/Template/Twitter}}
-
</html>
+
{{:Team:Tuebingen/Template/Tuebingen}}
<html>
<html>
-
<style type="text/css">
 
-
/* Droid Sans from Google Web fonts */
 
-
@import url(http://fonts.googleapis.com/css?family=Droid+Sans:400,700);
 
-
/* hide various iGEM-elements */
+
<head>
 +
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
 +
<title>Mainpage Team Tübingen</title>
-
h1.firstHeading {
+
<style type="text/css">
-
  display: none;
+
body, input{
 +
font-family: Arial;
 +
        font-size: 0.8em;
}
}
-
/* disable search-controls (top right corner) */
+
<!-- Navigation -->
-
#search-controls {
+
#navigation {
-
  display: none !important;  
+
background-color: blue;
}
}
-
#searchInput {  
+
#accordion {
-
  display: none !important;  
+
list-style: none;
 +
padding: 0 0 0 0;
 +
width: 170px;
}
}
-
 
+
#accordion li{
-
.searchButton {
+
display: block;
-
  display: none !important;  
+
font-weight: bold;
 +
margin: 1px;
 +
cursor: pointer;
 +
padding: 5 5 5 7px;
 +
list-style: circle;
 +
-moz-border-radius: 10px;
 +
-webkit-border-radius: 10px;
 +
border-radius: 10px;
}
}
-
 
+
#accordion ul {
-
/* change the menubar (top menu) */
+
list-style: none;
-
#menubar {
+
padding: 0 0 0 0;
-
display: table-cell;
+
display: none;
-
background: transparent !important;  
+
}
}
-
 
+
#accordion ul li{
-
#menubar.right-menu {
+
font-weight: normal;
-
text-align: right;
+
cursor: auto;
 +
background-color: #fff;
 +
padding: 0 0 0 7px;
}
}
-
 
+
#accordion a {
-
#menubar * {
+
text-decoration: none;
-
color: transparent !important;
+
-
background: transparent !important;
+
}
}
-
 
+
#accordion a:hover {
-
#top-section:hover #menubar * {
+
text-decoration: underline;
-
color: black !important;
+
}
}
 +
<!-- /Navigation-->
-
/* setup our own logo ----- MUSS NOCH GEMACHT WERDEN! */
+
</style>
-
#p-logo {
+
-
/* backround-image: url(#); */
+
-
display: none;
+
-
}
+
 +
</head>
 +
<body>
 +
<p>Team Tübingen!</p>
 +
<!-- Navigation -->
 +
<div id="navigation">
 +
<ul id="accordion">
 +
<!-- http://viralpatel.net/blogs/create-accordion-menu-jquery/ -->
-
body {
+
    <li><a href="#">Home</a></li>
-
  background-color: #f5f5f5;
+
        <ul></ul>
-
}
+
-
table#toc {
+
    <li>Project</li>
-
  float: right;
+
        <ul>
-
   margin: 0 0 1em 1em;
+
            <li><a href="/Team:Tuebingen/Project">Overview</a></li>
-
}
+
            <li><a href="/Team:Tuebingen/Motivation">Motivation</a></li>
 +
            <li><a href="/Team:Tuebingen/Project_Receptor">Element: Receptor</a></li>
 +
            <li><a href="/Team:Tuebingen/Project_Inverter">Element: Inverter</a></li>
 +
            <li><a href="/Team:Tuebingen/Project_Reporter">Element: Reporter</a></li>
 +
    <li><a href="/Team:Tuebingen/Appkication">Application</a></li>
 +
    <li><a href="/Team:Tuebingen/Safety">Safety</a></li>       
 +
</ul>
 +
   
 +
    <li>Team</li>
 +
        <ul>
 +
            <li><a href="/Team:Tuebingen/About">About Us</a></li>
 +
            <li><a href="/Team:Tuebingen/Attributions">Attributions</a></li>
 +
            <li><a href="/Team:Tuebingen/#">Official Roster</a></li>
 +
</ul>
 +
 +
    <li>Notebook</li>
 +
        <ul>
 +
            <li><a href="/Team:Tuebingen/Protocols">Protocols</a></li>
 +
            <li><a href="/Team:Tuebingen/Journal">Weekly Journal</a></li>
 +
        </ul>
 +
 +
    <li>Activities</li>
 +
<ul>
 +
            <li><a href="/Team:Tuebingen/SynBio">SynBio-Day</a></li>
 +
            <li><a href="/Team:Tuebingen/School">School-Project</a></li>
 +
            <li><a href="/Team:Tuebingen/Videogame">Videogame</a></li>
 +
        </ul>
 +
 +
  <li>Results</li>    
 +
<ul>
 +
    <li><a href="#">Modelling</a></li>
 +
            <li><a href="#">Element: Receptor</a></li>
 +
            <li><a href="#">Element: Inverter</a></li>
 +
    <li><a href="#">Element: Reporter</a></li>
 +
            <li><a href="#">Shipped Parts</a></li>
 +
        </ul>
-
div#bodyContent {
+
  <li><a href="#">Contact Us</a></li>
-
  margin: 1em;
+
</ul>
-
}
+
</div>
 +
<!-- /Navigation -->
-
pre {
 
-
  font-size: 1.5em;
 
-
}
 
 +
<script>
-
/* navigation */
+
<!-- Navigation -->
-
#nav {
+
$("#accordion > li").click(function(){
-
  margin: auto;
+
-
}
+
-
#nav ul {
+
if(false == $(this).next().is(':visible')) {
-
  list-style-type: none;
+
$('#accordion > ul').slideUp(300);
-
  list-style-image: none;
+
}
-
  margin: 0;
+
$(this).next().slideToggle(300);
-
  padding: 0;
+
});
-
  height: 2.5em;
+
<!-- /Navigation -->
-
}
+
-
#nav li {
+
</script>
-
  display: block;
+
-
  position: relative;
+
-
  padding: 0;
+
-
  margin: 0 .5em 0 .5em;
+
-
  float: left;
+
-
  height: 2.7em;
+
-
}
+
-
/* main heading */
+
</body>
-
h1 {
+
-
  border: 0;
+
-
}
+
-
 
+
-
/* edit links on headings */
+
-
span.editsection {
+
-
  font-size: .5em;
+
-
  color: lightgrey;
+
-
}
+
-
span.editsection a {
+
-
  color: black;
+
-
}
+
-
</style>
+
</html>
</html>
-
 
-
 
-
 
-
<!-- google analytics -->
 
-
<html>
 
-
<script type="text/javascript">
 
-
 
-
  var _gaq = _gaq || [];
 
-
  _gaq.push(['_setAccount', 'UA-39523076-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>
 
-
 
-
<!-- include navigation -->
 
-
{{:Team:Tuebingen/Templates/Navigation}}
 

Revision as of 22:57, 13 August 2013

iGEM 2013: Team Tübingen

Return to iGEM Main Page.

Mainpage Team Tübingen

Team Tübingen!