Team:UIUC Illinois

From 2013.igem.org

(Difference between revisions)
Line 1: Line 1:
-
<!--[[File:Igem logo.jpg|frameless|border|left|10px]]-->
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-
<!--[[File:UIUC iGEM Logo.png|frameless|border|center|10px]]-->
+
-
<!--[[File:UIUC Illinois team.png|frameless|border|left|500px]]-->
+
-
 
+
<html xmlns="http://www.w3.org/1999/xhtml">
<html xmlns="http://www.w3.org/1999/xhtml">
 +
<head>
 +
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
 +
<!-- TemplateBeginEditable name="doctitle" -->
 +
<title>Untitled Document</title>
 +
<!-- TemplateEndEditable -->
 +
<!-- TemplateBeginEditable name="head" -->
 +
<!-- TemplateEndEditable -->
<style type="text/css">
<style type="text/css">
-
{
+
<!--
-
  background-color: #FFFFFFF;
+
body {
 +
font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
 +
background: #4E5869;
 +
margin: 0;
 +
padding: 0;
 +
color: #000;
}
}
-
#content
+
 
-
{
+
/* ~~ Element/tag selectors ~~ */
-
  background-color: transparent;
+
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
-
  background-image: url("https://static.igem.org/mediawiki/2012/e/e5/Zju_back.jpg");
+
padding: 0;
-
  background-attachment: scroll;
+
margin: 0;
-
  background-position: 50% 0;
+
-
  background-repeat: repeat-y;
+
-
  overflow: hidden;
+
-
  border-style: none;
+
-
  width: 100%;
+
}
}
-
/* Remove Top Item (origin item) */
+
h1, h2, h3, h4, h5, h6, p {
-
#top-section
+
margin-top: 0; /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
-
{
+
padding-right: 15px;
-
  height: 0px;
+
padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
-
  width: 100%;
+
}
}
-
#p-logo {
+
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
-
  display: none;
+
border: none;
}
}
-
#top
+
 
-
{
+
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
-
  display: none;
+
a:link {
 +
color:#FFFFFFF;
 +
text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
}
-
#search-controls
+
a:visited {
-
{
+
color: #4E5869;
-
  display: none
+
text-decoration: underline;
}
}
-
</style>
+
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
-
<head>
+
text-decoration: none;
-
<style>
+
-
body
+
-
{
+
-
background-color:#FFFFFF;
+
}
}
-
h1
+
 
-
{
+
/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
-
font-family:"Mank Sans";
+
.container {
-
background-color: #12171E;
+
width: 80%;
-
color:white;
+
max-width: 1260px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
-
text-align:center;
+
min-width: 780px;/* a min-width may be desirable to keep this layout from getting too narrow. This keeps line length more readable in the side columns. IE6 does not respect this declaration. */
 +
background: #FFF;
 +
margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
}
}
-
h2
+
 
-
{
+
/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
-
font-family:"Mank Sans";
+
.header {
-
font-size:18px;
+
background: #6F7D94;
-
background-color: #12171E;
+
-
color:white;
+
-
text-align:center;
+
}
}
-
linkBox, MenuBar1
+
 
-
{
+
/* ~~ These are the columns for the layout. ~~
-
font-family:" London Between";
+
 
-
font-size:18px;
+
1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.
-
color:white;
+
 
-
text-align:left;
+
2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.
 +
 
 +
3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.
 +
 
 +
4) If you prefer your nav on the left instead of the right, simply float these columns the opposite direction (all left instead of all right) and they'll render in reverse order. There's no need to move the divs around in the HTML source.
 +
 
 +
*/
 +
.sidebar1 {
 +
float: right;
 +
width: 20%;
 +
background: #93A5C4;
 +
padding-bottom: 10px;
 +
}
 +
.content {
 +
padding: 10px 0;
 +
width: 80%;
 +
float: right;
}
}
-
</style>
 
-
</head>
 
