Team:Colorado State

From 2012.igem.org

(Difference between revisions)
(Undo revision 301153 by Lalondej (talk))
 
(139 intermediate revisions not shown)
Line 1: Line 1:
-
{| style="color:#000000;background-color:#00FFFF;" cellpadding="3" cellspacing="1" border="2" bordercolor="#800000" width="62%" align="center"
+
{{CSU_Template_1_top}}
-
!align="center"|[[Team:Colorado_State|Home]]
+
-
!align="center"|[[Team:Colorado_State/Team|Team]]
+
-
!align="center"|[https://igem.org/Team.cgi?year=2012&team_name=Colorado_State Official Team Profile]
+
-
!align="center"|[[Team:Colorado_State/Project|Project]]
+
-
!align="center"|[[Team:Colorado_State/Parts|Parts Submitted to the Registry]]
+
-
!align="center"|[[Team:Colorado_State/Modeling|Modeling]]
+
-
!align="center"|[[Team:Colorado_State/Notebook|Notebook]]
+
-
!align="center"|[[Team:Colorado_State/Safety|Safety]]
+
-
!align="center"|[[Team:Colorado_State/Sponsors|Sponsors]]
+
-
!align="center"|[[Team:Colorado_State/Attributions|Attributions]]
+
-
|}
+
-
 
+
<html xmlns="http://www.w3.org/1999/xhtml">
<html xmlns="http://www.w3.org/1999/xhtml">
-
<head>
 
-
<style type="text/css">
 
-
#top-section {
+
<!--START PAGE CONTENT-->
-
      visibility: hidden;
+
 
-
}
+
<a class="editbutton" href="https://2012.igem.org/wiki/index.php?title=Team:Colorado_State&amp;action=edit">Edit page</a>
 +
<h1>Our Gluten-Free Mission</h1>
 +
 
 +
<img src="https://lh6.googleusercontent.com/-cUic9qTY128/UA3HlblblkI/AAAAAAAAATI/m2Iu9XgpMFM/s512/gluten_free_keg.png" width="250" style="border: none; float: right; margin-left: 15px;" />
 +
 
 +
<p>If you have Celiac Disease or are Gluten-Intolerant (and are over 21), stop what you are doing right now. Your prayers for a great tasting gluten-free beer have finally been answered, or at least are in the process of being answered. Think of it as a delay in the mailroom. All of those nights when your friends were taunting you with the ice cold, delicious, golden liquid that gives courage to even the most faint of heart are quickly coming to an end. Your desire to enjoy a "cold one" without having a gut-wrenching reaction should be fullfilled by the end of the summer. The CSU iGEM team is working on producing a "gluten-free" beer that can be brewed from wheat or barley so you can savor that same great taste you know and love. So cross your fingers, bust out your lucky rabbits foot, and watch out for black cats because we are gearing up for something big, and it has never been done before.</p>
 +
 
 +
<h1>More Than a Great Beer</h1>
 +
 
 +
<img src="http://static.wix.com/media/5bd9eb_299a61aed7aee9a8fe1c2e1ca33ea264.jpg_srz_275_207_85_22_0.50_1.20_0.00_jpg_srz" width="250" style="float: left; margin-right: 15px;" />
 +
 
 +
<p>A gluten-free beer isn't the only thing we are working on. We are also designing primers for New Belgium Brewery, developing a novel gluten-detecting assay, and creating a computer-modeled simulation for the breakdown of gluten in beer. All of these various components have us teaming up with some of the best in the business, so don't forget to visit our sponsor and attribution pages.</p>
 +
 
 +
