Team:Colombia/Parts

From 2012.igem.org

(Difference between revisions)
(Prototype team page)
Line 1: Line 1:
-
<!-- *** What falls between these lines is the Alert Box!  You can remove it from your pages once you have read and understood the alert *** -->
+
== Team Colombia @ 2012 iGEM ==
-
<html>
+
<html xmlns="http://www.w3.org/1999/xhtml">
-
<div id="box" style="width: 700px; margin-left: 137px; padding: 5px; border: 3px solid #000; background-color: #fe2b33;">
+
<head>
-
<div id="template" style="text-align: center; font-weight: bold; font-size: large; color: #f6f6f6; padding: 5px;">
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
-
This is a template page. READ THESE INSTRUCTIONS.
+
<style type="text/css">
-
</div>
+
/* These styles just pretty up the page a bit. */
-
<div id="instructions" style="text-align: center; font-weight: normal; font-size: small; color: #f6f6f6; padding: 5px;">
+
html
-
You are provided with this team page template with which to start the iGEM season.  You may choose to personalize it to fit your team but keep the same "look." Or you may choose to take your team wiki to a different level and design your own wiki. You can find some examples <a href="https://2008.igem.org/Help:Template/Examples">HERE</a>.
+
{
-
</div>
+
overflow: -moz-scrollbars-vertical !important;
-
<div id="warning" style="text-align: center; font-weight: bold; font-size: small; color: #f6f6f6; padding: 5px;">
+
resize: none;
-
You <strong>MUST</strong>  have all of the pages listed in the menu below with the names specified.  PLEASE keep all of your pages within your teams namespace. 
+
background-color: #f5f6f7;
-
</div>
+
}
-
</div>
+
-
</html>
+
-
<!-- *** End of the alert box *** -->
+
#top-section {
 +
height: 0px;
 +
border-top: 1
 +
border-left: none;
 +
border-right: none;
 +
}
-
{| style="color:#1b2c8a;background-color:#0c6;" cellpadding="3" cellspacing="1" border="1" bordercolor="#fff" width="62%" align="center"
+
#siteSub {
-
!align="center"|[[Team:Colombia|Home]]
+
display:none;
-
!align="center"|[[Team:Colombia/Team|Team]]
+
}
-
!align="center"|[https://igem.org/Team.cgi?year=2012&team_name=Colombia Official Team Profile]
+
-
!align="center"|[[Team:Colombia/Project|Project]]
+
-
!align="center"|[[Team:Colombia/Parts|Parts Submitted to the Registry]]
+
-
!align="center"|[[Team:Colombia/Modeling|Modeling]]
+
-
!align="center"|[[Team:Colombia/Notebook|Notebook]]
+
-
!align="center"|[[Team:Colombia/Safety|Safety]]
+
-
!align="center"|[[Team:Colombia/Attributions|Attributions]]
+
-
|}
+
 +
#search-controls {
 +
display:none;
 +
}
 +
.firstHeading {
 +
display:none;
 +
}
-
An important aspect of the iGEM competition is the use and creation of standard  biological parts. Each team will make new parts during iGEM and will place them in the [http://partsregistry.org Registry of Standard Biological Parts]. The iGEM software provides an easy way to present the parts your team has created . The "groupparts" tag will generate a table with all of the parts that your team adds to your team sandbox.  Note that if you want to document a part you need to document it on the [http://partsregistry.org Registry], not on your team wiki.
+
#search-controls {
 +
margin-top:0px;
 +
}
-
Remember that the goal of proper part documentation is to describe and define a part such that it can be used without a need to refer to the primary literature. The next iGEM team should be able to read your documentation and be able to use the part successfully. Also, you should provide proper references to acknowledge previous authors and to provide for  users who wish to know more.
+
#footer-box {
 +
display:none;
 +
}
 +
body
 +
{
 +
background-color: #f5f6f7;
 +
}
-
<groupparts>iGEM012 Colombia</groupparts>
+
body {
 +
  font: 65%/1.2 Arial, Helvetica, sans-serif;
 +
  background-color: #eee; }
 +
#wrap {
 +
  font-size: 0.7em;
 +
  width: 960px;
 +
  padding: 0px;
 +
  margin: 0 auto;
 +
  background-color: #fff;
 +
  position: relative; }
 +
 
 +
/* These styles create the dropdown menus. */
 +
#navbar {
 +
  margin: 1600;
 +
  padding: 0;
 +
  height: 1em; }
 +
#navbar li {
 +
  list-style: none;
 +
  float: left; }
 +
#navbar li a {
 +
  padding-left: 19px;
 +
  padding-bottom: 3px;
 +
  padding-right: 8px;
 +
  padding-top: 3px;
 +
  display: block;
 +
  background-color: #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: #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: #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>
 +
 
 +
</head>
 +
