Line 183: | Line 183: | ||
</style> | </style> | ||
+ | |||
+ | <ul class='timeline'> | ||
+ | <li class="year first">2013</li> | ||
+ | <li class='event offset-first'> | ||
+ | Something amazing happened today, but it's a secret | ||
+ | </li> | ||
+ | <li class='event' href="#"> | ||
+ | Timeline.css is <b>dynamic</b>, <b>responsive</b> and optimized to <b>demonstrate events</b> in your life in a <b>simple and clear</b> way | ||
+ | </li> | ||
+ | <li class="event"> | ||
+ | <a href="http://christian-fei.com" title="christian fei"> | ||
+ | made with <3 by <img src="https://s3-eu-west-1.amazonaws.com/cf.img/var/face.svg" alt="christian fei"/> | ||
+ | </a> | ||
+ | </li> | ||
+ | <li class="event"> | ||
+ | <a href="https://codepen.io/christian-fei/pen/BJily"> | ||
+ | Open source project on codepen.io | ||
+ | <img src="http://davidwalsh.name/demo/codepenLogo.png" alt=""/> | ||
+ | </a> | ||
+ | </li> | ||
+ | <li class='event'> | ||
+ | Look, a sleepy kitten: <br/> | ||
+ | <img src="http://ih2.redbubble.net/image.10311838.0354/flat,550x550,075,f.jpg"/> | ||
+ | <a href='http://ih2.redbubble.net/image.10311838.0354/flat,550x550,075,f.jpg'>©</a> | ||
+ | </li> | ||
+ | <li class="year">2012</li> | ||
+ | <li class="event offset-first"> | ||
+ | <p>To infinity ... </p> | ||
+ | <img class='centered' src="http://upload.wikimedia.org/wikipedia/en/7/75/Buzz-lightyear-toy-story-3-wallpaper.jpg" alt=""/> | ||
+ | <a href='http://upload.wikimedia.org/wikipedia/en/7/75/Buzz-lightyear-toy-story-3-wallpaper.jpg'>©</a> | ||
+ | </li> | ||
+ | <li class="event"> | ||
+ | <p>... and beyond!</p> | ||
+ | <img class='centered' src="https://brandstyle.com.br/wp-content/uploads/2012/05/Woody-7.jpg" alt=""/> | ||
+ | <a href='https://brandstyle.com.br/wp-content/uploads/2012/05/Woody-7.jpg'>©</a> | ||
+ | </li> | ||
+ | </ul> | ||
<style> | <style> | ||
+ | @import "compass/css3"; | ||
+ | |||
+ | /* v2.0 */ | ||
+ | /* v2.0 */ | ||
+ | /* v2.0 */ | ||
+ | /* v2.0 */ | ||
+ | /* v2.0 */ | ||
+ | $text-color: rgb(77, 77, 77); | ||
+ | $bg-entry: rgb(80,80,80); | ||
+ | |||
+ | *,*:after,*:before{-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;} | ||
− | |||
− | |||
− | |||
− | |||
− | |||
.timeline { | .timeline { | ||
− | + | margin: 0px auto; | |
− | + | max-width: 40em; | |
− | + | overflow:hidden; | |
− | + | height: auto; | |
+ | position: relative; | ||
+ | padding:0px; | ||
+ | list-style-type:none; | ||
+ | |||
+ | /*thanks to | ||
+ | https://twitter.com/JacoKoster | ||
+ | */ | ||
+ | background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAEElEQVQIW2NMTEz8z8gABAAPKwIlXWq1kgAAAABJRU5ErkJggg==); | ||
+ | background-repeat:repeat-y; | ||
+ | background-position:50% 0; | ||
+ | |||
+ | |||
− | /* | + | .year { |
− | . | + | background: $bg-entry; |
− | + | font-size: 3em; | |
− | + | max-width: 4em; | |
− | width: | + | clear: both; |
− | + | margin: 1em auto 2em; | |
− | + | color: white; | |
− | + | border-radius: 30% / 100%; | |
− | + | text-align: center; | |
− | + | margin-top: 2em; | |
− | + | ||
+ | &:first-of-type { | ||
+ | margin-top: 0 !important; | ||
+ | } | ||
+ | } | ||
+ | |||
+ | /* | ||
+ | elements 1,(2),3,(4), etc. | ||
+ | elements in brackets inherit these properties, some are overridden below (2n) | ||
+ | beginning at 0 | ||
+ | */ | ||
+ | .event { | ||
+ | position:relative; | ||
+ | text-align:center; | ||
+ | float: right; | ||
+ | clear: right; | ||
+ | width: 45%; | ||
+ | margin: 1em 2.5%; | ||
+ | |||
+ | border-radius: 5px; | ||
+ | list-style-type: none; | ||
+ | display: block; | ||
+ | padding: .4em; | ||
+ | background: white; | ||
+ | z-index: 15; | ||
+ | |||
+ | color: $text-color; | ||
+ | border: 1px solid lighten($bg-entry,30%); | ||
+ | text-decoration: none; | ||
− | + | -webkit-transition: background .15s linear; | |
− | . | + | -moz-transition: background .15s linear; |
− | + | -ms-transition: background .15s linear; | |
− | + | -o-transition: background .15s linear; | |
− | background- | + | transition: background .15s linear; |
− | width: | + | |
− | } | + | &.featured { |
+ | width: 95% !important; | ||
+ | background: lighten(#ccc,11%); | ||
+ | |||
+ | &:after, &:before { | ||
+ | display: none; | ||
+ | } | ||
+ | } | ||
+ | |||
+ | @media all and (max-width: 600px) { | ||
+ | width: 85%; | ||
+ | } | ||
+ | |||
+ | &.offset-first { | ||
+ | margin-top: -1.5em!important; | ||
+ | } | ||
+ | |||
+ | img { | ||
+ | margin-top: 10px; | ||
+ | max-width: 100%; | ||
+ | } | ||
− | + | &:hover { | |
− | + | background: lighten($bg-entry,60%); | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | &:after { | |
− | + | background: $bg-entry; | |
− | left: | + | } |
+ | } | ||
+ | |||
+ | &:nth-of-type(2n) { | ||
+ | float: left; | ||
+ | clear: left; | ||
+ | @media all and(min-width:600px){ | ||
+ | margin-top:2em; | ||
+ | } | ||
+ | } | ||
+ | |||
+ | &:after { | ||
+ | @media all and (min-width: 650px) { | ||
+ | display: block; | ||
+ | content: ' '; | ||
+ | height: 9px; width: 9px; | ||
+ | background: lighten($bg-entry,30%); | ||
+ | border-radius: 50%; | ||
+ | position:absolute; | ||
+ | left: -5%; | ||
+ | top: 1.5em; | ||
+ | border: 2px solid white; | ||
+ | } | ||
+ | } | ||
+ | |||
+ | &:nth-child(2n):after { | ||
+ | right: -5%; | ||
+ | /* reset the standard declaration I defined before*/ | ||
+ | left: auto; | ||
+ | } | ||
+ | } | ||
} | } | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
+ | |||
+ | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | + | ||
− | + | ||
− | + | .padd { | |
− | + | display:block;padding: 10px; | |
− | + | &.center { | |
− | + | text-align:center; | |
− | + | ||
− | + | ||
} | } | ||
} | } | ||
− | |||
− | |||
− | |||
− | + | .ad { | |
− | + | display: block; | |
− | + | background: rgba(50,50,50,0.5); | |
− | + | color: white; | |
− | + | text-decoration: none; | |
− | + | text-align:center; | |
− | + | padding: 15px; | |
− | + | font-weight: 800; | |
− | + | border-bottom: 2px solid black; | |
− | + | border-top: 2px solid black; | |
− | + | } | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
+ | a{ | ||
+ | text-decoration:none; | ||
+ | color:black; | ||
+ | } | ||
+ | </style> | ||
Revision as of 07:47, 31 October 2017
Genehackers is a recognized undergraduate student association with the University of Chicago. Founded in 2013, our organization aims to raise awareness about synthetic biology through community and research. We have competed in the iGem competition since the founding of our group. Our team has created innovative projects that bring synthetic biology to the center of the laboratory experience.
This year, UChicago Genehackers has set out to design the first yeast centromeric plasmid for Pichia pastors.
Our team has already made significant strides towards creating the proposed centromeric plasmid vector. We have grown psB1C3mut in LB+CAM (chloramphenicol), psD000 in LB+CAM and drop-out arginine plates and psD001 in LB+CAM. Additionally, we have amplified five potential centromeric regions in total from the chromosomal DNA of Pichia pastors.
Although GeneHackers has made significant progress in our experiment, we still have some parts of our experiment that have not been achieved yet. We need to Gibson assembly various chromosomal sequences into psD001and perform assays of this plasmid in Pichia pastoris. Furthermore, if we are successful in creating the centromeric plasmid, we hope to incorporate the plasmid within the bioengineering and the industrial fields. Here, we want to test the efficiency and practicality of our plasmid within human environments. After these rounds of experimentation, we want to come back to the laboratory and improve our research with this plasmid. Hopefully, we will be able to work toward a final centromeric plasmid that will improve the course of scientific research.
- 2013
- Something amazing happened today, but it's a secret
- Timeline.css is dynamic, responsive and optimized to demonstrate events in your life in a simple and clear way
- made with <3 by
- Open source project on codepen.io
-
Look, a sleepy kitten:
© - 2012
-
To infinity ...
© -
... and beyond!
©