<br /><br /><br /><br /><br />
-
#slideshow {
+
<h1>RamStrong</h1>
-
position: relative;
+
-
border: solid black 1px;
+
-
top: 0;
+
-
left: 0;
+
-
width: 200px;
+
-
height: 200px;
+
-
}
+
-
.slide {
+
<img src="http://www.brandyleephotography.com/wp-content/uploads/Ram-Tough.jpg" width="250" style="float: right; margin-left: 15px;" />
-
position: absolute;
+
-
width: 100%;
+
-
height: 100%;
+
-
}
+
-
</style>
+
<p>We proudly roam the steepest and most treacherous mountain sides, looking for adventure, and exploring whatever comes our way. We do not back down from challenges, instead we charge them head on. Although we do occasionally clash heads, we power through our disagreements, because... we are the CSU Rams!!!</p>
-
<script type="text/javascript">
+
-
//Performs fade animation; main function
+
<!--END PAGE CONTENT-->
-
function fade(curElemID,isFading) {
+
-
+
-
//Length that each slide shows before fade (in milliseconds)
+
-
var slideTime = 2000;
+
-
+
-
//Length of fade (milliseconds)
+
-
var fadeTime = 1000;
+
-
+
-
//Fade Increments: > means smoother, more CPU-intensive transition
+
-
var fadeInc = 10;
+
-
+
-
//In order for fade to work correctly, opacity must be rounded to
+
-
//the appropriate number of decimal places.  roundTo defines this.
+
-
//For fadeInc < 20, roundTo = 1 will suffice.  roundNum is the
+
-
//functional form.
+
-
var roundTo = 1;
+
-
var roundNum = Math.pow(10, roundTo);
+
-
+
-
//Fetches the current slide element
+
-
var curElem = document.getElementById('slide' + curElemID);
+
-
+
-
//Checks if the function is running in the loop (it is fading).
+
-
//Function must be called with isFading = false
+
-
if (isFading == false) {
+
-
+
-
//Fetches the next slide element.  If there is no next slide,
+
-
//return to slide1.
+
-
var nextElem = document.getElementById('slide' + (curElemID + 1));
+
-
if (!nextElem) {
+
-
var nextElem = document.getElementById('slide1');
+
-
} //end if
+
-
+
-
//Brings current slide to front/fading z-index (3) and puts the
+
-
//next slide in the corresponding z-index (2).  Slides that are
+
-
//neither the current or next slide should have z-index = 1.
+
-
curElem.style.zIndex = 3;
+
-
nextElem.style.zIndex = 2;
+
-
+
-
//Sets a preliminary opacities. Optional
+
-
curElem.style.opacity = 1;
+
-
nextElem.style.opacity = 1;
+
-
+
-
} //end if
+
-
+
-
//Fades out the current slide if it is not already completely faded yet
+
-
if (curElem.style.opacity > 0) {
+
-
+
-
//Sets new opacity and reruns the function
+
-
var newOpac = (Math.round(roundNum * (curElem.style.opacity - (1/fadeInc)))) / roundNum;
+
-
curElem.style.opacity = newOpac;
+
-
setTimeout('fade(' + curElemID + ')', (fadeTime/fadeInc));
+
-
+
-
//Current slide has faded completely
+
-
} else {
+
-
+
-
//Sets the current slide to a hidden state with full opacity
+
-
curElem.style.zIndex = 1;
+
-
curElem.style.opacity = 1;
+
-
+
-
//Sets next slide element.  If there is no next slide,
+
-
//return to slide1.
+
-
var nextElem = document.getElementById('slide' + (curElemID + 1));
+
-
if (nextElem) {
+
-
var nextElemID = curElemID + 1;
+
-
} else {
+
-
var nextElemID = 1;
+
-
} //end if
+
-
+
-
//Starts next fade.  isFading = false is a required parameter
+
-
setTimeout('fade(' + nextElemID + ',false)',slideTime);
+
-
+
-
} //end if
+
-
+
-
} //end function fade
+
-
</script>
 
-
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
 
-
<title>Slideshow</title>
 
-
</head>
 
-
<body onload="fade(1,false)">
 
-
<a href="/wiki/index.php?title=Team:Colorado_State&amp;action=edit">Edit page</a>
 
-
<div id="slideshow">
 
-
    <div id="slide1" class="slide" style="background: red; z-index: 3;"></div>
 
-
    <div id="slide2" class="slide" style="background: blue;"></div>
 
-
    <div id="slide3" class="slide" style="background: yellow;"></div>
 
-
</div>
 
-
</body>
 
</html>
</html>
 +
{{CSU_Template_1_bottom}}

Latest revision as of 06:51, 26 June 2013

Edit page

Our Gluten-Free Mission

If you have Celiac Disease or are Gluten-Intolerant (and are over 21), stop what you are doing right now. Your prayers for a great tasting gluten-free beer have finally been answered, or at least are in the process of being answered. Think of it as a delay in the mailroom. All of those nights when your friends were taunting you with the ice cold, delicious, golden liquid that gives courage to even the most faint of heart are quickly coming to an end. Your desire to enjoy a "cold one" without having a gut-wrenching reaction should be fullfilled by the end of the summer. The CSU iGEM team is working on producing a "gluten-free" beer that can be brewed from wheat or barley so you can savor that same great taste you know and love. So cross your fingers, bust out your lucky rabbits foot, and watch out for black cats because we are gearing up for something big, and it has never been done before.

More Than a Great Beer

A gluten-free beer isn't the only thing we are working on. We are also designing primers for New Belgium Brewery, developing a novel gluten-detecting assay, and creating a computer-modeled simulation for the breakdown of gluten in beer. All of these various components have us teaming up with some of the best in the business, so don't forget to visit our sponsor and attribution pages.






RamStrong

We proudly roam the steepest and most treacherous mountain sides, looking for adventure, and exploring whatever comes our way. We do not back down from challenges, instead we charge them head on. Although we do occasionally clash heads, we power through our disagreements, because... we are the CSU Rams!!!