<body>
 +
  <div id="wrap">
 +
 
 +
      <ul id="navbar">
 +
        <li><a href="https://2012.igem.org/Team:Colombia">Home</a>
 +
        </li>
 +
        <li><a href="https://2012.igem.org/Team:Colombia/Team">The Team</a>
 +
            <ul>
 +
              <li><a href="https://2012.igem.org/Team:Colombia/Team#The_Team">The Team</a></li>
 +
              <li><a href="https://2012.igem.org/Team:Colombia/Team#Undergrads">Undergrads</a></li>
 +
              <li><a href="https://2012.igem.org/Team:Colombia/Team#Grad_students_.28Also_known_as_the_Aging_ones.21.29">Grad Students</a></li>
 +
              <li><a href="https://2012.igem.org/Team:Colombia/Team#Instructors:">Instructors</a></li>
 +
            </ul>
 +
        </li>
 +
        <li><a href="https://2012.igem.org/Team:Colombia/Project">Project</a>
 +
            <ul>
 +
              <li><a href="https://2012.igem.org/Team:Colombia/Project/Basics">The Basics Project</a></li>
 +
              <li><a href="https://2012.igem.org/Team:Colombia/Project/Problem">The Problem</a></li>
 +
              <li><a href="https://2012.igem.org/Team:Colombia/Project/Experiments/Pseudomonas">Experiments: Pseudomonas</a></li>
 +
              <li><a href="https://2012.igem.org/Team:Colombia/Project/Experiments/Ralstonia">Experiments: Ralstonia</a></li>
 +
              <li><a href="https://2012.igem.org/Team:Colombia/Project/Experiments/Vibrio and Streptomyces">Experiments: Vibrio and Streptomyces</a></li>
 +
            </ul>       
 +
        </li>
 +
        <li><a href="https://2012.igem.org/Team:Colombia/Parts">Parts</a>
 +
            <!--ul>
 +
              <li><a href="#">Via Email</a></li>
 +
              <li><a href="#">Stalk Us Elsewhere</a></li>
 +
            </ul-->       
 +
        </li>
 +
        <li><a href="https://2012.igem.org/Team:Colombia/Modeling">Modeling</a>
 +
            <ul>
 +
              <li><a href="https://2012.igem.org/Team:Colombia/Modeling/Diff">Diferential Equations</a></li>
 +
              <li><a href="https://2012.igem.org/Team:Colombia/Modeling/Paramterers">Parameters</a></li>
 +
              <li><a href="https://2012.igem.org/Team:Colombia/Modeling/Stochastic">Stochastic Model</a></li>
 +
            </ul>       
 +
        </li>
 +
        <li><a href="https://2012.igem.org/Team:Colombia/Notebook">Results</a>
 +
        </li>
 +
        <li><a href="https://2012.igem.org/Team:Colombia/Human">Human Practices</a>
 +
          <ul>
 +
              <li><a href="https://2012.igem.org/Team:Colombia/Human/Social: Schools">Social: Schools</a></li>
 +
              <li><a href="https://2012.igem.org/Team:Colombia/Human/Social: Coffee growers">Social: Coffe growers</a></li>
 +
              <li><a href="https://2012.igem.org/Team:Colombia/Human/Legislative">Legislative</a></li>
 +
              <li><a href="https://2012.igem.org/Team:Colombia/Human/IGEMLA">iGEM Latinamerica</a></li>
 +
            </ul>       
 +
        </li>
 +
            <li><a href="https://2012.igem.org/Team:Colombia/Notebook">Notebook</a>
 +
            <ul>
 +
              <li><a href="https://2012.igem.org/Team:Colombia/Notebook/Journal">Journal</a></li>
 +
              <li><a href="https://2012.igem.org/Team:Colombia/Notebook/Meetings">Meetings</a></li>
 +
              <li><a href="https://2012.igem.org/Team:Colombia/Notebook/Classes">Classes</a></li>
 +
              <li><a href="https://2012.igem.org/Team:Colombia/Notebook/Protocols">Protocols</a></li>
 +
              <li><a href="https://2012.igem.org/Team:Colombia/Notebook/Howto">How To: Parts</a></li>
 +
              <li><a href="https://2012.igem.org/Team:Colombia/Notebook/Human">Human Practices</a></li>
 +
            </ul>       
 +
        </li>
 +
            <li><a href="https://2012.igem.org/Team:Colombia/Safety">Safety</a>
 +
            <ul>
 +
              <li><a href="https://2012.igem.org/Team:Colombia/Safety#Safety_Considerations_.22Hazardous_reagents_and_Biohazards.22">Hazard</a></li>
 +
              <li><a href="https://2012.igem.org/Team:Colombia/Safety#Safety_Considerations_.22Biological_Parts_.26_Devices.22">Biological Parts and Devices</a></li>
 +
              <li><a href="https://2012.igem.org/Team:Colombia/Safety#Biosafety_Provisions">Biosafety Provisions</a></li>
 +
            </ul>       
 +
        </li>
 +
            <li><a href="https://2012.igem.org/Team:Colombia/Attributions">Attributes</a>
 +
            <!--ul>
 +
              <li><a href="#">Bench Press</a></li>
 +
              <li><a href="#">Military Press</a></li>
 +
              <li><a href="#">Press n Seal</a></li>
 +
            </ul-->       
 +
        </li>
 +
            <li><a>The University and the Jamboree</a>
 +
            <ul>
 +
              <li><a href="http://www.uniandes.edu.co">UniAndes</a></li>
 +
              <li><a href="https://2012.igem.org/Regions/Latin_America/Jamboree">Latin American Jamboree 2012</a></li>
 +
            </ul>       
 +
        </li>
 +
  <li><a href="https://2012.igem.org/">iGem Homepage</a>
 +
        </li>
 +
      </ul>
 +
  </div>
 +
 
 +
</body>
 +
</html>

Revision as of 06:18, 14 July 2012

Team Colombia @ 2012 iGEM