-
<body>
+
/* ~~ This grouped selector gives the lists in the .content area space ~~ */
-
<div id="container" style="width:1160px">
+
.content ul, .content ol {
-
<div id="divider"style="width:200px;height:800px;float:left"></div>
+
padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
 +
}
-
<div id="header" style=" width:960px;height=69px">
+
/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
-
<a href="#"><img src="https://static.igem.org/mediawiki/2013/1/1b/IGEM_UIUC_Logo.jpg" alt="logo" width="161" height="69" align="left" /></a>
+
ul.nav {
-
<a href="#"><img src="http://upload.wikimedia.org/wikipedia/en/d/d6/IGEM_official_logo.png" alt="logo" width="88.25" height="69" align="right" /></a>
+
list-style: none; /* this removes the list marker */
-
</div>
+
border-top: 1px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
 +
margin-bottom: 15px; /* this creates the space between the navigation on the content below */
 +
}
 +
ul.nav li {
 +
border-bottom: 1px solid #666; /* this creates the button separation */
 +
}
 +
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
 +
padding: 5px 5px 5px 15px;
 +
display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
 +
text-decoration: none;
 +
background: #8090AB;
 +
color: #000;
 +
}
 +
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
 +
background: #6F7D94;
 +
color: #FFF;
 +
}
-
<div id="left" style=" height:360px; width:800px;float:left;">
+
/* ~~ The footer ~~ */
-
  <img src="https://static.igem.org/mediawiki/2013/3/34/Image.png" alt="2013 iGEM UIUC" title="2013 iGEM UIUC" style="float:left; height:360px; width:800px;">
+
.footer {
-
</div>
+
padding: 10px 0;
-
<div id="menu" style="height:360px; width:160; float:right;">
+
background: #6F7D94;
-
  <div style="background-color:#720005 ; padding:3px;">
+
position: relative;/* this gives IE6 hasLayout to properly clear */
-
    <a href="https://2013.igem.org/UIUC_Illinois/Project"><linkBox>Project</linkBox></a></div>
+
clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
-
  <div style="height:7px;font-size:7px;">&nbsp;</div>
+
}
-
  <div style="background-color:#720005 ; padding:3px;">
+
-
    <a href="https://2013.igem.org/UIUC_Illinois/About"><linkBox>About</linkBox></a></div>
+
-
  <div style="height:7px;font-size:7px;">&nbsp;</div>
+
-
  <div style="background-color:#720005 ; padding:3px;">
+
-
    <a href="https://2013.igem.org/UIUC_Illinois/Safety"><linkBox>Safety</linkBox></a></div>
+
-
  <div style="height:7px;font-size:7px;">&nbsp;</div>
+
-
  <div style="background-color:#720005 ; padding:3px;">
+
-
    <a href="https://2013.igem.org/UIUC_Illinois/Outreach"><linkBox> Outreach </linkBox></a></div>
+
-
  <div style="height:7px;font-size:7px;">&nbsp;</div>
+
-
  <div style="background-color:#720005 ; padding:3px;">
+
-
    <a href="https://2013.igem.org/UIUC_Illinois/Impact"><linkBox>Impact</linkBox></a></div>
+
-
  <div style="height:7px;font-size:7px;">&nbsp;</div>
+
-
  <div style="background-color:#720005 ; padding:3px;">
+
-
    <a href="https://2013.igem.org/UIUC_Illinois/Achievements"><linkBox>Achievements</linkBox></a></div>
+
-
  <div style="height:7px;font-size:7px;">&nbsp;</div>
+
-
  <div style="background-color:#720005 ; padding:3px;">
+
-
    <a href="https://2013.igem.org/UIUC_Illinois/Sponsors"><linkBox>Sponsors</linkBox></a></div>
+
-
  <div style="height:7px;font-size:7px;">&nbsp;</div>
+
-
  <div style="background-color:#720005 ; padding:3px;">
+
-
    <a href="https://2012.igem.org/Team:UIUC-Illinois"target="blank"><linkBox>2012 UIUC Team</linkBox></a></div>
