|
|
(45 intermediate revisions not shown) |
Line 13: |
Line 13: |
| @import "/wiki/skins/igem/main.css?270"; | | @import "/wiki/skins/igem/main.css?270"; |
| /*]]>*/</style> | | /*]]>*/</style> |
| + | |
| <link rel="stylesheet" type="text/css" media="screen, projection" href="https://2012.igem.org/wiki/skins/common/shared.css?270" /> | | <link rel="stylesheet" type="text/css" media="screen, projection" href="https://2012.igem.org/wiki/skins/common/shared.css?270" /> |
| <link rel="stylesheet" type="text/css" media="screen, projection" href="https://2012.igem.org/wiki/skins/igem/main.css?270" /> | | <link rel="stylesheet" type="text/css" media="screen, projection" href="https://2012.igem.org/wiki/skins/igem/main.css?270" /> |
Line 66: |
Line 67: |
| </script> | | </script> |
| <script type="text/javascript" src="https://2012.igem.org/wiki/skins/common/wikibits.js?270"><!-- wikibits js --></script> | | <script type="text/javascript" src="https://2012.igem.org/wiki/skins/common/wikibits.js?270"><!-- wikibits js --></script> |
| + | |
| <!-- Head Scripts --> | | <!-- Head Scripts --> |
| <script src="https://2012.igem.org/wiki/skins/common/ajax.js?270"></script> | | <script src="https://2012.igem.org/wiki/skins/common/ajax.js?270"></script> |
| <script src="https://2012.igem.org/wiki/skins/common/mwsuggest.js?270"></script> | | <script src="https://2012.igem.org/wiki/skins/common/mwsuggest.js?270"></script> |
- | <script type="text/javascript" src="https://2012.igem.org/wiki/index.php?title=-&action=raw&gen=js&useskin=igem"><!-- site js --></script> | + | <script type="text/javascript" src="https://2012.igem.org/wiki/index.php? title=-&action=raw&gen=js&useskin=igem"><!-- site js --></script> |
| <!-- jQuery Javascript --> | | <!-- jQuery Javascript --> |
| <script type="text/javascript" src ="https://2012.igem.org/common/jquery-latest.min.js"></script> | | <script type="text/javascript" src ="https://2012.igem.org/common/jquery-latest.min.js"></script> |
| <script type="text/javascript" src ="https://2012.igem.org/common/tablesorter/jquery.tablesorter.min.js"></script> | | <script type="text/javascript" src ="https://2012.igem.org/common/tablesorter/jquery.tablesorter.min.js"></script> |
| + | |
| <link rel="stylesheet" type="text/css" href="https://2012.igem.org/common/tablesorter/themes/groupparts/style.css" /> | | <link rel="stylesheet" type="text/css" href="https://2012.igem.org/common/tablesorter/themes/groupparts/style.css" /> |
| <link rel="stylesheet" type="text/css" href="https://2012.igem.org/common/table_styles.css" /> | | <link rel="stylesheet" type="text/css" href="https://2012.igem.org/common/table_styles.css" /> |
| <link rel="stylesheet" type="text/css" href="https://2012.igem.org/forum/forum_styles.css" /> | | <link rel="stylesheet" type="text/css" href="https://2012.igem.org/forum/forum_styles.css" /> |
| <script type="text/javascript" src ="https://2012.igem.org/forum/forum_scripts.js"></script> | | <script type="text/javascript" src ="https://2012.igem.org/forum/forum_scripts.js"></script> |
| + | |
| + | <!-- slide script starts here --> |
| | | |
| <script type="text/javascript"> | | <script type="text/javascript"> |
Line 83: |
Line 88: |
| | | |
| if ( $current.length == 0 ) $current = $('#slides IMG:last'); | | if ( $current.length == 0 ) $current = $('#slides IMG:last'); |
- |
| |
| var $next = $current.next().length ? $current.next() | | var $next = $current.next().length ? $current.next() |
| : $('#slides IMG:first'); | | : $('#slides IMG:first'); |
- |
| |
- | var $n_sibs = $current.siblings();
| |
- | var rndNum = Math.floor(Math.random() * $n_sibs.length );
| |
- | var $next = $( $n_sibs[ rndNum ] );
| |
- |
| |
- | $current.addClass('previous');
| |
| | | |
| + | $current.addClass('previous'); |
| $next.css({opacity: 0.0}) | | $next.css({opacity: 0.0}) |
| .addClass('current') | | .addClass('current') |
Line 98: |
Line 97: |
| $current.removeClass('current previous'); | | $current.removeClass('current previous'); |
| }); | | }); |
| + | |
| + | var $navicurrent = $('.progress li.current'); |
| + | if($navicurrent.length ==0) $navicurrent = $('.progress li:last'); |
| + | var $navinext = $navicurrent.next().length ? $navicurrent.next() : $('.progress li:first'); |
| + | $navicurrent.addClass('previous'); |
| + | $navicurrent.removeClass('current previous'); |
| + | $navinext.addClass('current').animate({opacity: 1.0}, 2500, function() { |
| + | }); |
| + | |
| + | $('.progress li').click(function(){ |
| + | |
| + | var $ncurrent = $(this); |
| + | $('.progress li').removeClass('current').removeClass('previous'); |
| + | $('#slides IMG').removeClass('current').removeClass('previous'); |
| + | $ncurrent.addClass('current'); |
| + | var ncurrentindex = $ncurrent.index(); |
| + | if( ncurrentindex=== 0) $current = $('#slides IMG:first'); |
| + | if( ncurrentindex=== 1) $current = $('#slides IMG:eq(1)'); |
| + | if( ncurrentindex=== 2) $current = $('#slides IMG:eq(2)'); |
| + | if( ncurrentindex=== 3) $current = $('#slides IMG:last'); |
| + | $current.addClass('current'); |
| + | |
| + | }); |
| + | |
| } | | } |
| $(function() { | | $(function() { |
Line 103: |
Line 126: |
| }); | | }); |
| | | |
- | </script>
| + | $(document).ready(function(){ |
| | | |
| + | $('a.lightbox').click(function(e) { |
| + | $('body').css('display', 'inherit'); // hide scrollbars! |
| + | |
| + | $('<div id="overlay"></div>') |
| + | .css('opacity', '0') |
| + | .animate({'opacity': '0.7'}, 'slow') |
| + | .click(function(){ |
| + | removeLightbox(); |
| + | }) |
| + | .appendTo('body'); |
| + | |
| + | $('<div id="lightbox"></div>') |
| + | .hide() |
| + | .appendTo('body'); |
| + | |
| + | $('<img>') |
| + | .attr('src', $(this).attr('href')) |
| + | .load(function() { |
| + | positionLightboxImage(); |
| + | }) |
| + | .click(function() { |
| + | removeLightbox(); |
| + | }) |
| + | .appendTo('#lightbox'); |
| + | |
| + | return false; |
| + | }); |
| + | }); |
| + | |
| + | function positionLightboxImage() { |
| + | var top = ($(window).height() - $('#lightbox').height())/2; |
| + | var left = ($(window).width() - $('#lightbox').width())/2; |
| + | |
| + | $('#lightbox') |
| + | .css({ |
| + | 'top': top, |
| + | 'left':left-80 |
| + | }) |
| + | .fadeIn(); |
| + | } |
| + | |
| + | function removeLightbox() { |
| + | |
| + | $('#overlay, #lightbox') |
| + | .fadeOut('slow', function() { |
| + | $(this).remove(); |
| + | $('body').css('overflow-y', 'auto'); // show scrollbars! |
| + | }); |
| + | } |
| + | |
| + | |
| + | </script> |
| + | <!-- slide script ends here --> |
| <style type="text/css"> | | <style type="text/css"> |
| <!-- beginning of slider style --> | | <!-- beginning of slider style --> |
Line 112: |
Line 188: |
| min-height:100%; /* real browsers */ | | min-height:100%; /* real browsers */ |
| } | | } |
- | #content { z-index: 1; background-color: transparent; border: none; padding: 0; margin: 0; width: 100%; overflow: hidden; margin-top: -15px !important; | + | #content { z-index: 1; background-color: transparent; border: none; padding: 0; margin: 0; width: 100%; overflow: hidden; top:-3px; margin-top: -45px !important; |
| height:auto !important; /* real browsers */ | | height:auto !important; /* real browsers */ |
| height:100%; /* IE6: treaded as min-height*/ | | height:100%; /* IE6: treaded as min-height*/ |
Line 129: |
Line 205: |
| #menubar.right-menu { width:300px; display:block; float:left; margin-top:-80px; border: none;} | | #menubar.right-menu { width:300px; display:block; float:left; margin-top:-80px; border: none;} |
| .right-menu ul { border: none; width: 300px;} | | .right-menu ul { border: none; width: 300px;} |
- | #footer-box { background-color: #216085; border: none; width: 100%; margin: -10px auto 0 auto; padding: 20px 0;} | + | #footer-box { background-color: #216085; border: none; width: 850px; height: 30px; margin: -10px auto 0 auto; padding: 20px 0;} |
| .visualClear { display: none; } | | .visualClear { display: none; } |
| #footer { border: none; width: 850px; margin: 0 auto; padding: 0;} | | #footer { border: none; width: 850px; margin: 0 auto; padding: 0;} |
Line 141: |
Line 217: |
| h3#siteSub { display: none;} | | h3#siteSub { display: none;} |
| #contentSub {display: none;} | | #contentSub {display: none;} |
- | p:first-child { display: none;} | + | p:first-child { display: block;} |
| h1{border:none; width: 100%; clear: both;} | | h1{border:none; width: 100%; clear: both;} |
- | <!-- end of slides style -->
| |
- | </style>
| |
- | <style>
| |
| | | |
- | /* Hiding default wiki displays: Credits to TU-Delft and Groningen for the code! */
| |
| #globalWrapper { | | #globalWrapper { |
- | background-color: transparent;
| + | position: relative; |
- | border: none;
| + | font-size: 127%; |
- | margin: 0; | + | width: 850px //100%; |
- | padding: 0; | + | margin: 0; |
| + | padding: 0; |
| + | padding-bottom: 10px; |
| + | # background:url(https://static.igem.org/mediawiki/2012/c/cc/UCD_Bg_1.jpg); |
| + | # background-repeat: no-repeat; |
| + | # background-attachment: fixed; |
| + | # background-size:100% auto; |
| } | | } |
| | | |
- | .partsreglink:link {
| + | #main-content { |
- | color:#33ee33; | + | position: relative; |
| + | width: 850px; |
| + | margin: 0 auto; |
| + | padding: 5px 5px 5px 5px;; |
| + | background: transparent; |
| + | color: black; |
| + | # border-left: 1px solid #ffffff; |
| + | # border-right: 1px solid #ffffff; |
| + | # line-height: 1.5em; |
| } | | } |
- | .partsreglink:visited { | + | |
- | color:#33ee33; | + | |
| + | body { |
| + | background-color: rgba(255,255,255,1); |
| + | background-image: url('https://static.igem.org/mediawiki/2012/c/cc/UCD_Bg_1.jpg'); |
| + | background-size: 100%; |
| + | background-repeat: no-repeat; |
| + | background-attachment:fixed; |
| + | |
| + | color: black; |
| + | font: x-small sans-serif; |
| + | margin: 0; |
| + | padding: 0; |
| + | # height:100%; |
| } | | } |
| | | |
- | #top-section { | + | |
- | height: 20px;
| + | #topmenubar { |
- | background-color: rgba(255,255,255,0);
| + | position: relative; |
- | margin-left: auto;
| + | white-space: nowrap; |
- | width: 99%; | + | top: -3px; |
- | margin-right: auto;
| + | width: 850px; |
- | margin-bottom: 10px;
| + | z-index: 5; |
- | margin-top: 3px;
| + | font-family: sans-serif; |
- | border-bottom: 20px;
| + | font-size: 80%; |
| + | line-height: 1em; |
| } | | } |
| | | |
- | #p-logo {
| + | .topleft-menu, .topleft-menu a { |
- | height:0px;
| + | left: 0px; |
- | overflow:hidden;
| + | text-align: right; |
- | display:none;
| + | text-transform: lowercase; |
| } | | } |
- | .firstHeading { | + | |
- | display: none;
| + | .topleft-menu:hover { |
| + | color: white; |
| + | background-color: #bbbbbb |
| + | |
| } | | } |
- | #footer-box {
| + | .topright-menu, .right-menu a { |
- | background-color: transparent;
| + | right: 0px; |
- | border: none;
| + | text-align: right; |
- | width: 1000px;
| + | color: white; |
- | margin: 0 auto;
| + | |
- | padding: 0;
| + | |
| } | | } |
- | #search-controls { | + | #topmenubar ul { |
- | display: none;
| + | color: #555555; |
| + | list-style: none; |
| } | | } |
- | .left-menu {
| + | #topmenubar li { |
- | width: 400px;
| + | display: inline; |
- | display:block;
| + | position: relative; |
- | float:left;
| + | cursor: pointer; |
- | border: none;
| + | padding-left: 0px; |
| + | padding-right: 0px; |
| } | | } |
- | #menubar.right-menu {
| + | .topleft-menu li a { |
- | width:300px;
| + | padding: 0px 7px 0px 0px; |
- | display:block;
| + | |
- | float:left;
| + | |
- | margin-top:-80px;
| + | |
- | border: none;
| + | |
- | color: #000
| + | |
| } | | } |
| + | .topleft-menu .selected { |
| + | # color: white; |
| + | } |
| + | #.left-menu .selected:hover { |
| + | # color: #5555FF; |
| + | #} |
| | | |
| + | .topleft-menu:hover a { |
| + | color: white; |
| + | } |
| + | #newnavi { |
| + | position:relative; |
| + | height:42px; |
| + | width: 850px; |
| + | margin-left: -2px; |
| + | display:block; |
| + | background:transparent; |
| + | } |
| + | #newnavi .newmenu { |
| + | display:inline; |
| + | overflow:hidden; |
| + | padding:0px; |
| + | margin:2px solid transparent; |
| + | list-style-type:none; |
| + | height:24px; |
| + | width: 107px; |
| + | list-style-image:none; |
| + | background: #004b85; |
| + | } |
| + | #newnavi .newmenu li { |
| + | float:right; |
| + | background: #004b85; |
| + | text-align:center; |
| + | } |
| + | #newnavi .newmenu .selected { |
| + | background: #ba9108; |
| + | } |
| + | #newnavi .newmenu li a { |
| + | text-align:center; vertical-align:middle; width:86px; padding:5px 10px 5px 10px; display:block; color:#fff; text-decoration:none; font:14px arial, verdana, sans-serif; font-weight: bold; |
| + | } |
| + | #newnavi .newmenu li:hover a { |
| + | text-decoration:none; |
| + | } |
| + | #newnavi .newmenu ul { |
| + | position:absolute; left:-9999px; top:-9999px; list-style-type:none; list-style-image:none; margin:0px; border:0px; padding:0px; background: #05bcea; |
| + | } |
| + | #newnavi .newmenu li:hover { |
| + | position:relative; background: #05bcea; |
| + | } |
| + | #newnavi .newmenu li:hover ul { |
| + | left:0px; top:26px; background: #05bcea; width:150px; opacity:1.0 ; z-index:4; |
| + | } |
| + | #newnavi .newmenu li:hover ul li { |
| + | |
| + | background: #05bcea; |
| + | } |
| + | #newnavi .newmenu li:hover ul li a { |
| + | text-align:left; padding:5px 0px 5px 0px;display:block; font-size:12px; width:150px; text-indent:10px; color:#444; |
| + | background-color: #05bcea; text-decoration:none; |
| + | } |
| + | #newnavi .newmenu li:hover ul li a:hover { |
| + | background: #05bcea; color:#ffffff; width:150px; |
| + | } |
| | | |
- | hr{
| + | |
- | margin:50px 0; | + | #newnavi .newmenu li ul li ul { |
- | color:#eee;
| + | height:40px; |
| + | left:299px; |
| + | top:-26px; |
| + | margin: 0; |
| + | padding: 0; |
| + | list-style: none; |
| + | width: 150px; |
| + | position:absolute; |
| + | display:none; |
| } | | } |
| | | |
- | ul li.active{ /*IE6 hack- hide effect from that browser*/ | + | #newnavi .newmenu li ul li ul li { |
- | _visibility: hidden; /*IE6 rule*/
| + | position:relative; |
| + | background: #05bcea; |
| + | width: 150px; |
| } | | } |
| | | |
| + | #newnavi .newmenu li ul li ul li a { |
| | | |
- | body {
| + | padding:5px 0px 5px 0px;display:block; font-size:12px; width:100px; text-indent:10px; color:#444; |
- | background-color: #ffffff;
| + | background-color: #05bcea; text-decoration:none; |
- | color: black;
| + | |
- | font: x-small sans-serif;
| + | |
- | margin: 0;
| + | |
- | padding: 0;
| + | |
| } | | } |
| | | |
- | #globalWrapper { | + | #newnavi .newmenu li ul li:hover ul { |
- | position: relative;
| + | display:block; |
- | font-size: 127%;
| + | color:#ffffff; |
- | width: 100%;
| + | width:150px; |
- | margin: 0;
| + | background:transparent; |
- | padding: 0;
| + | |
- | padding-bottom: 10px;
| + | |
- | background-color: #ffffff;
| + | |
| } | | } |
| | | |
- | #main-content { | + | #newnavi .newmenu li ul li:hover ul li { |
- | position: relative;
| + | top:-25px; |
- | width: 850px;
| + | left:150px; |
- | margin: 0 auto;
| + | margin-bottom:-1px; |
- | padding: 5px 5px 5px 5px;;
| + | height:26px; |
- | background: white;
| + | |
- | color: black;
| + | |
- | border-left: 1px solid #ffffff;
| + | |
- | border-right: 1px solid #ffffff;
| + | |
- | line-height: 1.5em;
| + | |
- | # z-index: 2;
| + | |
| } | | } |
| | | |
- | #nav { | + | #newnavi .newmenu li ul li:hover ul li a { |
- | position: relative;
| + | |
- | height: 24px;
| + | |
- | width: 850px;
| + | |
- | # margin-left: 10px;
| + | |
- | # margin: 0 auto 0 auto;
| + | |
- | # border-left: 1px solid #444444;
| + | |
- | # border-right: 1px solid #444444;
| + | |
- | # border-bottom: 1px solid #444444;
| + | |
| | | |
- | background-color: white;
| + | padding:5px 0px 5px 0px;display:block; font-size:12px; text-indent:10px; color:#444; |
- | # border: 0px solid black;
| + | background-color: #05bcea; text-decoration:none;border:0px solid; |
- | # height: 0px;
| + | } |
- | # width: 850px;
| + | |
- | # left: 220px;
| + | |
- | # top: 40px; | + | |
- | # position: relative;}
| + | |
| | | |
- | #nav ul {
| |
- |
| |
- | list-style-type:none;
| |
- | margin:0;
| |
- | padding:0;
| |
- | overflow:hidden;}
| |
- | #nav ul .groupb {
| |
- | float: right;
| |
- | padding: 0 .0em;}
| |
- |
| |
- | #nav a:hover, #nav a:focus {
| |
- | opacity:0.7;
| |
- | }
| |
| | | |
| #slides { | | #slides { |
| position:relative; | | position:relative; |
- | height:350px; | + | height:280px; |
| width: 840px | | width: 840px |
| | | |
Line 302: |
Line 434: |
| #slides .previous { | | #slides .previous { |
| z-index:2; | | z-index:2; |
| + | } |
| + | |
| + | .progress { |
| + | |
| + | margin-top:-270px; |
| + | margin-left:20px; |
| + | position:absolute; |
| + | |
| + | } |
| + | |
| + | .progress li{ |
| + | border:1px solid rgba(0,0,0,0.9); |
| + | border-radius:3px; |
| + | margin-left: 5px; |
| + | float:left; |
| + | display:block; |
| + | position:relative; |
| + | z-index:10; |
| + | background-color:rgba(255,255,255,0.4); |
| + | } |
| + | |
| + | .progress li a{ |
| + | padding-left: 6px; |
| + | padding-right: 6px; |
| + | } |
| + | |
| + | .progress li a:hover { |
| + | text-decoration:none; |
| + | } |
| + | |
| + | .progress .current { |
| + | background-color:white; |
| + | } |
| + | |
| + | #myleftrightbox |
| + | { |
| + | position:relative; |
| + | width:850px; |
| + | float:left; |
| + | background-color:transparent; |
| + | margin-top: 0px; |
| + | margin-left:3.75px solid transparent; |
| + | margin-right:3.75px solid transparent; |
| + | border-radius: 4px; |
| + | padding: 0px; |
| + | font: sans-serif; |
| + | font-size: 13px; |
| + | color: white; |
| + | } |
| + | |
| + | #myleftrightbox .fourboxes |
| + | { |
| + | width:191px; |
| + | float:left; |
| + | background-color:rgba(143,143,143,0.7); |
| + | margin-top: 15px; |
| + | margin-left:3.75px solid #e8eff1; |
| + | margin-right:3.75px solid #e8eff1; |
| + | margin-bottom:0px; |
| + | border-radius: 4px; |
| + | padding: 8.5px; |
| + | font: sans-serif; |
| + | font-size: 13px; |
| + | color: white; |
| + | } |
| + | |
| + | #myleftrightbox .fourboxes-1 |
| + | { |
| + | width:191px; |
| + | float:left; |
| + | background-color:rgba(143,143,143,0.7); |
| + | margin-top: 15px; |
| + | margin-left:3.75px solid #e8eff1; |
| + | margin-right:3.75px solid #e8eff1; |
| + | margin-bottom:0px; |
| + | border-radius: 4px; |
| + | padding: 8.5px; |
| + | font: sans-serif; |
| + | font-size: 13px; |
| + | color: white; |
| + | } |
| + | |
| + | #myleftrightbox .fourboxes-2 |
| + | { |
| + | width:191px; |
| + | float:left; |
| + | background-color:rgba(143,143,143,0.7); |
| + | margin-top: 15px; |
| + | margin-left:3.75px solid #e8eff1; |
| + | margin-right:3.75px solid #e8eff1; |
| + | margin-bottom:0px; |
| + | border-radius: 4px; |
| + | padding: 8.5px; |
| + | font: sans-serif; |
| + | font-size: 13px; |
| + | color: white; |
| + | } |
| + | |
| + | #myleftrightbox .fourboxes-3 |
| + | { |
| + | width:191px; |
| + | float:left; |
| + | background-color:rgba(143,143,143,0.7); |
| + | margin-top: 15px; |
| + | margin-left:3.75px solid #e8eff1; |
| + | margin-right:3.75px solid #e8eff1; |
| + | margin-bottom:0px; |
| + | border-radius: 4px; |
| + | padding: 8.5px; |
| + | font: sans-serif; |
| + | font-size: 13px; |
| + | color: white; |
| + | } |
| + | |
| + | #myleftrightbox .fourboxes-4 |
| + | { |
| + | width:191px; |
| + | float:left; |
| + | background-color:rgba(143,143,143,0.7); |
| + | margin-top: 15px; |
| + | margin-left:3.75px solid #e8eff1; |
| + | margin-right:3.75px solid #e8eff1; |
| + | margin-bottom:0px; |
| + | border-radius: 4px; |
| + | padding: 8.5px; |
| + | font: sans-serif; |
| + | font-size: 13px; |
| + | color: white; |
| + | } |
| + | |
| + | #myleftrightbox .fourboxes-1:hover { |
| + | background-color:green; |
| + | } |
| + | #myleftrightbox .fourboxes-2:hover { |
| + | background-color:orange; |
| + | } |
| + | #myleftrightbox .fourboxes-3:hover { |
| + | background-color:#05bcea; |
| + | } |
| + | #myleftrightbox .fourboxes-4:hover { |
| + | background-color:#676767; |
| + | } |
| + | |
| + | |
| + | #myleftrightbox .fourboxes2 |
| + | { |
| + | width:191px; |
| + | float:left; |
| + | background-color:rgba(143,143,143,0.7); |
| + | margin-top: 5px; |
| + | margin-left:3.75px solid #e8eff1; |
| + | margin-right:3.75px solid #e8eff1; |
| + | margin-bottom:0px; |
| + | border-radius: 4px; |
| + | padding: 8.5px; |
| + | font: sans-serif; |
| + | font-size: 13px; |
| + | color: white; |
| + | } |
| + | |
| + | #myleftrightbox .spacebox |
| + | { |
| + | float:left; |
| + | width:5px; |
| + | |
| + | } |
| + | #myleftbox |
| + | { |
| + | position:relative; |
| + | width:625px; |
| + | float:left; |
| + | background-color:; |
| + | margin-top: 0px; |
| + | border-radius: 4px; |
| + | padding: 0px; |
| + | font: sans-serif; |
| + | font-size: 13px; |
| + | color: white; |
| + | } |
| + | #myleftbox .smallbox |
| + | { |
| + | width:604px; |
| + | float:left; |
| + | background-color:#bfbfbf; |
| + | margin-top: 15px; |
| + | border-radius: 4px; |
| + | padding: 15px 15px 15px 15px; |
| + | font: sans-serif; |
| + | font-size: 13px; |
| + | line-height:1.5em; |
| + | color:black; |
| + | } |
| + | #myleftbox .smallbox h1 |
| + | { |
| + | color:#004b85; |
| + | font-weight:bold; |
| + | } |
| + | #myleftbox .smallbox p |
| + | { |
| + | color: #004b85; |
| + | font-weight:bold; |
| + | } |
| + | #myleftbox .smallboxsite |
| + | { |
| + | width:604px; |
| + | float:left; |
| + | background-color:rgba(191,191,191,0.6 ); |
| + | margin-top: 17px; |
| + | border-radius: 4px; |
| + | padding: 15px 15px 15px 15px; |
| + | font: sans-serif; |
| + | font-size: 13px; |
| + | line-height:1.5em; |
| + | color:black; |
| + | |
| + | } |
| + | #myleftbox .threeboxes |
| + | { |
| + | width:191px; |
| + | float:left; |
| + | background-color:rgba(143,143,143,0.7); |
| + | margin-top: 15px; |
| + | border-radius: 4px; |
| + | border-left:2px solid #e8eff1; |
| + | border-right:2px solid #e8eff1; |
| + | padding: 7px 7px 7px 7px; |
| + | font: sans-serif; |
| + | font-size: 13px; |
| + | color: white; |
| + | } |
| + | |
| + | #myleftbox .threeboxes2 |
| + | { |
| + | width:191px; |
| + | float:left; |
| + | background-color:rgba(143,143,143,0.7); |
| + | margin-top: 5px; |
| + | border-radius: 4px; |
| + | border-left:2px solid #e8eff1; |
| + | border-right:2px solid #e8eff1; |
| + | padding: 7px 7px 7px 7px; |
| + | font: sans-serif; |
| + | font-size: 13px; |
| + | color: white; |
| + | } |
| + | |
| + | #myleftbox .threeleft |
| + | { |
| + | width:175px; |
| + | float:left; |
| + | background-color:#ba9108; |
| + | margin-top: -52px; |
| + | border-radius: 4px; |
| + | padding: 15px 15px 15px 15px; |
| + | font: sans-serif; |
| + | font-size: 13px; |
| + | color: white; |
| + | } |
| + | |
| + | #myleftbox .threecenter |
| + | { |
| + | width:175px; |
| + | #float:left; |
| + | background-color:#ba9108; |
| + | margin-top: -52px; |
| + | border-radius: 4px; |
| + | padding: 15px 15px 15px 15px; |
| + | font: sans-serif; |
| + | font-size: 13px; |
| + | color: white; |
| + | } |
| + | #myleftbox .threeright |
| + | { |
| + | width:175px; |
| + | float:right; |
| + | background-color:#ba9108; |
| + | margin-top: -52px; |
| + | border-radius: 4px; |
| + | padding: 15px 15px 15px 15px; |
| + | font: sans-serif; |
| + | font-size: 13px; |
| + | color: white; |
| + | } |
| + | |
| + | |
| + | |
| + | #myleftbox .twoboxes |
| + | { |
| + | width:295px; |
| + | height:120px; |
| + | float:left; |
| + | background-color:rgba(143,143,143,0.7); |
| + | margin-top: 15px; |
| + | border-radius: 4px; |
| + | border-left:2px solid #e8eff1; |
| + | border-right:2px solid #e8eff1; |
| + | padding: 7px 7px 7px 7px; |
| + | font: sans-serif; |
| + | font-size: 13px; |
| + | color: white; |
| + | } |
| + | |
| + | #myleftbox .twoboxes1 |
| + | { |
| + | width:295px; |
| + | height:120px; |
| + | float:left; |
| + | background-color:rgba(143,143,143,0.7); |
| + | margin-top: 15px; |
| + | border-radius: 4px; |
| + | border-left:1px solid #e8eff1; |
| + | border-right:2px solid #e8eff1; |
| + | padding: 7px 7px 7px 7px; |
| + | font: sans-serif; |
| + | font-size: 13px; |
| + | color: white; |
| + | left:9px; |
| + | } |
| + | |
| + | #myleftbox .twoboxes:hover { |
| + | background-color:red; |
| + | } |
| + | |
| + | #myleftbox .twoboxes1:hover { |
| + | background-color:green; |
| + | } |
| + | |
| + | #sponsorbox |
| + | { |
| + | position: relative; |
| + | width: 208px; |
| + | margin-top:15px; |
| + | float: right; |
| + | height: auto; |
| + | } |
| + | |
| + | #sponsorbox .sponsorfloat |
| + | { |
| + | left:-3px; |
| + | width:198px; |
| + | float: right; |
| + | background-color: #004b85; |
| + | margin-top: 0px; |
| + | margin-bottom:5px; |
| + | border-radius: 4px; |
| + | padding: 5px 5px 5px 5px; |
| + | font: sans-serif; |
| + | font-size: 13px; |
| + | color: rgba(225,225,225,1); |
| + | } |
| + | |
| + | #sponsorbox .sponsorfloat h2 |
| + | { |
| + | #color:#ba9108; |
| + | color:white; |
| + | font-size:130%; |
| + | } |
| + | |
| + | #sponsorbox .sponsorfloat a |
| + | { |
| + | color:white; |
| + | font: sans-serif; |
| + | } |
| + | |
| + | #sponsorbox .sponsorfloat p |
| + | { |
| + | font: sans-serif; |
| + | } |
| + | .newsAnnouncement |
| + | { |
| + | width:205px; |
| + | height:110px; |
| + | overflow-x:hidden; |
| + | overflow-y:scroll; |
| } | | } |
| | | |
Line 308: |
Line 814: |
| position:relative; | | position:relative; |
| top: 0px; | | top: 0px; |
- | width:830px; | + | width:790px; |
| left: 0px; | | left: 0px; |
| background-color: #d2d2d2; | | background-color: #d2d2d2; |
| margin-top: 0px; | | margin-top: 0px; |
| border-radius: 4px; | | border-radius: 4px; |
- | padding: 30px 10px 10px 10px; | + | padding: 30px; |
| font: sans-serif; | | font: sans-serif; |
| font-size: 13px; | | font-size: 13px; |
Line 330: |
Line 836: |
| font-weight: bold; | | font-weight: bold; |
| color: #016D8B; | | color: #016D8B; |
| + | } |
| + | |
| + | .floatbox3 article{ |
| + | font-size: 14px; |
| + | color: #000000; |
| } | | } |
| | | |
Line 345: |
Line 856: |
| padding: 0 .0em;} | | padding: 0 .0em;} |
| | | |
- | | + | #catlinks { |
| + | background-color:transparent; |
| + | border:1px solid transparent; |
| + | } |
| + | #footpage { |
| + | background-color:transparent; |
| + | } |
| + | #footer-box { |
| + | background-color:rgba(191,191,191,0.5); |
| + | margin-top:0px; |
| + | } |
| #footer-box-1 { | | #footer-box-1 { |
| | | |
Line 354: |
Line 875: |
| border: 1px solid #444444; | | border: 1px solid #444444; |
| } | | } |
| + | #tweets { |
| | | |
| + | width: 203px; |
| + | margin: 0 auto; |
| + | font: sans-serif; |
| + | font-size: 12px; |
| + | } |
| | | |
- | </style>
| + | #tweets .twtr-widget, |
| + | #tweets .twtr-doc { |
| | | |
- | </head>
| + | width: 100%; |
| + | height: auto; |
| + | } |
| | | |
- | <body class="mediawiki ltr ns-0 ns-subject page-Team_UC_Davis">
| + | #tweets .twtr-hd { |
| + | display:none; |
| + | background: #d40; |
| + | color: #fff; |
| + | -moz-border-radius: 4px 4px 0 0; |
| + | border-radius: 4px 4px 0 0; |
| + | font-family: sans-serif !important; |
| + | } |
| | | |
- | <div id="globalWrapper">
| + | #tweets .twtr-hd *, |
- |
| + | #tweets .twtr-hd h4 a { |
- | <div id="main-content">
| + | |
- |
| + | |
- |
| + | |
- | <div id="nav">
| + | |
- | <ul>
| + | |
- | <li class="groupb"><a href="https://2012.igem.org/" title="Back to iGEM">
| + | |
- | <img src="http://img.photobucket.com/albums/v26/bluemelon/main-button_09.jpg" /></a></li>
| + | |
| | | |
- | <li class="groupb"><a href="https://2012.igem.org/Team:UC_Davis/Attributions" title="Attributions">
| + | background: #d40 !important; |
- | <img src="http://img.photobucket.com/albums/v26/bluemelon/main-button_08.jpg" /></a></li>
| + | font: sans-serif !important; |
| + | } |
| | | |
- | <li class="groupb"><a href="https://2012.igem.org/Team:UC_Davis/Data" title="Data">
| + | #tweets .twtr-hd h3, |
- | <img src="http://img.photobucket.com/albums/v26/bluemelon/main-button_07.jpg" /></a></li>
| + | #tweets .twtr-hd h4 { |
| | | |
- | <li class="groupb"><a href="https://2012.igem.org/Team:UC_Davis/Notebook" title="Notebook">
| + | font-weight: normal; |
- | <img src="http://img.photobucket.com/albums/v26/bluemelon/main-button_06.jpg" /></a></li>
| + | text-align: left; |
| + | margin:0; |
| + | } |
| | | |
- | <li class="groupb"><a href="https://2012.igem.org/Team:UC_Davis/Safety" title="Safety"> | + | #tweets .twtr-hd h3 { |
- | <img src="http://img.photobucket.com/albums/v26/bluemelon/main-button_05.jpg" /></a></li>
| + | |
| + | background: #fff !important; |
| + | color: #333 !important; |
| + | font: sans-serif; |
| + | font-size: 1.0em !important; |
| + | padding: 0.2em !important; |
| + | -moz-border-radius: 0px; |
| + | border-radius: 0px; |
| | | |
- | <li class="groupb"><a href="https://2012.igem.org/Team:UC_Davis/Project" title="Project">
| + | } |
- | <img src="http://img.photobucket.com/albums/v26/bluemelon/main-button_04.jpg" /></a></li>
| + | |
| | | |
- | <li class="groupb"><a href="https://2012.igem.org/Team:UC_Davis/Team" title="Team">
| + | #tweets .twtr-tweet { |
- | <img src="http://img.photobucket.com/albums/v26/bluemelon/main-button_03.jpg" /></a></li>
| + | |
| | | |
- | <li class="groupb"><a href="https://2012.igem.org/Team:UC_Davis/Home" title="Home">
| + | background: #fff; |
- | <img src="http://img.photobucket.com/albums/v26/bluemelon/main-button_02.jpg" /></a></li>
| + | font: sans-serif !important; |
- | </ul>
| + | font-size: 12px; |
- | </div>
| + | } |
- | <div id="menubar" class='left-menu noprint'>
| + | |
| + | #tweets .twtr-tweet a:link, |
| + | #tweets .twtr-tweet a:visited, |
| + | #tweets .twtr-tweet a:hover { |
| + | |
| + | color: #c40 !important; |
| + | |
| + | } |
| + | |
| + | #tweets .twtr-tweet .twtr-tweet-text { |
| + | |
| + | border-bottom: 1px dashed #666 !important; |
| + | padding-bottom: 4px !important; |
| + | font: sans-serif; |
| + | font-size:12px; |
| + | } |
| + | |
| + | #tweets .twtr-tweet .twtr-tweet-text p { |
| + | |
| + | color: #333 !important; |
| + | font: sans-serif; |
| + | font-size: 12px; |
| + | |
| + | } |
| + | |
| + | #overlay { |
| + | z-index:2; |
| + | position:fixed; |
| + | top: 0; |
| + | left: 0; |
| + | height: 100%; |
| + | width: 100%; |
| + | background: black no-repeat scroll center center; |
| + | } |
| + | |
| + | #lightbox { |
| + | position: fixed; |
| + | width:840; |
| + | z-index:2; |
| + | } |
| + | |
| + | </style> |
| + | |
| + | </head> |
| + | |
| + | <body class="mediawiki ltr ns-0 ns-subject page-Team_UC_Davis"> |
| + | |
| + | <div id="globalWrapper"> |
| + | |
| + | <div id="main-content"> |
| + | |
| + | <div id="topmenubar" class="topleft-menu" > |
| <ul> | | <ul> |
- | <li
| + | <li style='color:#014457; cursor:default'><a>teams</a></li> |
- | class='selected' ><a href="/Team:UC_Davis/Attributions">Page </a></li>
| + | <li class='selected' ><a href="https://2012.igem.org/Team:UC_Davis/Attributions">Page</a></li> |
- | <li
| + | |
- | class='new' ><a href="/wiki/index.php?title=Talk:Team:UC_Davis/Attributions&action=edit&redlink=1">Discussion </a></li>
| + | <li class='new'><a href="https://2012.igem.org/wiki/index.php?title=Talk:Team:UC_Davis/Attributions&action=edit&redlink=1">Discussion</a></li> |
- | <li | + | <li><a href="https://2012.igem.org/wiki/index.php?title=Team:UC_Davis/Attributions&action=edit">Edit</a></li> |
- | ><a href="/wiki/index.php?title=Team:UC_Davis/Attributions&action=edit">View source </a></li>
| + | <li><a href="https://2012.igem.org/wiki/index.php?title=Team:UC_Davis/Attributions&action=history">History</a></li> |
- | <li
| + | <li><a href="https://2012.igem.org/Special:MovePage/Team:UC_Davis/Attributions">Move</a></li> |
- | ><a href="/wiki/index.php?title=Team:UC_Davis/Attributions&action=history">History </a></li>
| + | <li><a href="https://2012.igem.org/wiki/index.php?title=Team:UC_Davis/Attributions&action=watch">Watch</a></li> |
- | <li style='color:#808080;cursor:default'>teams</li>
| + | <li><a href="https://igem.org/Login">Log in</a></li> |
| + | |
| </ul> | | </ul> |
- | </div> <!-- end menubar (left) --> | + | </div> |
| + | <div id="newnavi"> |
| + | <ul class="newmenu"> |
| + | <li ><a target="new" href="https://2012.igem.org/" title="Back to iGEM">iGEM</a> |
| + | <ul> |
| + | <li><a target="new" href="https://2012.igem.org/">Main iGEM</a></li> |
| + | <li><a href="https://2012.igem.org/Team:UC_Davis/Criteria">Criteria</a></li> |
| + | <li><a href="https://2012.igem.org/Team:UC_Davis/Human_Practices">Human Practices</a></li> |
| + | </ul> |
| + | </li> |
| | | |
- | <div class="right-menu noprint" id="menubar">
| + | <li class="selected"><a href="https://2012.igem.org/Team:UC_Davis/Attributions" title="Attributions">Attributions</a></li> |
- | <ul>
| + | |
- | <li id="pt-login"><a href="/wiki/index.php?title=Special:UserLogin&returnto=Team:UC_Davis/Attributions" title="You are encouraged to log in; however, it is not mandatory [o]" accesskey="o">Log in</a></li> </ul>
| + | |
- | </div><!-- end right menubar -->
| + | |
| | | |
- | <div id="search-controls" class="noprint">
| + | <li ><a title="https://2012.igem.org/Team:UC_Davis/Data" title="Data">Data</a> |
- | <form action="/Special:Search" id="searchform">
| + | <ul> |
- | <input id="searchInput" name="search" type="text" title="Search 2012.igem.org [f]" accesskey="f" value="" />
| + | <li ><a href="https://2012.igem.org/Team:UC_Davis/Data/Cutinase_Activity" title="Data">Cutinase Activity</a></li> |
- | <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Go" title="Go to a page with this exact name if exists" />
| + | <li ><a href="https://2012.igem.org/Team:UC_Davis/Data/Ethylene_Glycol" |
- | <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Search" title="Search the pages for this text" />
| + | title="Data">Ethylene Glycol</a></li> |
- | </form>
| + | <li ><a href="https://2012.igem.org/Team:UC_Davis/Data/Modeling" |
- | </div> <!-- close search controls -->
| + | title="Data">Modeling</a></li> |
| | | |
| + | <li ><a href="https://2012.igem.org/Team:UC_Davis/Parts">Parts</a></li> |
| + | </ul> |
| + | </li> |
| + | <li ><a href="https://2012.igem.org/Team:UC_Davis/Notebook" title="Notebook">Notebook</a> |
| + | <ul> |
| + | <li ><a href="https://2012.igem.org/Team:UC_Davis/Notebook">Notebook</a></li> |
| + | <li ><a href="https://2012.igem.org/Team:UC_Davis/Notebook/Protocols ">Protocols</a></li> |
| + | <li ><a href="https://2012.igem.org/Team:UC_Davis/Notebook/Gallery">Gallery</a></li> |
| + | </ul> |
| + | </li> |
| | | |
- | <a><h1 class="firstHeading">Team:UC Davis</h1></a>
| + | <li ><a href="https://2012.igem.org/Team:UC_Davis/Safety" title="Safety">Safety</a></li> |
| | | |
| + | <li ><a href="https://2012.igem.org/Team:UC_Davis/Project" title="Project">Project</a> |
| + | <ul> |
| + | <li ><a href="https://2012.igem.org/Team:UC_Davis/Project">Project Overview</a></li> |
| + | <li ><a href="https://2012.igem.org/Team:UC_Davis/Project/Catalyst">Module Engineering</a></li> |
| + | <li ><a href="https://2012.igem.org/Team:UC_Davis/Project/Protein_Engineering">Protein Engineering</a></li> |
| + | <li ><a title="https://2012.igem.org/Team:UC_Davis/Project/Strain">Chassis Engineering </a> |
| + | <ul> |
| + | <li><a href="https://2012.igem.org/Team:UC_Davis/Project/Strain">Chassis Engineering</a></li> |
| + | <li><a href="https://2012.igem.org/Team:UC_Davis/Project/Directed_Evolution">Directed Evolution</a></li> |
| + | <li><a href="https://2012.igem.org/Team:UC_Davis/Project/Our_Strain">Rational Engineering </a></li> |
| + | </ul> |
| + | </li> |
| + | </ul> |
| + | </li> |
| + | <li ><a href="https://2012.igem.org/Team:UC_Davis/Team" title="Team">Team</a></li> |
| + | <li ><a href="https://2012.igem.org/Team:UC_Davis" title="Home">Home</a></li> |
| + | </ul> |
| + | </div> |
| + | <!-- slide show starts here |
| <div id="slides"> | | <div id="slides"> |
| | | |
- | <img src="/wiki/images/0/0c/UCDavisPlaceholder1.JPG" width="850" height="349" alt="" class="current" /> | + | <img src="https://static.igem.org/mediawiki/2012/c/cf/UCD_slide1.jpg" width="850" height="280" alt="" class="current" /> |
- | <img src="/wiki/images/b/bb/UCDavisPlaceholder2.JPG" width="850" height="349" alt="" /> | + | <img src="https://static.igem.org/mediawiki/2012/e/e3/UCD_Slide_2.jpg" width="850" height="280" alt="" /> |
- | <img src="/wiki/images/f/f1/UCDavisPlaceholder3.JPG" width="850" height="349" alt="" /> | + | <img src="https://static.igem.org/mediawiki/2012/d/d9/UCD_Slide_3.jpg" width="850" height="280" alt="" /> |
- | <img src="/wiki/images/8/8f/UCDavisPlaceholder4.JPG" width="850" height="349" alt="" /> | + | <img src="https://static.igem.org/mediawiki/2012/a/a4/UCD_Slide_4.jpg" width="850" height="280" alt="" /> |
| + | </div> |
| + | <ul class="progress"> |
| + | <li class="current"><a href="#n_0">1</a> </li> |
| + | <li><a href="#n_1">2</a> </li> |
| + | <li><a href="#n_2">3</a> </li> |
| + | <li><a href="#n_3">4</a> </li> |
| + | </ul> |
| + | slide show ends here --> |
| + | |
| + | <img src="https://static.igem.org/mediawiki/2012/d/d1/UCD_Attributions_banner.jpg"> |
| + | |
| + | |
| + | <!-- <div id="sponsorbox" style="width:220px; float:right;"> --> |
| + | |
| + | <div id="sponsorbox"> |
| + | <div id="sponsorbox" class="sponsorfloat"> |
| + | <!-- twitter starts here --> |
| + | </script> |
| + | <div id="tweets"> |
| + | <center> |
| + | <h2>UCDavis iGEM Tweets</h2> |
| + | </center> |
| + | <script charset="utf-8" src="http://widgets.twimg.com/j/2/widget.js"></script> |
| + | <script> |
| + | new TWTR.Widget({ |
| + | version: 2, |
| + | type: 'profile', |
| + | rpp: 10, |
| + | interval: 30000, |
| + | width: 203, |
| + | height: 100, |
| + | |
| + | theme: { |
| + | shell: { |
| + | background: '#004b85', |
| + | color: '#ffffff' |
| + | }, |
| + | tweets: { |
| + | background: '#004b85', |
| + | color: '#ffffff', |
| + | links: '#4aed05' |
| + | } |
| | | |
| + | }, |
| + | features: { |
| + | scrollbar: true, |
| + | loop: false, |
| + | live: true, |
| + | behavior: 'all' |
| + | } |
| + | }).render().setUser('UCDavisiGEM').start(); |
| + | |
| + | </script> |
| + | </div> |
| + | <!-- twitter ends here --> |
| </div> | | </div> |
| | | |
- | <div id="bodyContent"> | + | <div id="sponsorbox" class="sponsorfloat"> |
- | <div id="contentSub"></div>
| + | <center> |
- | <br /> | + | <h2>Our Sponsors</h2> |
| + | <a href="http://www.novozymes.com/en/Pages/default.aspx" target="_blank"><img src="https://static.igem.org/mediawiki/2011/2/21/UCD_Novozymes-logo.jpg" width="200"></a> |
| + | </center> |
| | | |
- | <div class="floatbox3"> | + | <center> |
- | <h1> Welcome </h1> | + | <a href="http://engineering.ucdavis.edu/" target="_blank"><img src="https://static.igem.org/mediawiki/2011/f/f6/UCD_CoE.png" width="200" height="40"></a> |
| + | </center> |
| | | |
- | <p>Welcome to iGEM 2012 at UC Davis!</p> | + | <center> |
| + | <a href="http://biosci.ucdavis.edu/index_js.html" target="_blank"><img src="https://static.igem.org/mediawiki/2011/b/b1/UCD_biosci_sponsor.jpg" width="200" height="90"></a> |
| + | </center> |
| | | |
- | ... | + | <center> |
| + | <a href="http://www.genomecenter.ucdavis.edu/" target="_blank"><img src="https://static.igem.org/mediawiki/2011/1/1b/UCD_Genome_center_sponsor.jpg" width="200" height="60"></a> |
| + | </center> |
| | | |
- | <br /> | + | <center> |
| + | <a href="http://www.cs.ucdavis.edu/" target="_blank"><img src="https://static.igem.org/mediawiki/2012/6/6b/UCD_Computer_sponsor.jpg" width="200"></a> |
| + | </center> |
| | | |
- | ... | + | <center> |
| + | <a href="http://www.bme.ucdavis.edu/" target="_blank"><img src="https://static.igem.org/mediawiki/2011/4/40/UCD_BME_logo_minimal_copy.png" width="200 height="70"></a> |
| + | </center> |
| | | |
- | </div> | + | <center> |
| + | <a href="http://www.fishersci.com" target="_blank"><img src="https://static.igem.org/mediawiki/2011/a/a4/UCD_Fisher_Logo.gif" width="200"></a> |
| + | </center> |
| + | |
| + | <center> |
| + | <a href="http://www.arcadiabio.com/" target="_blank"><img src="https://static.igem.org/mediawiki/2012/4/46/UCD_Arcadia_sponsor.jpg |
| + | " width="200"></a> |
| + | </center> |
| + | |
| + | <center> |
| + | <a href="http://provost.ucdavis.edu/" target="_blank"><img src="https://static.igem.org/mediawiki/2012/8/82/UCD_Provost_sponsor.jpg |
| + | " width="200"></a> |
| + | </center> |
| + | |
| + | <center> |
| + | <a href="http://www.research.ucdavis.edu/" target="_blank"><img src="https://static.igem.org/mediawiki/2012/9/99/UCD_Research_sponsor.jpg" width="200"></a> |
| + | </center> |
| + | |
| + | <center> |
| + | <a href="http://ucomm.ucdavis.edu/" target="_blank"><img src="https://static.igem.org/mediawiki/2012/b/b4/UCD_Communications_sponsor.jpg" width="200"></a> |
| + | </center> |
| | | |
- | <br /> | + | <center> |
- | <div class="floatbox3"> | + | <a title="" target="_blank"><img src="https://static.igem.org/mediawiki/2012/2/25/UCD_Schultz_sponsor.jpg |
- | <h1> Our Project</h1> | + | " width="200"></a> |
| + | </center> |
| | | |
- | ...
| |
- |
| |
| </div> | | </div> |
| + | </div> |
| + | <!-- <br> --> |
| + | <!-- div id="myleftbox" style="width:625px; float:left;" --> |
| + | <div id="myleftbox"> |
| | | |
| + | <div id="myleftbox" class="smallbox"> |
| + | <h1>Attributions</h1> |
| + | <article> |
| + | <p>What we did:</p> |
| + | The iGEM team was responsible and completed the following: |
| + | <ul> |
| + | <li> All the wetlab processes and procedures</li> |
| + | <li> Wiki Development and Maintenance</li> |
| + | <li> Graphic Design, Photography, and Figures</li> |
| + | </ul> |
| + | <br> |
| + | With the help of our advisors, we also completed data analysis of the data we received for our experiments. |
| + | <br><br> |
| + | <p>Special thanks:</p> |
| + | We would like to thank the following people and companies for providing us with samples of PET: |
| + | <ul> |
| + | <li>Dr. You-Lo Hsieh</li> |
| + | <li>Grafix</li> |
| + | <li>Piedmont Plastics</li> |
| + | </ul> |
| + | We would especially like to thank the following people and companies for supporting the UC Davis iGEM team: |
| + | <ul> |
| + | <li>Novozymes</li> |
| + | <li>UC Davis College of Engineering</li> |
| + | <li>UC Davis College of Biological Sciences</li> |
| + | <li>UC Davis Genome Center</li> |
| + | <li>UC Davis Computer Science</li> |
| + | <li>UC Davis Biomedical Engineering</li> |
| + | <li>Fisher Scientific</li> |
| + | <li>Arcadia Biosciences</li> |
| + | <li>Office of the Provost: University of California, Davis</li> |
| + | <li>UC Davis Office of Research</li> |
| + | <li>University Communications</li> |
| + | <li>Juan Aguilar of the University of Barcelona</li> |
| + | </ul> |
| + | It wouldn't have been possible without these wonderful people's support! |
| | | |
| | | |
- | <p><br />
| + | </article></div> |
- | </p><p><br />
| + | |
- | </p>
| + | |
- | <table align="justify">
| + | |
- | <tr>
| + | |
- | <td>
| + | |
- | </td></tr></table>
| + | |
- | <p><br />
| + | |
- | </p>
| + | |
- | <table style="color:#1b2c8a;background-color:#0c6;" cellpadding="3" cellspacing="1" border="1" width="62%" align="center">
| + | |
- | <tr>
| + | |
- | <th align="center"><strong class="selflink">Home</strong>
| + | |
- | </th><th align="center"><a href="https://2012.igem.org/Team:UC_Davis/Team" title="Team:UC Davis/Team">Team</a>
| + | |
- | </th><th align="center"><a href="https://2012.igem.org/Team.cgi?year=2012&team_name=UC_Davis" class="external text" rel="nofollow">Official Team Profile</a>
| + | |
- | </th><th align="center"><a href="https://2012.igem.org/Team:UC_Davis/Project" title="Team:UC Davis/Project">Project</a>
| + | |
- | </th><th align="center"><a href="https://2012.igem.org/Team:UC_Davis/Parts" title="Team:UC Davis/Parts">Parts Submitted to the Registry</a>
| + | |
- | </th><th align="center"><a href="https://2012.igem.org/Team:UC_Davis/Modeling" title="Team:UC Davis/Modeling">Modeling</a>
| + | |
- | </th><th align="center"><a href="https://2012.igem.org/Team:UC_Davis/Notebook" title="Team:UC Davis/Notebook">Notebook</a>
| + | |
- | </th><th align="center"><a href="https://2012.igem.org/Team:UC_Davis/Safety" title="Team:UC Davis/Safety">Safety</a>
| + | |
- | </th><th align="center"><a href="https://2012.igem.org/Team:UC_Davis/Attributions" title="Team:UC Davis/Attributions">Attributions</a>
| + | |
- | </th></tr></table>
| + | |
| | | |
- | <!--
| |
- | NewPP limit report
| |
- | Preprocessor node count: 4/1000000
| |
- | Post-expand include size: 0/2097152 bytes
| |
- | Template argument size: 0/2097152 bytes
| |
- | Expensive parser function count: 0/100
| |
- | -->
| |
| | | |
- | <!-- Saved in parser cache with key 2012_igem_org:pcache:idhash:1318-0!1!0!!en!2!edit=0 and timestamp 20120705172055 -->
| |
- |
| |
- |
| |
| | | |
| + | <!-- site map starts here --> |
| + | <div id="myleftbox" class="smallboxsite"> |
| + | <ul style="font-size:10px;list-style-image:none;list-style-type:none;float:left;display:inline;color:#000000;" |
| + | > |
| + | |
| + | <li style="float:left;margin:0 10px;"><a |
| + | href="https://2012.igem.org/Team:UC_Davis"><p>Home</p><ul |
| + | style="text-indent:-15px; |
| + | list-style-image:none;list-style-type:none;color:#000000;"><li><a |
| + | style="color:#000000 " |
| + | href="https://2012.igem.org/Team:UC_Davis">Welcome</a> </li><li><a |
| + | style="color:#000000 " |
| + | href="https://2012.igem.org/Team:UC_Davis">Tweets</a></li><li><a |
| + | style="color:#000000 " |
| + | href="https://2012.igem.org/Team:UC_Davis">Sponsors</a> </li><li><a |
| + | style="color:#000000 " |
| + | href="https://2012.igem.org/Team:UC_Davis/Criteria">Criteria</a> </li> |
| + | </ul> </a> </li> |
| + | |
| + | <li style="float:left;margin:0 10px;"><a |
| + | href="https://2012.igem.org/Team:UC_Davis/Team"><p>Team</p><ul |
| + | style="text-indent:-15px; |
| + | list-style-image:none;list-style-type:none;color:#000000;"><li><a |
| + | style="color:#000000 " |
| + | href="https://2012.igem.org/Team:UC_Davis/Team">Who we are</a> |
| + | </li><li><a style="color:#000000 " |
| + | href="https://2012.igem.org/Team:UC_Davis/Team">Students</a></li><li><a |
| + | style="color:#000000 " |
| + | href="https://2012.igem.org/Team:UC_Davis/Team">Advisors</a> </li> |
| + | </ul> </a> </li> |
| + | |
| + | <li style="float:left ;margin:0 10px;"><a |
| + | href="https://2012.igem.org/Team:UC_Davis/Project "><p>Project</p></a> |
| + | <ul style="text-indent:-15px;list-style-image:none;list-style-type:none;color:#000000"><li><a |
| + | style="color:#000000 " |
| + | href="https://2012.igem.org/Team:UC_Davis/Project">Project Overview</a> |
| + | </li><li><a style="color:#000000 " |
| + | href="https://2012.igem.org/Team:UC_Davis/Project/Catalyst ">Module |
| + | Engineering</a></li><li><a style="color:#000000 " |
| + | href="https://2012.igem.org/Team:UC_Davis/Project/Protein_Engineering |
| + | ">Protein Engineering</a></li> |
| + | <li><a style="color:#000000 " |
| + | href="https://2012.igem.org/Team:UC_Davis/Project/Strain ">Chassis |
| + | Engineering</a></li> |
| + | <li><a style="color:#000000 " |
| + | href="https://2012.igem.org/Team:UC_Davis/Project/Directed_Evolution "> |
| + | - Directed Evolution</a></li> |
| + | <li><a style="color:#000000 " |
| + | href="https://2012.igem.org/Team:UC_Davis/Project/Our_Strain "> - |
| + | Rational Engineering</a></li> |
| + | <li><a style="color:#000000 " |
| + | href="https://2012.igem.org/Team:UC_Davis/Criteria">Critera</a> |
| + | </li></ul> </li> |
| + | |
| + | <li style="float:left ;margin:0 10px"><a |
| + | href="https://2012.igem.org/Team:UC_Davis/Safety "> <p>Safety</p></a> |
| + | <a style="color:#000000 " |
| + | href="https://2012.igem.org/Team:UC_Davis/Safety "> Safety</a> </li> |
| + | |
| + | <li style="float:left ;margin:0 10px;"><a |
| + | href="https://2012.igem.org/Team:UC_Davis/Notebook "> |
| + | <p>Notebook</p></a> <ul |
| + | style="text-indent:-15px;list-style-image:none;list-style-type:none;color:#000000 |
| + | "><li><a style="color:#000000 " |
| + | href="https://2012.igem.org/Team:UC_Davis/Notebook">Notebook</a> |
| + | </li><li><a style="color:#000000 " |
| + | href="https://2012.igem.org/Team:UC_Davis/Notebook/Protocols |
| + | ">Protocols</a> </li><li><a style="color:#000000 " |
| + | href="https://2012.igem.org/Team:UC_Davis/Notebook/Gallery">Gallery</a> |
| + | </li><li><a style="color:#000000 " |
| + | href="https://2012.igem.org/Team:UC_Davis/Criteria">Critera</a> </li> |
| + | </ul> </li> |
| + | |
| + | <li style="float:left ;margin:0 10px;"><a |
| + | title="https://2012.igem.org/Team:UC_Davis/Data "> <p>Data </p></a> <ul |
| + | style="text-indent:-15px;list-style-image:none;list-style-type:none;color:#000000 |
| + | "><li><a style="color:#000000 " |
| + | href="https://2012.igem.org/Team:UC_Davis/Data/Cutinase_Activity "> |
| + | Cutinase Activity</a> </li><li><a style="color:#000000 " |
| + | href="https://2012.igem.org/Team:UC_Davis/Data/Ethylene_Glycol "> |
| + | Ethylene Glycol</a> </li><li><a style="color:#000000 " |
| + | href="https://2012.igem.org/Team:UC_Davis/Data/Modeling "> |
| + | Modeling</a> </li><li><a style="color:#000000 " |
| + | |
| + | href="https://2012.igem.org/Team:UC_Davis/Parts ">Parts</a></li> </ul> |
| + | |
| + | <li style="float:left ;margin:0 10px"><a |
| + | href="https://2012.igem.org/Team:UC_Davis/Attributions "> |
| + | <p>Attribution </p></a><a style="color:#000000 " |
| + | href="https://2012.igem.org/Team:UC_Davis/Attributions "> |
| + | Attribution</a></li> |
| + | |
| + | <li style="float:left ;margin:0 10px"><a |
| + | href="https://2012.igem.org/Main_Page "> <p>iGEM </p></a><ul |
| + | style="text-indent:-15px;list-style-image:none;list-style-type:none;color:#000000 |
| + | "><li><a style="color:#000000 " href="https://2012.igem.org/Main_Page |
| + | ">Main iGEM</a> </li><li><a style="color:#000000 " |
| + | href="https://2012.igem.org/Team:UC_Davis/Criteria "> Criteria</a> |
| + | </li><li><a style="color:#000000 " |
| + | href="https://2012.igem.org/Team:UC_Davis/Human_Practices ">Human |
| + | Practices</a></li> </ul> |
| + | </div> |
| + | <!-- site map ends here --> |
| + | |
| + | </div> |
| + | </div> |
| + | <!-- </div> --> |
| + | <script>if (window.runOnloadHook) runOnloadHook();</script> |
| + | </div> |
| </div> | | </div> |
- | <!-- Served in 0.192 secs. -->
| |
| </body> | | </body> |
| + | <!-- footer starts here --> |
| + | <br> |
| + | <div id="footpage"> |
| + | <div class="printfooter"> |
| + | Retrieved from "<a href="https://2012.igem.org/Team:UC_Davis">https://2012.igem.org/Team:UC_Davis</a>"</div> |
| + | <div id="catlinks"><div id='catlinks' class='catlinks catlinks-allhidden'></div></div> <!-- end content --> |
| + | <div class="visualClear"></div> |
| + | </div> |
| + | </div> |
| + | |
| + | |
| + | <script>if (window.runOnloadHook) runOnloadHook();</script> |
| + | </div> |
| + | </div> |
| + | <!-- footer ends here --> |
| </html> | | </html> |