|
|
(11 intermediate revisions not shown) |
Line 1: |
Line 1: |
| + | {{:Team:Imperial_College_London/Templates/Banner}} |
| + | {{:Team:Imperial_College_London/Templates/Menu}} |
| + | |
| <html> | | <html> |
| <head> | | <head> |
- | <style type="text/css"> | + | <script type="text/javascript"> |
- | | + | function slide1(){ |
- | #p-logo {
| + | $(document).ready(function(){ |
- | position: absolute;
| + | $("img.transit1").fadeOut("slow",function(){ |
- | display: none;}
| + | setTimeout("slide2()",3000); |
- | | + | }); |
- | #search-controls {
| + | $("img.transit2").fadeIn("slow"); |
- | display: none;}
| + | }); |
- | | + | |
- | .firstHeading {
| + | |
- | display: none;}
| + | |
- | | + | |
- | </style>
| + | |
- | </head>
| + | |
- | </html>
| + | |
- | | + | |
- | | + | |
- | | + | |
- | <html xmlns="http://www.w3.org/1999/xhtml">
| + | |
- | <head>
| + | |
- | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
| + | |
- | <title>Imperial iGEM 2011</title>
| + | |
- | <style type="text/css">
| + | |
- | <!--
| + | |
- | body {
| + | |
- | font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
| + | |
- | background: #42413C;
| + | |
- | margin: 0;
| + | |
- | padding: 0;
| + | |
- | color: #000;
| + | |
| } | | } |
- | | + | function slide2(){ |
- | /* ~~ Element/tag selectors ~~ */
| + | $(document).ready(function(){ |
- | ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
| + | $("img.transit2").fadeOut("slow",function(){ |
- | padding: 0;
| + | setTimeout("slide1()",3000); |
- | margin: 0;
| + | }); |
- | }
| + | $("img.transit1").fadeIn("slow"); |
- | h1, h2, h3, h4, h5, h6, p {
| + | }); |
- | margin-top: 0; /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
| + | |
- | padding-right: 15px;
| + | |
- | padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
| + | |
- | } | + | |
- | a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
| + | |
- | border: none;
| + | |
- | padding: 10px;
| + | |
| } | | } |
| + | </script> |
| | | |
- | /* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */ | + | <style type="text/css"> |
- | a:link {
| + | .transit1 |
- | color: #009900;
| + | { |
- | text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
| + | position:relative; |
| + | z-index:2; |
| } | | } |
- | a:visited {
| + | #imageRebecca |
- | color: #006600;
| + | { |
- | text-decoration: none;
| + | position:absolute; |
| + | left: 26px; |
| + | top: 1713px; |
| + | z-index:1; |
| } | | } |
- | a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
| + | #imageChris |
- | text-decoration: none;
| + | { |
| + | position:absolute; |
| + | left: 26px; |
| + | top: 570px; |
| + | z-index:1; |
| } | | } |
| + | </style> |
| | | |
- | /* ~~this fixed width container surrounds the other divs~~ */
| + | </head> |
- | .container {
| + | </html> |
- | width: 960px;
| + | |
- | background: #FFF;
| + | |
- | margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
| + | |
- | }
| + | |
- | | + | |
- | /* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
| + | |
- | .header {
| + | |
- | }
| + | |
- | | + | |
- | /* ~~ These are the columns for the layout. ~~
| + | |
- | | + | |
- | 1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.
| + | |
- | | + | |
- | 2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.
| + | |
- | | + | |
- | 3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.
| + | |
- | | + | |
- | 4) If you prefer your nav on the right instead of the left, simply float these columns the opposite direction (all right instead of all left) and they'll render in reverse order. There's no need to move the divs around in the HTML source.
| + | |
- | | + | |
- | */
| + | |
- | .sidebar1 {
| + | |
- | float: left;
| + | |
- | width: 180px;
| + | |
- | padding-bottom: 10px;
| + | |
- | background-color: #FFF;
| + | |
- | }
| + | |
- | .content {
| + | |
- | | + | |
- | padding: 10px 0;
| + | |
- | width: 780px;
| + | |
- | float: left;
| + | |
- | }
| + | |
- | | + | |
- | /* ~~ This grouped selector gives the lists in the .content area space ~~ */
| + | |
- | .content ul, .content ol {
| + | |
- | padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
| + | |
- | }
| + | |
- | | + | |
- | /* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
| + | |
- | ul.nav {
| + | |
- | list-style: none; /* this removes the list marker */
| + | |
- | border-top: 1px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
| + | |
- | margin-bottom: 15px; /* this creates the space between the navigation on the content below */
| + | |
- | }
| + | |
- | ul.nav li {
| + | |
- | border-bottom: 1px solid #666; /* this creates the button separation */
| + | |
- | }
| + | |
- | ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
| + | |
- | padding: 5px 5px 5px 15px;
| + | |
- | display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
| + | |
- | width: 160px; /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
| + | |
- | text-decoration: none;
| + | |
- | background-color: #FFF;
| + | |
- | }
| + | |
- | ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
| + | |
- | color: #FFF;
| + | |
- | background-color: #009900;
| + | |
- | }
| + | |
- | | + | |
- | /* ~~ The footer ~~ */
| + | |
- | .footer {
| + | |
- | padding: 10px 0;
| + | |
- | background: #CCC49F;
| + | |
- | position: relative;/* this gives IE6 hasLayout to properly clear */
| + | |
- | clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
| + | |
- | }
| + | |
- | | + | |
- | /* ~~ miscellaneous float/clear classes ~~ */
| + | |
- | .fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
| + | |
- | float: right;
| + | |
- | margin-left: 8px;
| + | |
- | }
| + | |
- | .fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
| + | |
- | float: left;
| + | |
- | margin-right: 8px;
| + | |
- | }
| + | |
- | .clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
| + | |
- | clear:both;
| + | |
- | height:0;
| + | |
- | font-size: 1px;
| + | |
- | line-height: 0px;
| + | |
- | }
| + | |
- | body,td,th {
| + | |
- | font-family: Calibri;
| + | |
- | font-size: 14px;
| + | |
- | }
| + | |
- | a:hover {
| + | |
- | text-decoration: underline;
| + | |
- | }
| + | |
- | a:active {
| + | |
- | text-decoration: none;
| + | |
- | }
| + | |
- | h1 {
| + | |
- | color: #090;
| + | |
- | }
| + | |
- | h2 {
| + | |
- | color: #090;
| + | |
- | }
| + | |
- | h3 {
| + | |
- | color: #090;
| + | |
- | }
| + | |
- | -->
| + | |
- | </style></head> | + | |
| | | |
| + | {| style="width:965px;background:#F5F5F5;text-align:justify;font-family: Georgia, serif;color:#4A4A4A;margin-top:25px;" cellspacing="20" |
| + | |colspan="2" style="font-family: Georgia, serif;font-size:2em;color:#A35200;"|Students |
| + | |- |
| + | | style="width:150px; height:199px;"|[[File:ICL_Ming.jpg|150px]] |
| + | |'''Atipat Patharagulpong''' |
| + | Atipat is also known as Ming. (people sometimes call him ATP, which he finds a bit geeky) He is a third year Biochemist and responsible for collaboration, part registry, and Arabidopsis (and also drawing everyone's picture). Apart from Biochemistry, he loves playing the piano, drawing anime, gardening, and also cooking (and eating too). |
| + | |- |
| + | | style="table-layout:fixed; width:150px; height:250px|<html> |
| <body> | | <body> |
- | | + | <img src="https://static.igem.org/mediawiki/2011/1/13/ICL_Chris.jpg" class="transit1" id="imageR1" width="150" /> |
- | <div class="container">
| + | <img src="https://static.igem.org/mediawiki/2011/2/28/ICL_CPChris.jpg" class="transit2" id="imageChris" width="150" /> |
- | <div class="header"><a href="#"><a href="#"></a><a href="https://2011.igem.org/Main_Page" target="_new"><img src="https://static.igem.org/mediawiki/2011/9/93/Igem_logo.jpg" alt="iGEM logo" width="171" height="127" /><a href="#"></a><a href="https://2011.igem.org/Main_Page" target="_new"></a><a href="http://www3.imperial.ac.uk/" target="_new"><img src="https://static.igem.org/mediawiki/2011/1/19/ImperialLogo.png" alt="Imperial logo" width="567" height="147" class="headerImage" /></a><a href="#"></a><a href="https://2011.igem.org/Main_Page" target="_new"><a href="#"></a><a href="#"></a><a href="#"></a>
| + | <script type="text/javascript"> |
- | <!-- end .header -->
| + | setTimeout("slide1()",3000); |
- | </div>
| + | </script> |
- | <div class="sidebar1">
| + | </body> |
- | <ul class="nav">
| + | </html> |
- | <li><a href="https://2011.igem.org/Team:Imperial_College_London">Home</a></li>
| + | |'''Chris Schoene''' |
- | <li><a href="https://2011.igem.org/Team:Imperial_College_London/team">Team</a></li>
| + | Chris is going into his 3rd year of Biochemistry at Imperial College London and our official head of parts characterisation. He has been interested in Synthetic Biology since the last year's team presented their project in October. His other interests include creative writing, martial arts, the classical guitar and traveling. He is German but was born in Colombia and has lived in the USA and Spain. |
- | <li><a href="https://igem.org/Team.cgi?year=2011&team_name=Imperial_College_London">Official Team Profile</a></li>
| + | |- |
- | <li><a href="https://2011.igem.org/Team:Imperial_College_London/Project">Project</a></li>
| + | | style="width:150px; height:199px;"|[[File:ICL_Frank.jpg|150px]] |
- | <li><a href="https://2011.igem.org/Team:Imperial_College_London/Parts">Parts Submitted to the Registry</a></li>
| + | |'''Frank Machin''' |
- | <li><a href="https://2011.igem.org/Team:Imperial_College_London/Modeling">Modeling</a></li>
| + | Frank is halfway through his degree in Biochemistry at Imperial and responsible for the software and hardware. He has been a huge fan of Synthetic Biology ever since he watched The Andromeda Strain and The Day of the Triffids. When he is not working, he likes gaming, loud music, and making short films and he is going to try and include them all in this project! |
- | <li><a href="https://2011.igem.org/Team:Imperial_College_London/Notebook">Notebook</a></li>
| + | |- |
- | <li><a href="https://2011.igem.org/Team:Imperial_College_London/Brainstorming">Brainstorming</a></li>
| + | | style="width:150px; height:199px;"|[[File:ICL_Nina.jpg|150px]] |
- | <li><a href="https://2011.igem.org/Team:Imperial_College_London/Safety">Safety</a></li>
| + | |'''Jiayue Zhu''' |
- | <li><a href="https://2011.igem.org/Team:Imperial_College_London/Attributions">Attributions</a></li>
| + | We generally call Jiayue Nina to make our lives easier since nobody can pronounce her name correctly. She is a 2nd year bioengineer and very glad to be here with the team and to do some amazing fancy stuff. She is in charge of all media-related issues. |
- | </ul>
| + | |- |
- | <p> </p>
| + | | style="width:150px; height:199px;"|[[File:ICL_Nick.jpg|150px]] |
- | <!-- end .sidebar1 --></div>
| + | |'''Nicolas Kral''' |
- | <!-- end .container -->
| + | Nick has just finished the second year of the Bsc Biology degree at Imperial. He has been attracted to synthetic biology because of the immense potential and creativity that is hidden in it, yet still following the strict scientific thinking. His hobbies include everything to do with Nature and the great outdoors, hiking, climbing, caving and just the joy of being out. |
- | </div> | + | |- |
| + | | style="width:150px; height:199px;"|[[File:ICL_Nikki.jpg|150px]] |
| + | |'''Nikki Kapp''' |
| + | Nikki just finished her undergrad in Biochemistry and is responsible for cloning strategies and outreach/PR. She wants to try put what she's learnt into practice at iGEM. Her life isn't all about science, she is passionate about music and travel and hopes to do a round the world trip as well as complete the Mongol Rally. |
| + | |- |
| + | | style="width:150px; height:199px;"|<html> |
| + | <body> |
| + | <img src="https://static.igem.org/mediawiki/2011/3/37/ICL_Rebecca.jpg" class="transit1" id="imageR1" width="150" /> |
| + | <img src="https://static.igem.org/mediawiki/2011/6/64/ICL_CPRebecca.jpg" class="transit2" id="imageRebecca" width="150" /> |
| + | <script type="text/javascript"> |
| + | setTimeout("slide1()",3000); |
| + | </script> |
| </body> | | </body> |
| </html> | | </html> |
| + | |'''Rebekka Bauer''' |
| + | Rebekka just finished a degree in Biology. She is responsible for human practices and has the job of looking after supplies and protocols in the lab. She likes the creative aspect of synthetic biology but also how useful it can be in tackling problems in all kinds of areas. Outside of Biology, she is interested in photography, travelling and cooking. |
| + | |- |
| + | | style="width:150px; height:199px;"|[[File:ICL_Si.jpg|150px]] |
| + | |'''Si Chen''' |
| + | Si just graduated from Biomedical Engineering Department of Imperial College London. She is responsible for modelling strategies. She is looking forward to delivering some solid solution that can be applied in reality in the future. |
| + | |- |
| + | | style="width:150px; height:199px;"|[[File:ICL_Yuanwei.jpg|150px]] |
| + | |'''Yuanwei Li''' |
| + | Yuanwei just finished the 2nd year of his biomedical engineering degree. He is our wiki mastermind. He probably wants to specialise in the mechanical aspect of bioengineering, dealing with stuff like biomechanics and similar things. He is also quite interested about going into the area of biomedical imaging. In his free time, he likes to play his accordion and he loves to travel to different places and explore the world. He is looking forward to delivering something amazing on this iGEM project. |
| + | |} |