Line 590: | Line 590: | ||
margin-bottom: 30px; | margin-bottom: 30px; | ||
} | } | ||
+ | |||
+ | |||
+ | |||
+ | .profiles { | ||
+ | border: 2px solid #A8A8A8; | ||
+ | width: 900px; | ||
+ | margin-left: 20px; | ||
+ | margin-right: 20px; | ||
+ | -webkit-border-radius: 5px; | ||
+ | -moz-border-radius: 5px; | ||
+ | border-radius: 5px; | ||
+ | } | ||
+ | |||
+ | .profiles p { | ||
+ | line-height: 1.5em !important; | ||
+ | font-size: 12pt !important; | ||
+ | padding: 0 0 0 0 !important; | ||
+ | margin-left: 0px !important; | ||
+ | margin-top: 0px !important; | ||
+ | margin-bottom: 0px !important; | ||
+ | margin-right: 15px !important; | ||
+ | } | ||
+ | |||
+ | .profiles strong { | ||
+ | margin-left: 15px; | ||
+ | margin-top: 15px; | ||
+ | font-size: 14pt; | ||
+ | display: block; | ||
+ | line-height: 2em; | ||
+ | |||
+ | } | ||
+ | |||
+ | .profiles img { | ||
+ | margin-left: 15px; | ||
+ | margin-bottom: 15px; | ||
+ | width: 400px; | ||
+ | float: left; | ||
+ | margin-right: 20px; | ||
+ | } | ||
</style> | </style> | ||
− | + | <div class="longText" id="div-slideshow"> | |
− | <div class="longText"> | + | <div class="profiles basic"> |
− | < | + | <strong><a href="http://parts.igem.org/Part:BBa_K2032002">Formate Pathway(BBa_K2032002)</a></strong> |
− | + | <p>Contains stop codons after parts FDH and FALDH! Converts methanol into carbon dioxide, generating energy in the form of NADPH in the process.</p> | |
− | + | </div> | |
− | + | <div class="profiles basic"> | |
− | + | <strong><a href="http://parts.igem.org/Part:BBa_K2032003">Codon optimized MDH2 with Lac/pL promoter (BBa_K2032003)</strong></a> | |
− | + | <p>Codon optimized MDH2 with lac + pL promoter</p> | |
− | + | </div> | |
− | + | <div class="profiles basic"> | |
− | + | <strong><a href="http://parts.igem.org/Part:BBa_K2032004">GroESL (BBa_K2032004)</strong></a> | |
− | + | <p>Chaperone complex</p> | |
− | + | </div> | |
− | + | <div class="profiles composite"> | |
− | + | <strong><a href="http://parts.igem.org/Part:BBa_K2032000">sMMO (BBa_K2032000)</strong></a> | |
− | + | <p>Contains the subunits necessary to assembly the soluble methane monooxygenase (sMMO) enzyme complex. Contains MMO subunits B, C, D, X, Y, and Z, each preceded by Anderson rbs B0032, and all under lactose of IPTG inducable control. The sMMO complex oxidizes methane into methanol</p> | |
− | + | </div> | |
− | + | <div class="profiles composite"> | |
− | + | <strong><a href="http://parts.igem.org/Part:BBa_K2032001">Fructose Pathway (BBa_K2032001)</strong></a> | |
− | + | <p>Contains genes MDH, HPS, and PHI. Methanol Dehydrogenase II converts methanol into formate. HPS and PHI turn it into metabolites that feed into the glycolysis pathway.</p> | |
− | + | </div> | |
− | + | <div class="profiles composite"> | |
− | + | <strong><a href="http://parts.igem.org/Part:BBa_K2032005">GroESL Composite (BBa_K2032005)</strong></a> | |
− | + | <p>Contains promoter, rbs, and terminator along with GroESL coding region | |
− | + | </div> | |
− | + | <div class="profiles composite"> | |
− | + | <strong><a href="http://parts.igem.org/Part:BBa_K2032006">Fructose with RFP (BBa_K2032006)</strong></a> | |
− | + | <p>Fructose construct with RFP reporter</p> | |
− | + | </div> | |
− | + | <div class="profiles composite"> | |
− | + | <strong><a href="http://parts.igem.org/Part:BBa_K2032007">Formate with RFP (BBa_K2032007)</strong></a> | |
− | + | <p>Formate construct with RFP reporter</p> | |
− | + | </div> | |
− | + | <div class="profiles composite"> | |
− | + | <strong><a href="http://parts.igem.org/Part:BBa_K2032008">sMMO and GFP (BBa_K2032008)</strong></a> | |
− | + | <p>sMMO and GFP for coculture test with fructose/formate and RFP</p> | |
− | + | </div> | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
</div> | </div> | ||
<!-- <table id="table-selector"> Table of navigational links | <!-- <table id="table-selector"> Table of navigational links | ||
Line 841: | Line 872: | ||
var toggle = 1; | var toggle = 1; | ||
− | + | <!-- For nav bar scrolling + hovering --> | |
+ | $('nav').mouseover( | ||
+ | function () { | ||
+ | $('#img-logo').css('transition', '.35s ease-in'); | ||
+ | $('#img-logo').css('opacity', '1'); | ||
+ | $('#img-igemlogo').css('transition', '.35s ease-in'); | ||
+ | $('#img-igemlogo').css('opacity', '1'); | ||
+ | $('nav ul').addClass("hover"); | ||
+ | $('nav').css('opacity', '1'); | ||
+ | $('nav').css('transition', '.5s ease'); | ||
+ | } | ||
+ | ), | ||
+ | $('nav').mouseout( | ||
+ | function () { | ||
+ | var scroll = $(window).scrollTop(); | ||
+ | if (scroll > 0) { | ||
+ | $('#img-logo').css('transition', '.25s ease'); | ||
+ | $('#img-logo').css('opacity', '0'); | ||
+ | $('#img-igemlogo').css('transition', '.25s ease'); | ||
+ | $('#img-igemlogo').css('opacity', '0'); | ||
+ | $('nav ul').removeClass("hover"); | ||
+ | $('nav').css('opacity', '.5'); | ||
+ | $('nav').css('transition', '.5s ease'); | ||
+ | } | ||
+ | } | ||
+ | ); | ||
+ | $(function() { | ||
+ | var nav = $('nav ul'); | ||
+ | var navList = $('nav ul li'); | ||
+ | $(window).scroll(function() { | ||
+ | var scroll = $(window).scrollTop(); | ||
+ | if (scroll > 0) { | ||
+ | nav.addClass("scrolled"); | ||
+ | nav.removeClass("hover"); | ||
+ | $('#img-logo').css('transition', '.25s ease'); | ||
+ | $('#img-logo').css('opacity', '0'); | ||
+ | $('#img-igemlogo').css('transition', '.25s ease'); | ||
+ | $('#img-igemlogo').css('opacity', '0'); | ||
+ | $('nav').css('transition', '.5s ease'); | ||
+ | $('nav').css('opacity', '.5'); | ||
+ | } else { | ||
+ | nav.removeClass("scrolled"); | ||
+ | $('nav').css('transition', '.5s ease'); | ||
+ | $('nav').css('opacity', '1'); | ||
+ | $('#img-logo').css('transition', '.35s ease-in'); | ||
+ | $('#img-logo').css('opacity', '1'); | ||
+ | $('#img-igemlogo').css('transition', '.35s ease-in'); | ||
+ | $('#img-igemlogo').css('opacity', '1'); | ||
+ | |||
+ | } | ||
+ | }); | ||
+ | }); | ||
</script> | </script> | ||
<script> | <script> |
Revision as of 01:12, 16 October 2016
</div> </div>
Contains stop codons after parts FDH and FALDH! Converts methanol into carbon dioxide, generating energy in the form of NADPH in the process.
Codon optimized MDH2 with lac + pL promoter
Chaperone complex
Contains the subunits necessary to assembly the soluble methane monooxygenase (sMMO) enzyme complex. Contains MMO subunits B, C, D, X, Y, and Z, each preceded by Anderson rbs B0032, and all under lactose of IPTG inducable control. The sMMO complex oxidizes methane into methanol
Contains genes MDH, HPS, and PHI. Methanol Dehydrogenase II converts methanol into formate. HPS and PHI turn it into metabolites that feed into the glycolysis pathway.
Contains promoter, rbs, and terminator along with GroESL coding region
Fructose construct with RFP reporter
Formate construct with RFP reporter
sMMO and GFP for coculture test with fructose/formate and RFP