|
|
(345 intermediate revisions by the same user not shown) |
Line 1: |
Line 1: |
| + | {{Rice}} |
| <html> | | <html> |
− | <link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700' rel='stylesheet' type='text/css'>
| |
| <style> | | <style> |
− | | + | #bubble { |
− | /*-- Remove borders, float content left and remove padding/margin */
| + | border-radius: 50%; |
− | | + | -webkit-transition: -webkit-transform .8s ease-in-out; |
− | | + | transition: transform .8s ease-in-out; |
− | | + | |
− | #content, #GlobalWrapper{ | + | |
− | width: 100%;
| + | |
| } | | } |
− | | + | #bubble:hover { |
− | #top_menu_14 { padding-left:11%
| + | -webkit-transform: rotate(360deg); |
− | | + | transform: rotate(360deg); |
− | </style>
| + | |
− | | + | |
− | <!-- Declare that you are going to use html code instead of wiki code -->
| + | |
− | <html>
| + | |
− | | + | |
− | <!-- Start of CSS-->
| + | |
− | <style type="text/css">
| + | |
− | | + | |
− | | + | |
− | /* PAGE LAYOUT */
| + | |
− | | + | |
− | | + | |
− | /* Change Background color*/
| + | |
− | body {
| + | |
− | background-color: #1b1c3a;
| + | |
− | }
| + | |
− | | + | |
− | /* Creates a container that will wrap all of the content inside your wiki pages. */
| + | |
− | div #SideMenu{
| + | |
− | display: none;
| + | |
| } | | } |
− |
| |
− | #mainContainer {
| |
− | width: 100%;
| |
− | float:left;
| |
− | margin-left: 0px;
| |
− | margin-right: 0px;
| |
− | margin-bottom: 10px;
| |
− | background-color: #FFFFFF;
| |
− | border-bottom: 0px solid #565656;
| |
− | border-right: 0px solid #565656;
| |
− | border-left: 0px solid #565656;
| |
− | border-top: 0px solid #565656;
| |
− | font-family: "Trebuchet MS", Helvetica, sans-serif;
| |
− |
| |
− | }
| |
− |
| |
− | /* Creates the container for the menu */
| |
− | #menuContainer {
| |
− | float: left;
| |
− | width: 100%;
| |
− | margin:0;
| |
− | padding:0;
| |
− | background-color: #1b1c3a;
| |
− | margin-top: 0px;
| |
− | z-index:0;
| |
− | }
| |
− |
| |
− | /* Creates the container for the content */
| |
− | #contentContainer {
| |
− | padding-top:20px;
| |
− | padding-bottom: 20px;
| |
− | padding-right:20px;
| |
− | padding-left: 20px;
| |
− | margin-bottom: 10px;
| |
− | margin-left: 20px;
| |
− | margin-right: 20px;
| |
− | width: 92%;
| |
− | float: left;
| |
− | background-color: #FFFFFF;
| |
− | font-family: "Trebuchet MS", Helvetica, sans-serif;
| |
− | }
| |
− |
| |
− | /*Set up height place holder for the title*/
| |
− | #titleContainer {
| |
− | width: 100%;
| |
− | height:auto;
| |
− | overflow:hidden;
| |
− | margin: 0px;
| |
− | background-color: #1b1c3a;
| |
− | text-align:center;
| |
− | text-shadow: 2px 2px #000000;
| |
− | }
| |
− |
| |
− | /*Set up height place holder for the banner*/
| |
− | #bannerContainer {
| |
− | width: 100%;
| |
− | height: 75%;
| |
− | /*overflow:hidden;*/
| |
− | margin: 0px;
| |
− | text-align:center;
| |
− | } */
| |
− |
| |
− | /*VISUAL STYLE (TABLES, FONTS, LINKS, IMAGES, UL) */
| |
− |
| |
− | /*Change the styling of text for everything inside main container*/
| |
− | #mainContainer p {
| |
− | font-size: 15px;
| |
− | color: #000000;
| |
− | }
| |
− | /*This changes the color and font family */
| |
− | #contentContainer h1, h2, h3, h4, h5, h6 {
| |
− | color: #565656;
| |
− | border-bottom: none;
| |
− | font-weight: bold;
| |
− | font-family: "Trebuchet MS", Helvetica, sans-serif;
| |
− | margin-top:0px;
| |
− | }
| |
− |
| |
− | /*Style of the links - links are different inside the menu */
| |
− | #contentContainer a {
| |
− | font-weight: bold;
| |
− | color: #000000;
| |
− | font-size: 100%;
| |
− | }
| |
− |
| |
− | /* Styling links on hover- links are different inside the menu */
| |
− | /* #contentContainer a:hover {
| |
− | color: #59BF92;
| |
− | } */
| |
− |
| |
− | /*Change the styling of tables */
| |
− | #contentContainer table {
| |
− | border: 1px solid #565656;
| |
− | border-collapse: collapse;
| |
− | width: 90%
| |
− | margin: auto;
| |
− | margin-bottom: 0px;
| |
− | margin-top: 0px;
| |
− | margin-right: 0px;
| |
− | margin-left: 0px;
| |
− | }
| |
− |
| |
− | /*Change the styling of table cells*/
| |
− | #contentContainer td {
| |
− | padding: 0px;
| |
− | border: 1px solid #565656;
| |
− | border-collapse: collapse;
| |
− | vertical-align: text-top;
| |
− |
| |
− | }
| |
− |
| |
− | /*Change the styling of table headers */
| |
− | #contentContainer th {
| |
− | background-color: #FFFFFF;
| |
− | padding: 0px;
| |
− | border: 1px solid #565656;
| |
− | border-collapse: collapse;
| |
− | vertical-align: text-top;
| |
− | }
| |
− |
| |
− |
| |
− |
| |
− | /*MENU STYLING */
| |
− |
| |
− | #menuContainer {
| |
− | text-align: center;
| |
− | padding-top: 10px;
| |
− | padding-bottom: 20px;
| |
− | }
| |
− |
| |
− | #menuContainer > ul a {
| |
− | color: #FFF;
| |
− | }
| |
− | #menuContainer > ul {
| |
− | list-style: none;
| |
− | margin-left: 0;
| |
− | padding-top: 10px;
| |
− | text-align: center;
| |
− | width: 100%
| |
− | }
| |
− | #menuContainer > ul ul {
| |
− | list-style: none;
| |
− | margin-left: 0%;
| |
− | padding-top: 0;
| |
− | text-align: center;
| |
− | width: 100%
| |
− | }
| |
− | #menuContainer > ul li {
| |
− | position: relative;
| |
− | text-align: center;
| |
− | }
| |
− | #menuContainer > ul a {
| |
− | padding: 10px 8px;
| |
− | display: block;
| |
− | text-decoration: none;
| |
− | font-family: "Helvetica Neue", Helvetica, sans-serif;
| |
− | font-size: 155%;
| |
− | }
| |
− | #menuContainer > ul a:hover {
| |
− | background: #000;
| |
− | background-color: #3b3d63;
| |
− | }
| |
− |
| |
− | div #sideMenu{
| |
− | display: none;
| |
− | }
| |
− |
| |
− |
| |
− | /* Level 1 Drop Down Menu */
| |
− | #menuContainer > ul > li {
| |
− | display: inline-block;
| |
− | vertical-align: top;
| |
− | margin-left: -4px; /* solve the 4 pixels spacing between list-items */
| |
− | }
| |
− | #menuContainer > ul > li:first-child {
| |
− | margin-left: 0;
| |
− | }
| |
− | #menuContainer > ul > li > a {}
| |
− | #menuContainer > ul > li > a:hover {}
| |
− |
| |
− |
| |
− | /* Level 2 */
| |
− | #menuContainer > ul > li > ul {
| |
− | text-align: left;
| |
− | width: auto; /* change auto value with 200px if you want a bigger menu */
| |
− | display: none;
| |
− | background-color: #1b1c3a;
| |
− | position: absolute;
| |
− | top: 100%;
| |
− | left: 0;
| |
− | margin-top: 0px;
| |
− | z-index: 9999999; /* if you have YouTube iframes, is good to have a bigger z-index so the video can appear above the video */
| |
− | }
| |
− | #menuContainer > ul > li:hover > ul{
| |
− | display: block;
| |
− |
| |
− | }
| |
− | #menuContainer > ul ul li a {}
| |
− | #menuContainer > ul ul li a:hover {}
| |
− | /* Level 3 */
| |
− | #menuContainer > ul > li > ul > li > ul {
| |
− | text-align: left;
| |
− | display: none;
| |
− | background: #1b1c3a;
| |
− | position: absolute;
| |
− | left: 100%;
| |
− | top: -5px;
| |
− | z-index: 9999999;
| |
− | }
| |
− | #menuContainer > ul > li > ul > li:hover > ul {
| |
− | display: block;
| |
− | }
| |
− | #menuContainer > ul ul ul li {}
| |
− | #menuContainer > ul ul ul li a {}
| |
− | #menuContainer > ul ul ul li a:hover {}
| |
− | #menuContainer.navItem {
| |
− | pointer-events: auto;
| |
− | }
| |
− | #Directory {
| |
− | width: 100%;
| |
− | overflow:hidden;
| |
− | float:left;
| |
− | margin-left:20px;
| |
− | margin-right: 20px;
| |
− | margin-bottom: 0px;
| |
− | background-color: #000000;
| |
− | border-bottom: 0px solid #565656;
| |
− | border-right: 0px solid #565656;
| |
− | border-left: 0px solid #565656;
| |
− | border-top: 0px solid #565656;
| |
− | font-family: "Trebuchet MS", Helvetica, sans-serif;
| |
− | }
| |
− | /*Style the Directory*/
| |
− | #Directory table {
| |
− | Background-color: #000000;
| |
− | color: #FFFFFF;
| |
− | margin-left: 0px;
| |
− | padding: 20px;
| |
− | line-height: 10px;
| |
− | height: 100px;
| |
− | width:100%;
| |
− | /*float:left;*/
| |
− | }
| |
− |
| |
− |
| |
− | /*Style the Directory button*/
| |
− | #Directory li a{
| |
− | color: #000000;
| |
− | padding: 0px;
| |
− | }
| |
− |
| |
− | img.button {
| |
− | opacity: 1.0;
| |
− | filter: alpha(opacity=100); /* For IE8 and earlier */
| |
− | }
| |
− |
| |
− | img.button:hover {
| |
− | opacity: 0.7;
| |
− | filter: alpha(opacity=80); /* For IE8 and earlier */
| |
− | }
| |
− |
| |
− |
| |
− | /*CLASSES */
| |
− |
| |
− | /*Clear class for all the pages, adds spacing too*/
| |
− | .clear{
| |
− | clear:both;
| |
− | height: 10px;
| |
− | }
| |
− |
| |
− |
| |
− | /* highlight box for special messages */
| |
− | .highlightBox {
| |
− | width:500px;
| |
− | margin:auto;
| |
− | background-color: #E8E8E9;
| |
− | margin-bottom: 15px;
| |
− | margin-top: 15px;
| |
− | padding: 15px;
| |
− | padding-top: 10px;
| |
− | }
| |
− |
| |
− | h1 {
| |
− | font-family: "Abadi MT Condensed Extra Bold", Helvetica, Arial;
| |
− | font-size: 30px;
| |
− | font-style: normal;
| |
− | font-variant: normal;
| |
− | font-weight: bold;
| |
− | line-height: 26.4px;
| |
− | }
| |
− | h3 {
| |
− | font-family: "DIN Alternate", Helvetica, Arial;
| |
− | font-size: 18px;
| |
− | font-style: normal;
| |
− | font-variant: normal;
| |
− | font-weight: bold;
| |
− | line-height: 15.4px;
| |
− | }
| |
− | p {
| |
− | font-family: Helvetica, Arial, sans-serif;
| |
− | font-size: 14px;
| |
− | font-style: normal;
| |
− | font-variant: normal;
| |
− | font-weight: light;
| |
− | line-height: 20px;
| |
− | }
| |
− |
| |
| </style> | | </style> |
| + | <body> |
| + | <br><br><br><br><br><br><br><br> |
| + | <div style = "position: relative; left: 20%; top: 100%" > |
| + | <img src="https://static.igem.org/mediawiki/2016/e/ed/Bubble_background.png" width = 800px style="position:absolute" > |
| | | |
| + | <a href="https://2016.igem.org/"><img id = bubble src="https://static.igem.org/mediawiki/2016/f/fd/Sub_bubble_12.png" width= 93px style ="position:absolute;left:242px;top:127px"></a> |
| + | <img id = bubble src="https://static.igem.org/mediawiki/2016/b/b6/Sub_bubble_8.png" width= 147px style ="position:absolute;left:338px;top:286px"> |
| + | <a href="https://2016.igem.org/Team:Rice/the_DOPEST_snap_chat_account_ever"><img id = bubble src="https://static.igem.org/mediawiki/2016/7/75/Sub_bubble_6.png" width= 85px style ="position:absolute;left:50px;top:473px"></a> |
| + | <a href="https://www.facebook.com/riceuniversityigem/"><img id = bubble src="https://static.igem.org/mediawiki/2016/b/b1/Sub_bubble_5.png" width= 117px style ="position:absolute;left:215px;top:365px"></a> |
| + | <a href="https://www.instagram.com/riceuniversity_igem/"><img id = bubble src="https://static.igem.org/mediawiki/2016/7/77/Sub_bubble_7.png" width= 115px style ="position:absolute;left:149px;top:492px"></a> |
| + | <a href="http://www.rice.edu/"><img id = bubble src="https://static.igem.org/mediawiki/2016/2/2f/Sub_bubble_1.png" width= 74px style ="position:absolute;left:338px; top:191px"></a> |
| + | <a href="https://2016.igem.org/Team:Rice/Members"><img id = bubble src="https://static.igem.org/mediawiki/2016/thumb/4/42/Sub_bubble_3.png/600px-Sub_bubble_3.png" width= 239px style ="position:absolute;left:20px;top:157px"></a> |
| + | <a href="https://twitter.com/riceu_igem"><img id = bubble src="https://static.igem.org/mediawiki/2016/5/5b/Sub_bubble_4.png" width= 69px style ="position:absolute;left:132px;top:416px"></a> |
| + | <a href="https://www.google.com/maps/place/Rice+University/@29.7173941,-95.4040199,17z/data=!3m1!4b1!4m5!3m4!1s0x8640c064b7f18e1f:0xe2cd9cf065c43eb5!8m2!3d29.7173941!4d-95.4018312"><img id = bubble src="https://static.igem.org/mediawiki/2016/3/3b/Sub_bubble_9.png" width= 42px style ="position:absolute;left:267px;top:311px"></a> |
| + | <a href="https://mail.google.com/mail/?view=cm&fs=1&to=Riceu.igem@gmail.com"><img id = bubble src="https://static.igem.org/mediawiki/2016/f/f1/Sub_bubble_10.png" width= 55px style ="position:absolute;left:275px;top:230px"></a> |
| + | <a href="https://2016.igem.org/Team:Rice/Achievement"><img id = bubble src="https://static.igem.org/mediawiki/2016/7/74/Sub_bubble_11.png" width= 167px style ="position:absolute;left:510px;top:571px"></a> |
| + | |
| + | <a href = "https://2016.igem.org/Team:Rice/Practices" style="float:left"><img id = "human_practice" class = "gif" src = "https://static.igem.org/mediawiki/2016/archive/7/77/20160904023618%21Human_practices_2_cover.png" width = 230 style ="position:absolute;left:282px;top:451px"></a> |
| + | <a href = "https://2016.igem.org/Team:Rice/Wet_Lab" style="float:left"><img id = "wet_lab" class = "gif" src = "https://static.igem.org/mediawiki/2016/7/7b/Wet_lab_cover.png" width = 189 style ="position:absolute;left:425px;top:115px"></a> |
| + | <a href = "https://2016.igem.org/Team:Rice/Project" style="float:left"><img id = "project" class = "gif" src = "https://static.igem.org/mediawiki/2016/6/65/Project_cover.png" width = 254 style ="position:absolute;left:486px;top:300px"></a> |
| + | <a href = "https://2016.igem.org/Team:Rice/Modeling" style="float:left"><img id = "modeling" class = "gif" src = "https://static.igem.org/mediawiki/2016/2/28/Modeling_cover.png" width = 135 style ="position:absolute;left:324px;top:16px"></a> |
| | | |
| | | |
| + | </div> |
| + | <br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br> |
| + | </body> |
| + | <script> |
| + | //create image to preload: |
| + | var human_practice_preload = new Image(); |
| + | $(human_practice_preload).attr({ |
| + | src: "https://static.igem.org/mediawiki/2016/archive/b/b5/20160904023957%21Human_pratices_3.gif" |
| + | }); |
| | | |
− | <!--- THIS IS WHERE THE HTML BEGINS --->
| + | $(window).load(function() { |
− | | + | $('#human_practice').hover(function () { |
− | | + | $(this).attr("src", $(human_practice_preload).attr('src')); |
− | <!-- This tells the browser that your page is responsive -->
| + | }, function() { |
− | | + | $(this).attr("src", "https://static.igem.org/mediawiki/2016/archive/7/77/20160904023618%21Human_practices_2_cover.png"); |
− | <head>
| + | }); |
− | </head>
| + | }) |
− | | + | |
| | | |
− | <div id="mainContainer">
| + | var wet_lab_preload = new Image(); |
− | <!--The closing tag for mainContainer should be placed at the bottom of each content page.-->
| + | $(wet_lab_preload).attr({ |
− | <!-- Start of menu -->
| + | src: "https://static.igem.org/mediawiki/2016/7/78/Wet_lab_gif.gif" |
− | <div id="menuContainer">
| + | }); |
− | <!-- This list is your menu, every list item is a menu button and nested listed become submenu buttons --> | + | |
− | <ul>
| + | |
− | <li style="padding:0 20px;">
| + | |
− | <a href="https://igem.org/Main_Page">
| + | |
− | <image src="https://static.igem.org/mediawiki/2015/5/52/HKUST-Rice15_iGEMofficiallogo.jpg" style="width: 82px; height: 72px; margin: -20px;">
| + | |
− | </a> | + | |
− | </li>
| + | |
− | <li style="padding:0 20px;">
| + | |
− | <a>
| + | |
− | <image src="https://static.igem.org/mediawiki/2016/d/d2/Rice_University_seal.svg.png" style="width: 72px; height: 72px; margin: -20px;">
| + | |
− | </a>
| + | |
− | </li>
| + | |
− | <li><a href="https://2016.igem.org/Team:Rice" style=" margin-top:10px;"><h3>HOME</h3></a></li>
| + | |
− | <li><a class="navItem" href="https://2016.igem.org/Team:Rice/Description" style=" margin-top:10px;"><h3>PROJECT</h3></a>
| + | |
− | <ul>
| + | |
− | <li><a href="https://2016.igem.org/Team:Rice/Description">OVERVIEW</a></li>
| + | |
− | <li><a href="https://2016.igem.org/Team:Rice/Sofware">SOFTWARE</a>
| + | |
− | <ul>
| + | |
− | <li><a href="https://2016.igem.org/Team:Rice/Software">inspiration</a></li>
| + | |
− | <li><a href="https://2016.igem.org/Team:Rice/Software">overview</a></li>
| + | |
− | <li><a href="https://2016.igem.org/Team:Rice/Software">feedback</a></li>
| + | |
− | </ul>
| + | |
− | </li>
| + | |
− | <li><a href="https://2016.igem.org/Team:Rice/Modeling">MODELING</a>
| + | |
− | <ul>
| + | |
− | <li><a href="https://2016.igem.org/Team:Rice/Modeling">prediction</a></li>
| + | |
− | <li><a href="https://2016.igem.org/Team:Rice/Modeling">assumption</a></li>
| + | |
− | <li><a href="https://2016.igem.org/Team:Rice/Modeling">equations</a></li>
| + | |
− | <li><a href="https://2016.igem.org/Team:Rice/Modeling">references</a></li>
| + | |
− | </ul>
| + | |
− | </li>
| + | |
− | <li><a href="https://2016.igem.org/Team:Rice/Expression">PARALLEL SENSORS</a>
| + | |
− | <ul>
| + | |
− | <li><a href="https://2016.igem.org/Team:Rice/Expression/ParaBAD"><i>P<sub>araBAD</sub></i> characterization</a></li>
| + | |
− | </ul>
| + | |
− | </li>
| + | |
− | <li><a href="https://2016.igem.org/Team:Rice/Application">APPLICATION</a></li>
| + | |
− | </ul>
| + | |
− | <li><a class="navItem" href="https://2016.igem.org/Team:Rice/Parts" style=" margin-top:10px;"><h3>ACHIEVEMENT</h3></a>
| + | |
− | <ul>
| + | |
− | <li><a href="https://2016.igem.org/Team:Rice/Parts">PARTS</a></li>
| + | |
− | <li><a href="https://2016.igem.org/Team:Rice/Medal">MEDAL REQUIREMENTS</a>
| + | |
− | <ul>
| + | |
− | <li><a href="https://2016.igem.org/Team:Rice/Medal">bronze</a></li>
| + | |
− | <li><a href="https://2016.igem.org/Team:Rice/Medal">silver</a></li>
| + | |
− | <li><a href="https://2016.igem.org/Team:Rice/Medal">gold</a></li>
| + | |
− | </ul>
| + | |
− | </li>
| + | |
− | </ul>
| + | |
− | </li>
| + | |
− | <li><a class="navItem" href="https://2016.igem.org/Team:Rice/Team" style=" margin-top:10px;"><h3>TEAM</h3></a>
| + | |
− | <ul>
| + | |
− | <li><a href="https://2016.igem.org/Team:Rice/Members">MEMBERS</a></li>
| + | |
− | <li><a href="https://2016.igem.org/Team:Rice/Advisers">ADVISERS</a></li>
| + | |
− | <li><a href="https://2016.igem.org/Team:Rice/Instructors">INSTRUCTORS</a></li>
| + | |
− | <li><a href="https://2016.igem.org/Team:Rice/Attributions">ATTRIBUTIONS</a></li>
| + | |
− | </ul>
| + | |
− | </li>
| + | |
− | <li><a class="navItem" href="https://2016.igem.org/Team:Rice/Practices" style=" margin-top:10px;"><h3>HUMAN PRACTICES</h3></a>
| + | |
− | <ul>
| + | |
− | <li><a href="https://2016.igem.org/Team:Rice/Building_With_Biology">BUIDING WITH BIOLOGY</a></li>
| + | |
− | <li><a href="https://2016.igem.org/Team:Rice/Practices_ExploratoryResearch">EXPLORATORY RESEARCH</a></li>
| + | |
− | <li><a href="https://2016.igem.org/Team:Rice/Practices_Debate">BIOETHICAL DEBATE</a></li>
| + | |
− | <li><a href="https://2016.igem.org/Team:Rice/Humans_Of_Syn_Bio">HUMANS OF SYN BIO</a></li>
| + | |
− | </ul>
| + | |
− | </li>
| + | |
− | <li><a class="navItem" href="https://2016.igem.org/Team:Rice/Notebook" style=" margin-top:10px;"><h3>WETLAB</h3></a>
| + | |
− | <ul>
| + | |
− | <li><a href="https://2016.igem.org/Team:Rice/Notebook">NOTEBOOK</a></li>
| + | |
− | <li><a href="https://2016.igem.org/Team:Rice/Protocol">PROTOCOL</a>
| + | |
− | <ul>
| + | |
− | <li><a href="https://2016.igem.org/Team:Rice/Protocol">protocols</a></li>
| + | |
− | <li><a href="https://2016.igem.org/Team:Rice/Protocol">experiments</a></li>
| + | |
− | </ul>
| + | |
− | </li>
| + | |
− | <li><a href="https://2016.igem.org/Team:Rice/Safety">SAFETY</a>
| + | |
− | <ul>
| + | |
− | <li><a href="https://2016.igem.org/Team:Rice/Safety">organisms</a></li>
| + | |
− | <li><a href="https://2016.igem.org/Team:Rice/Safety">project design</a></li>
| + | |
− | <li><a href="https://2016.igem.org/Team:Rice/Protocol">biosafety</a></li>
| + | |
− | <li><a href="https://2016.igem.org/Team:Rice/Protocol">safety training</a></li>
| + | |
− | </ul>
| + | |
− | </li>
| + | |
− | </ul>
| + | |
− | </li>
| + | |
− | <li style="padding:10px 20px;">
| + | |
− | <a href="http://www.rice.edu/">
| + | |
− | <image id="Ricelogo" src="https://static.igem.org/mediawiki/2015/f/f6/HKUST-Rice15_ricelogo3.png" style="width: 106px; height: 40px; margin: -20px;">
| + | |
− | </a>
| + | |
− | </li>
| + | |
− | <li style="padding:10px 20px;">
| + | |
− | <a href="https://2016.igem.org/Team:Rice/">
| + | |
− | <!-- <image class="button" id="Ricelogo" src="https://static.igem.org/mediawiki/2016/thumb/a/a0/Igem_generic_logo.jpg/537px-Igem_generic_logo.jpg" style="width: 40px; height: 40px; margin:-20px;"> -->
| + | |
− | <image id="Ricelogo" src="https://static.igem.org/mediawiki/2016/thumb/a/a0/Igem_generic_logo.jpg/537px-Igem_generic_logo.jpg" style="width: 40px; height: 40px; margin:-20px;">
| + | |
− | </a>
| + | |
− | </li>
| + | |
− | </ul>
| + | |
− | </div>
| + | |
| | | |
| + | $(window).load(function() { |
| + | $('#wet_lab').hover(function () { |
| + | $(this).attr("src", $(wet_lab_preload).attr('src')); |
| + | }, function() { |
| + | $(this).attr("src", "https://static.igem.org/mediawiki/2016/7/7b/Wet_lab_cover.png"); |
| + | }); |
| + | }) |
| | | |
| + | var project_preload = new Image(); |
| + | $(project_preload).attr({ |
| + | src: "https://static.igem.org/mediawiki/2016/2/21/Project_gif.gif" |
| + | }); |
| | | |
| + | $(window).load(function() { |
| + | $('#project').hover(function () { |
| + | $(this).attr("src", $(project_preload).attr('src')); |
| + | }, function() { |
| + | $(this).attr("src", "https://static.igem.org/mediawiki/2016/6/65/Project_cover.png"); |
| + | }); |
| + | }) |
| | | |
− | <footer>
| + | var modeling_preload = new Image(); |
− | <div style="position:absolute; bottom:-60px; width:100%; height:60px;">
| + | $(modeling_preload).attr({ |
− | <div class="row_1" style="position:relative;background:black;padding:0px:height:10px;width:100%"> | + | src: "https://static.igem.org/mediawiki/2016/8/83/Modeling_back.gif" |
− | <h3 style="display:inline;float:left;position:absolute;top:30%;left:10%"><font color="white">Stay Connected</font></h3>
| + | }); |
− | <a href="https://www.facebook.com/riceuniversityigem/"><img src="https://static.igem.org/mediawiki/2016/3/3f/Facebook_icon.png" style="position:relative;left:30%;" width="80px" height="auto"></a>
| + | |
− | <a href="https://www.instagram.com/riceuniversity_igem/"><img src="https://static.igem.org/mediawiki/2016/8/8f/Insta_icon.png" style="position:relative;left:35%;" width="80px" height="auto"></a>
| + | |
− | <a href="https://twitter.com/riceu_igem"><img src="https://static.igem.org/mediawiki/2016/e/e8/Twit.png" style="position:relative;left:40%;" width="80px" height="auto"></a>
| + | |
− | <img src="https://static.igem.org/mediawiki/2016/0/06/Snapchat-2-128.png" style="position:relative;left:45%;" width="45px" height="auto">
| + | |
− | <!-- backup https://static.igem.org/mediawiki/2016/thumb/a/a6/Snapchat-xxl.png/120px-Snapchat-xxl.png-->
| + | |
− | <img src="https://static.igem.org/mediawiki/2016/8/86/Gmail.png" style="position:relative;left:50%;" width="80px" height="auto">
| + | |
− | </div> | + | |
− | <div class="row_2" style="background:rgba(28,134,238,1);padding-top:20px">
| + | |
− | <div style="position:absolute; left:10%;width:40%">
| + | |
− | <h3>Useful Links</h3>
| + | |
− | <ul class="f-menu space40">
| + | |
− | <li><a href="/Team:Rice">Home</a></li>
| + | |
− | <li><a href="https://2015.igem.org/Main_Page">iGEM 2015</a></li>
| + | |
− | </ul>
| + | |
− | </div>
| + | |
− | <div style="background:transparent;position:absolute; left:33%;width:33%">
| + | |
− | <h3>Contact Us</h3>
| + | |
− | <ul class="f-menu space40">
| + | |
− | <li>MAIL</li>
| + | |
− | <br/>
| + | |
− | <li>Rice University</li>
| + | |
− | <Li>6100 Main St.</li>
| + | |
− | <li>Houston, Texas 77005</li>
| + | |
− | </ul>
| + | |
− | </div>
| + | |
− | <div style="position:absolute; left:66%;width:33%">
| + | |
− | <h3><em>Unconventional Wisdom</em></h3>
| + | |
− | <div style="position:absolute; left:5%">
| + | |
− | <img src="https://static.igem.org/mediawiki/2016/thumb/d/d2/Rice_University_seal.svg.png/600px-Rice_University_seal.svg.png" width="130px" height="auto">
| + | |
− | </div>
| + | |
− | </div>
| + | |
− | <br><br><br><br><br><br><br><br><br><br>
| + | |
− | </div>
| + | |
− | </footer>
| + | |
| | | |
| + | $(window).load(function() { |
| + | $('#modeling').hover(function () { |
| + | $(this).attr("src", $(modeling_preload).attr('src')); |
| + | }, function() { |
| + | $(this).attr("src", "https://static.igem.org/mediawiki/2016/2/28/Modeling_cover.png"); |
| + | }); |
| + | }) |
| + | </script> |
| </html> | | </html> |