PedroAlmeida (Talk | contribs) |
PedroAlmeida (Talk | contribs) |
||
(15 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
{{USP-EEL-Brazil}} | {{USP-EEL-Brazil}} | ||
+ | |||
+ | <html> | ||
+ | </div> | ||
+ | <img style="text-align:center;"src="https://static.igem.org/mediawiki/2018/a/a3/T--USP-EEL-Brazil--NOTE.jpg"width=100% > | ||
+ | </br> | ||
+ | </br> | ||
+ | <div class="margin" > | ||
+ | <h4>Daily work</h4></div> | ||
+ | <div class="margin" style=" margin-bottom: 100px; text-align: justify; text-indent: 3%; "> Check out how we developed our project through the year. | ||
+ | </br> | ||
+ | </br> | ||
+ | <!DOCTYPE html> | ||
<html> | <html> | ||
+ | <head> | ||
+ | <meta name="viewport" content="width=device-width, initial-scale=1"> | ||
+ | <style> | ||
+ | .collapsible { | ||
− | + | color: black; | |
+ | cursor: pointer; | ||
+ | padding: 18px; | ||
+ | width: 100%; | ||
− | |||
− | |||
− | + | text-align: left; | |
− | + | outline: none; | |
+ | font-size: 30px; | ||
+ | } | ||
+ | .content { | ||
+ | padding: 0 18px; | ||
+ | display: none; | ||
+ | overflow: hidden; | ||
+ | border: 3px solid #5e87ff; | ||
+ | } | ||
− | + | /* Style tab links */ | |
− | + | .tablink { | |
− | + | border: 3px solid #5e87ff; | |
− | + | color: black; | |
− | + | float: left; | |
− | + | background-color: white; | |
− | + | outline: none; | |
− | + | cursor: pointer; | |
+ | padding: 14px 16px; | ||
+ | font-size: 17px; | ||
+ | width: 25%; | ||
+ | } | ||
+ | .tablink:hover { | ||
+ | border: 3px solid #5e87ff; | ||
+ | background-color: lightblue; | ||
+ | } | ||
+ | |||
+ | /* Style the tab content (and add height:100% for full page content) */ | ||
+ | .tabcontent { | ||
+ | color: black; | ||
+ | display: none; | ||
+ | padding: 100px 20px; | ||
+ | height: 100%; | ||
+ | } | ||
+ | |||
+ | #Project {background-color: ;} | ||
+ | #Interlab {background-color: ;} | ||
+ | #HP {background-color: ;} | ||
+ | </style> | ||
+ | </head> | ||
+ | <body> | ||
+ | |||
+ | <button class="tablink" onclick="openPage('Project', this, 'color')" id="defaultOpen">Project</button> | ||
+ | <button class="tablink" onclick="openPage('LACTT', this, '')" >LACTT</button> | ||
+ | <button class="tablink" onclick="openPage('Interlab', this, '')" >Interlab</button> | ||
+ | <button class="tablink" onclick="openPage('HP', this, '')">Human Practices</button> | ||
+ | |||
+ | <div id="Project" class="tabcontent"> | ||
+ | <h4 class="grey-text heading-weight" align = "left" style="font-size:40px; font-family:Broadway;">Project</h4> | ||
+ | <p>Here you will find how project was developed.</p> | ||
+ | |||
+ | |||
+ | <center> | ||
+ | <embed src="https://static.igem.org/mediawiki/2018/9/93/T--USP-EEL-Brazil--Project.pdf" type="application/pdf" width="100%" height="600px" /> | ||
+ | </center> | ||
+ | <!--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------> | ||
</div> | </div> | ||
+ | <div id="LACTT" class="tabcontent"> | ||
+ | <h4 class="grey-text heading-weight" align = "left" style="font-size:40px; font-family:Broadway;">LACTT</h4> | ||
+ | <p>Here you will find how we characterized the LACTT enzyme.</p> | ||
− | < | + | <center> |
− | < | + | <embed src="https://static.igem.org/mediawiki/2018/5/53/T--USP-EEL-Brazil--PdfLACTT.pdf" type="application/pdf" width="100%" height="600px" /> |
− | + | </center> | |
− | + | ||
− | < | + | <!--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------> |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
</div> | </div> | ||
+ | <div id="Interlab" class="tabcontent"> | ||
+ | <h4 class="grey-text heading-weight" align = "left" style="font-size:40px; font-family:Broadway;">Interlab</h4> | ||
+ | <p>Here you will find how we helped the iGEM database.</p> | ||
+ | |||
+ | <center> | ||
+ | <embed src="https://static.igem.org/mediawiki/2018/5/53/T--USP-EEL-Brazil--Interlab.pdf" type="application/pdf" width="100%" height="600px" /> | ||
+ | </center> | ||
+ | |||
+ | <!--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------> | ||
</div> | </div> | ||
+ | <div id="HP" class="tabcontent"> | ||
+ | <h4 class="grey-text heading-weight" align = "left" style="font-size:40px; font-family:Broadway;">Human Practices</h4> | ||
+ | <p>Here you will find how we interacted with our community.</p> | ||
+ | <center> | ||
+ | <embed src="https://static.igem.org/mediawiki/2018/b/b0/T--USP-EEL-Brazil--HumanPractices.pdf" type="application/pdf" width="100%" height="600px" /> | ||
+ | </center> | ||
+ | |||
+ | <!--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------> | ||
+ | </div> | ||
+ | <script> | ||
+ | function openPage(pageName,elmnt,color) { | ||
+ | var i, tabcontent, tablinks; | ||
+ | tabcontent = document.getElementsByClassName("tabcontent"); | ||
+ | for (i = 0; i < tabcontent.length; i++) { | ||
+ | tabcontent[i].style.display = "none"; | ||
+ | } | ||
+ | tablinks = document.getElementsByClassName("tablink"); | ||
+ | for (i = 0; i < tablinks.length; i++) { | ||
+ | tablinks[i].style.backgroundColor = ""; | ||
+ | } | ||
+ | document.getElementById(pageName).style.display = "block"; | ||
+ | elmnt.style.backgroundColor = color; | ||
+ | |||
+ | } | ||
+ | // Get the element with id="defaultOpen" and click on it | ||
+ | document.getElementById("defaultOpen").click(); | ||
+ | |||
+ | </script> | ||
</body> | </body> | ||
− | </html> | + | </div><center> |
+ | <center></div> | ||
+ | |||
+ | </html><div class="margin"> | ||
+ | |||
+ | {{USP-EEL-Brazil/footer}} |
Latest revision as of 02:24, 18 October 2018
Daily work
Check out how we developed our project through the year.
Project
Here you will find how project was developed.
LACTT
Here you will find how we characterized the LACTT enzyme.
Interlab
Here you will find how we helped the iGEM database.
Human Practices
Here you will find how we interacted with our community.