+
-
  <div style="height:7px;font-size:7px;">&nbsp;</div>
+
-
  <div style="background-color:#720005 ; padding:3px;">
+
-
    <a href="https://igem.org"target="blank"><linkBox>iGEM Website</linkBox></a></div>
+
-
</div>
+
-
<div id="divider2"style="width:960px;height:15px;float:left;"></div>
+
-
<div id="description" style="width:960px; background-color:#12171E;float:right;">
+
/* ~~ miscellaneous float/clear classes ~~ */
-
<h1>Project Description</h1>
+
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
-
<h2>Cardiovascular disease (CVD) has been the leading cause of death in the United States for over twenty years and is becoming a severe global health issue. CVD is highly associated with the buildup of plaque in arteries, a disease known as Atherosclerosis. Trimethylamine N-oxide (TMAO) is a known proatherogenic substance, and is abundant in carnivorous humans and those who consume energy drinks. It is the goal of the University of Illinois at Urbana Champaign (UIUC) iGEM Team to lower the amount of TMAO found in such individuals and therefore reduce the risk of atherosclerosis for those afflicted.TMAO is produced when the gut microbiota process the amino acid derivatives L-carnitine and choline. These metabolites are abundant in red meats and energy drinks, and are important bodily compounds; however, humans are intrinsically capable of producing the necessary amounts. When these substances are consumed, specific gut bacteria convert L-carnitine and choline into a harmful byproduct trimethylamine (TMA.) To protect itself, the liver oxidizes TMA into TMAO.
+
float: right;
 +
margin-left: 8px;
 +
}
 +
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
 +
float: left;
 +
margin-right: 8px;
 +
}
 +
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
 +
clear:both;
 +
height:0;
 +
font-size: 1px;
 +
line-height: 0px;
 +
}
 +
-->
 +
</style><!--[if lte IE 7]>
 +
<style>
 +
.content { margin-right: -1px; } /* this 1px negative margin can be placed on any of the columns in this layout with the same corrective effect. */
 +
ul.nav a { zoom: 1; }  /* the zoom property gives IE the hasLayout trigger it needs to correct extra whiltespace between the links */
 +
</style>
 +
<![endif]--></head>
-
We are creating a probiotic to outcompete the gut bacteria for L-carnitine and choline to effectively lower and ultimately remove the atherogenic activity caused by TMAO. Pseudomonas aeruginosa is a bacterium with novel adaptations that enable it to uptake L-carnitine as a sole source of carbon and nitrogen. These genes have been selected for and are being tested in various Escherichia coli.</h2>
+
<body>
-
</div>
+
-
</div>
+
<div class="container">
 +
  <div class="header"><a href="#"><img src="" alt="Insert Logo Here" name="Insert_logo" width="20%" height="90" id="Insert_logo" style="background: #8090AB; display:block;" /></a>
 +
    <!-- end .header --></div>
 +
  <div class="sidebar1">
 +
    <ul class="nav">
 +
      <li><a href="#">Link one</a></li>
 +
      <li><a href="#">Link two</a></li>
 +
      <li><a href="#">Link three</a></li>
 +
      <li><a href="#">Link four</a></li>
 +
    </ul>
 +
    <p>&nbsp;</p>
 +
    <!-- end .sidebar1 --></div>
 +
  <div class="content">
 +
    <h1>&nbsp;</h1>
 +
    <!-- end .content --></div>
 +
  <div class="footer">
 +
    <p>=</p>
 +
    <!-- end .footer --></div>
 +
  <!-- end .container --></div>
</body>
</body>
</html>
</html>
-
<!-- Resource: http://www.w3schools.com/ -->
 
-
<!-- Got how to remove IGEM header andthe search menu and how to get rid of the border came from ZJU-China wiki https://2012.igem.org/wiki/index.php?title=Team:ZJU-China-->
 

Revision as of 18:32, 20 August 2013

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> Untitled Document