Line 1: | Line 1: | ||
{{HZAU-China}} | {{HZAU-China}} | ||
− | <html> | + | <html lang="en"> |
+ | <head> | ||
+ | <meta charset="UTF-8"> | ||
+ | <title>chassis</title> | ||
+ | <style> | ||
+ | *{margin: 0;padding: 0;} | ||
+ | .content_wrapper { | ||
+ | position: absolute; | ||
+ | top: 88px; | ||
+ | width: 100%; | ||
+ | height: 1800px; | ||
+ | background-color: white; | ||
+ | } | ||
+ | .main_part{ | ||
+ | width: 80%; | ||
+ | height: 100%; | ||
+ | float: left; | ||
+ | } | ||
+ | .article{ | ||
+ | width: 60%; | ||
+ | height: auto; | ||
+ | position: absolute; | ||
+ | top: 0; | ||
+ | left: 13%; | ||
+ | padding:0 2% 2% 2%; | ||
+ | background-color: white; | ||
+ | } | ||
+ | .content_part{ | ||
+ | width: 20%; | ||
+ | height: auto; | ||
+ | position: fixed; | ||
+ | right: 0%; | ||
+ | background-color:white; | ||
+ | border-radius: 50%; | ||
+ | } | ||
+ | .content_part>a{ | ||
+ | text-decoration: none; | ||
+ | color: white; | ||
+ | font-family: Arial; | ||
+ | font-size: 16px; | ||
+ | display: block; | ||
+ | padding-left: 10% ; | ||
+ | padding-top: 5px; | ||
+ | height: 25px; | ||
+ | width: 70%; | ||
+ | background-color: #0e5386; | ||
+ | float: left; | ||
+ | margin-bottom: 5px; | ||
+ | transition: 0.3s; | ||
+ | } | ||
+ | .menutitle{ | ||
+ | height: 25px; | ||
+ | background-color: #0e5386; | ||
+ | cursor:pointer; | ||
+ | padding-top: 5px; | ||
+ | margin-bottom: 5px; | ||
+ | width:20%; | ||
+ | color: white; | ||
+ | float: right; | ||
+ | } | ||
+ | .little{ | ||
+ | content: ""; | ||
+ | float: left; | ||
+ | margin-top: 6px; | ||
+ | margin-left: 18px; | ||
+ | border-left: 6px solid transparent; | ||
+ | border-right: 6px solid transparent; | ||
+ | border-bottom: 6px solid #fff955; | ||
+ | opacity: 1; | ||
+ | } | ||
+ | .my_submenu{ | ||
+ | margin:0 !important; | ||
+ | padding:0; | ||
+ | border:0; | ||
+ | margin-bottom: 0.5em; | ||
+ | text-align: center; | ||
+ | list-style: none; | ||
+ | } | ||
+ | .my_submenu a{ | ||
+ | display: block; | ||
+ | background-image: linear-gradient(white, #efefef); | ||
+ | text-decoration: none; | ||
+ | background-color:white; | ||
+ | padding: 5px; | ||
+ | font-size: 14px; | ||
+ | font-family: Arial; | ||
+ | color: #3d42e8; | ||
+ | } | ||
+ | .menutitle:hover { | ||
+ | opacity: 0.2; | ||
+ | } | ||
+ | .content_part >a:hover{ | ||
+ | background-color: rgba(14, 83, 134, 0.38); | ||
+ | color: #0e5386; | ||
+ | } | ||
+ | .my_submenu a:hover{ | ||
+ | color: #e7376d; | ||
+ | } | ||
+ | .random{ | ||
+ | position: relative ; | ||
+ | } | ||
+ | .random a{ | ||
+ | position: absolute; | ||
+ | top: -88px; | ||
+ | } | ||
+ | .article p{ | ||
+ | text-align:justify; | ||
+ | font-family: Verdana; | ||
+ | font-size: 18px !important; | ||
+ | line-height: 190%; | ||
+ | z-index:-1; | ||
+ | } | ||
+ | .article h2{ | ||
+ | font-size: 50px; | ||
+ | font-family: Arial; | ||
+ | color: #1e6ed0; | ||
+ | } | ||
+ | .article h3{ | ||
+ | line-height:120%; | ||
+ | display: block; | ||
+ | background-color:white; | ||
+ | padding-top:20px; | ||
+ | font-size: 30px; | ||
+ | font-family: Helvetica; | ||
+ | color: #0783d6; | ||
+ | } | ||
+ | .article h4{ | ||
+ | display: block; | ||
+ | padding-top: 18px; | ||
+ | background-color: white; | ||
+ | font-size: 25px; | ||
+ | font-family: Calibri; | ||
+ | color: #0f9ad6; | ||
+ | } | ||
+ | .article h5{ | ||
+ | display: block; | ||
+ | padding-top: 16px; | ||
+ | background-color: white; | ||
+ | font-size:18px; | ||
+ | font-family: Arial; | ||
+ | color:#3c7ab1; | ||
+ | } | ||
+ | .article img{ | ||
+ | display:block; | ||
+ | margin:0 auto; | ||
+ | } | ||
+ | .article video{ | ||
+ | display:block; | ||
+ | margin:0 auto; | ||
+ | } | ||
− | + | .related{ | |
− | + | margin:0 auto; | |
− | + | color: #fff; | |
+ | font-size: 1em; | ||
+ | position: absolute; | ||
+ | top:3000px; | ||
+ | font: times; | ||
+ | z-index:100; | ||
+ | } | ||
+ | </style> | ||
− | < | + | <script type="text/javascript"> |
− | + | if (document.getElementById){ | |
+ | document.write('<style type="text/css">\n') | ||
+ | document.write('.my_submenu{display: block;}\n') | ||
+ | document.write('</style>\n') | ||
+ | } | ||
+ | function SwitchMenu(obj){ | ||
+ | if(document.getElementById){ | ||
+ | var el = document.getElementById(obj); | ||
+ | var ar = document.getElementById("masterdiv").getElementsByTagName("span"); | ||
+ | if(el.style.display != "block"){ | ||
+ | for (var i=0; i<ar.length; i++){ | ||
+ | if (ar[i].className=="my_submenu") //DynamicDrive.com change | ||
+ | ar[i].style.display = "none"; | ||
+ | } | ||
+ | el.style.display = "block"; | ||
+ | }else{ | ||
+ | el.style.display = "none"; | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | </script> | ||
+ | </head> | ||
+ | <body> | ||
− | <div class=" | + | <div class="content_wrapper"> |
+ | <div class="content_part" id="masterdiv"></div> | ||
+ | <div class="main_part"> | ||
+ | <img src="https://static.igem.org/mediawiki/2016/2/2b/Hzau16_team_paper_main_picture.png" width="168px" height="2503px"> | ||
− | |||
− | |||
− | |||
− | < | + | <div class="article"> |
+ | <h2>Composite Parts</h2> | ||
+ | |||
+ | <table border="1" cellspacing="0" cellpadding="5"> | ||
+ | <tr> | ||
+ | <th>Name</th> | ||
+ | <th>Type</th> | ||
+ | <th>Description</th> | ||
+ | <th>Designer</th> | ||
+ | <th>Length(bp)</th> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td><a href="http://parts.igem.org/Part:BBa_K2012009">BBa_K2012009</a></td> | ||
+ | <td>Generator</td> | ||
+ | <td>a composite of J61100 and CheZ fused with GFP</td> | ||
+ | <td>Jun Li</td> | ||
+ | <td>1440</td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td><a href="http://parts.igem.org/Part:BBa_K2012011">BBa_K2012011</a></td> | ||
+ | <td>Inverter</td> | ||
+ | <td>J23117-Bc345</td> | ||
+ | <td>Pan Chu</td> | ||
+ | <td>528</td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td><a href="http://parts.igem.org/Part:BBa_K2012015">BBa_K2012015</a></td> | ||
+ | <td>Regulatory</td> | ||
+ | <td>PcpcG2-172(removed the constitutive promoter)</td> | ||
+ | <td>Boyao Zhang</td> | ||
+ | <td>172</td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td><a href="http://parts.igem.org/Part:BBa_K2012017">BBa_K2012017</a></td> | ||
+ | <td>Generator</td> | ||
+ | <td>a strong generator of CheZ</td> | ||
+ | <td>Wenqi Huang</td> | ||
+ | <td>705</td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td><a href="http://parts.igem.org/Part:BBa_K2012018">BBa_K2012018</a></td> | ||
+ | <td>Generator</td> | ||
+ | <td>a medium CheZ generator</td> | ||
+ | <td>Wenqi Huang</td> | ||
+ | <td>705</td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td><a href="http://parts.igem.org/Part:BBa_K2012020">BBa_K2012020</a></td> | ||
+ | <td>Generator</td> | ||
+ | <td>a weak CheZ generator</td> | ||
+ | <td>Wenqi Huang</td> | ||
+ | <td>705</td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td><a href="http://parts.igem.org/Part:BBa_K2012022">BBa_K2012022</a></td> | ||
+ | <td>Generator</td> | ||
+ | <td>PcpcG2-172-B0034-CheZ-GS3-GFP</td> | ||
+ | <td>Jun Li </td> | ||
+ | <td>1605</td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td><a href="http://parts.igem.org/Part:BBa_K2012023">BBa_K2012023</a></td> | ||
+ | <td>Generator</td> | ||
+ | <td>PcpcG2-B0034-sfGFP</td> | ||
+ | <td>Jun Li</td> | ||
+ | <td>976</td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td><a href="http://parts.igem.org/Part:BBa_K2012025">BBa_K2012025</a></td> | ||
+ | <td>Generator</td> | ||
+ | <td>PcpcG2-172-B0034-sfGFP</td> | ||
+ | <td>Jun Li</td> | ||
+ | <td>910</td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td><a href="http://parts.igem.org/Part:BBa_K2012008">BBa_K2012008</a></td> | ||
+ | <td>Reporter</td> | ||
+ | <td>CheZ-GSlinker(GGGGS 3 repeat)-E0040</td> | ||
+ | <td>Jun Li</td> | ||
+ | <td>1407</td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td><a href="http://parts.igem.org/Part:BBa_K2012019">BBa_K2012019</a></td> | ||
+ | <td>Generator</td> | ||
+ | <td>PcpcG2-B0034-CheZ-GS3-GFP</td> | ||
+ | <td>Jun Li </td> | ||
+ | <td>1708</td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td><a href="http://parts.igem.org/Part:BBa_K2012026">BBa_K2012026</a></td> | ||
+ | <td>Generator</td> | ||
+ | <td>PcpcG2-B0034-PleD-his6tag</td> | ||
+ | <td>Boyao Zhang</td> | ||
+ | <td>1651</td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td><a href="http://parts.igem.org/Part:BBa_K2012027">BBa_K2012027</a></td> | ||
+ | <td>Generator</td> | ||
+ | <td>PcpcG2-172-B0034-PleD-his6tag</td> | ||
+ | <td>Boyao Zhang</td> | ||
+ | <td>1585</td> | ||
+ | </tr> | ||
+ | </div> | ||
+ | </div> | ||
+ | <div class="related"> | ||
+ | <img src="https://static.igem.org/mediawiki/2016/2/23/T--HZAU-China--%E7%AC%AC.png"> | ||
+ | </div> | ||
− | |||
− | |||
− | |||
</div> | </div> | ||
+ | <div class="related"> | ||
+ | <img src="https://static.igem.org/mediawiki/2016/2/23/T--HZAU-China--%E7%AC%AC.png" /> | ||
</div> | </div> | ||
+ | |||
+ | </body> | ||
</html> | </html> |
Revision as of 16:40, 19 October 2016
Composite Parts
Name | Type | Description | Designer | Length(bp) |
---|---|---|---|---|
BBa_K2012009 | Generator | a composite of J61100 and CheZ fused with GFP | Jun Li | 1440 |
BBa_K2012011 | Inverter | J23117-Bc345 | Pan Chu | 528 |
BBa_K2012015 | Regulatory | PcpcG2-172(removed the constitutive promoter) | Boyao Zhang | 172 |
BBa_K2012017 | Generator | a strong generator of CheZ | Wenqi Huang | 705 |
BBa_K2012018 | Generator | a medium CheZ generator | Wenqi Huang | 705 |
BBa_K2012020 | Generator | a weak CheZ generator | Wenqi Huang | 705 |
BBa_K2012022 | Generator | PcpcG2-172-B0034-CheZ-GS3-GFP | Jun Li | 1605 |
BBa_K2012023 | Generator | PcpcG2-B0034-sfGFP | Jun Li | 976 |
BBa_K2012025 | Generator | PcpcG2-172-B0034-sfGFP | Jun Li | 910 |
BBa_K2012008 | Reporter | CheZ-GSlinker(GGGGS 3 repeat)-E0040 | Jun Li | 1407 |
BBa_K2012019 | Generator | PcpcG2-B0034-CheZ-GS3-GFP | Jun Li | 1708 |
BBa_K2012026 | Generator | PcpcG2-B0034-PleD-his6tag | Boyao Zhang | 1651 |
BBa_K2012027 | Generator | PcpcG2-172-B0034-PleD-his6tag | Boyao Zhang | 1585 |