(59 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
<html> | <html> | ||
<head> | <head> | ||
− | + | <style> | |
+ | |||
/* hides "Team:Cornell" and iGEM logo */ | /* hides "Team:Cornell" and iGEM logo */ | ||
#top_title { | #top_title { | ||
Line 13: | Line 14: | ||
#content { | #content { | ||
− | |||
padding: 0px; | padding: 0px; | ||
width: 100% !important; | width: 100% !important; | ||
Line 34: | Line 34: | ||
list-style-image: none; | list-style-image: none; | ||
} | } | ||
+ | |||
+ | /*Start Styles for Home Page*/ | ||
+ | |||
+ | /* Font Styling */ | ||
+ | @import url('https://fonts.googleapis.com/css?family=Merriweather|Open+Sans|Raleway'); | ||
+ | @font-face { | ||
+ | font-family: 'Futura'; | ||
+ | src: url('../futura/futura\ medium\ bt.ttf'); | ||
+ | } | ||
+ | |||
+ | body { | ||
+ | font-family: 'Open Sans', sans-serif; | ||
+ | } | ||
+ | |||
+ | .dropbtn, .dropdown-content { | ||
+ | font-size: 16px; | ||
+ | } | ||
+ | |||
+ | .tile-title { | ||
+ | font-family: 'Futura', sans-serif; | ||
+ | line-height: 1em; | ||
+ | color: rgba(0, 0, 0, 1) | ||
+ | } | ||
+ | /* End Font Styling */ | ||
+ | |||
+ | html, | ||
+ | body { | ||
+ | width: 100%; | ||
+ | height: 100%; | ||
+ | margin: 0; | ||
+ | padding: 0; | ||
+ | overflow-x: hidden; | ||
+ | } | ||
+ | |||
+ | body { | ||
+ | background-size: 40px 40px; | ||
+ | } | ||
+ | |||
+ | p { | ||
+ | color: #000; | ||
+ | } | ||
+ | |||
+ | nav { | ||
+ | padding-top: 30px; | ||
+ | padding-bottom: 30px; | ||
+ | padding-right: 100px; | ||
+ | background-color: #a0e0bd; | ||
+ | height: 98px; | ||
+ | } | ||
+ | |||
+ | .nav-bar-logo { | ||
+ | vertical-align: top; | ||
+ | display: inline-block; | ||
+ | float: left; | ||
+ | margin-left: 80px; | ||
+ | margin-top: 10px; | ||
+ | width: 200px; | ||
+ | } | ||
+ | |||
+ | .nav-bar-logo img { | ||
+ | width: 200px; | ||
+ | } | ||
+ | |||
+ | .banner-container { | ||
+ | display: flex; | ||
+ | flex-direction: row; | ||
+ | flex-wrap: wrap; | ||
+ | justify-content: center; | ||
+ | } | ||
+ | |||
+ | .dropbtn { | ||
+ | background-color: transparent; | ||
+ | text-decoration: none; | ||
+ | padding: 15px; | ||
+ | margin: 0px; | ||
+ | font-size: 15px; | ||
+ | border: none; | ||
+ | color: #fff; | ||
+ | } | ||
+ | |||
+ | @media (max-width: 1050px) { | ||
+ | .dropbtn { | ||
+ | font-size: 12px; | ||
+ | } | ||
+ | } | ||
+ | |||
+ | .dropdown { | ||
+ | position: relative; | ||
+ | vertical-align: top; | ||
+ | display: inline-block; | ||
+ | float: right; | ||
+ | } | ||
+ | |||
+ | .dropdown ul { | ||
+ | list-style-type: none; | ||
+ | } | ||
+ | |||
+ | .dropdown a { | ||
+ | position: relative; | ||
+ | display: inline-block; | ||
+ | color: #e8b023; | ||
+ | text-decoration: none; | ||
+ | } | ||
+ | |||
+ | .dropdown-content { | ||
+ | display: none; | ||
+ | position: absolute; | ||
+ | background-color: #016C64; | ||
+ | color: #ffffff; | ||
+ | width: 200px; | ||
+ | font-size: 14px; | ||
+ | box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2); | ||
+ | z-index: 1; | ||
+ | } | ||
+ | |||
+ | .dropdown-content a:hover { | ||
+ | background-color: #a0e0bd !important; | ||
+ | } | ||
+ | |||
+ | .toolkit-dropdown-content { | ||
+ | width: 630px; | ||
+ | left: -160px; | ||
+ | } | ||
+ | |||
+ | .modeling-dropdown-content { | ||
+ | left: -40px; | ||
+ | } | ||
+ | |||
+ | .human-dropdown-content { | ||
+ | left: 12px; | ||
+ | } | ||
+ | |||
+ | .outreach-dropdown-content { | ||
+ | width: 230px; | ||
+ | left: -40px; | ||
+ | } | ||
+ | |||
+ | .team-dropdown-content { | ||
+ | width: 140px; | ||
+ | left: -35px; | ||
+ | } | ||
+ | |||
+ | .dropdown-content a { | ||
+ | color: #ffffff; | ||
+ | padding: 12px 16px; | ||
+ | text-decoration: none !important; | ||
+ | display: block; | ||
+ | } | ||
+ | |||
+ | .wet-lab-list-title, | ||
+ | .doc-list-title, | ||
+ | .pd-list-title { | ||
+ | padding-top: 12px; | ||
+ | padding-left: 16px; | ||
+ | padding-bottom: 14px; | ||
+ | } | ||
+ | |||
+ | .nav-second-col { | ||
+ | margin-left: 30px; | ||
+ | } | ||
+ | |||
+ | .nav-third-col { | ||
+ | margin-left: 30px; | ||
+ | } | ||
+ | |||
+ | .dropbtn:hover, | ||
+ | .active-page { | ||
+ | color: #016C64; | ||
+ | transition-duration: 0.5s; | ||
+ | } | ||
+ | |||
+ | .dropdown-content a:hover { | ||
+ | color: #016C64; | ||
+ | background-color: #ffffff; | ||
+ | } | ||
+ | |||
+ | .dropdown:hover .dropdown-content { | ||
+ | display: block; | ||
+ | } | ||
+ | |||
+ | footer { | ||
+ | padding: 35px; | ||
+ | position: relative; | ||
+ | text-align: center; | ||
+ | background-color: #a0e0bd; | ||
+ | } | ||
+ | |||
+ | .footer-wrapper { | ||
+ | margin: auto; | ||
+ | display: inline-block; | ||
+ | } | ||
+ | |||
+ | .icon-wrapper { | ||
+ | display: inline-block; | ||
+ | position: relative; | ||
+ | padding-right: 18px; | ||
+ | padding-left: 18px; | ||
+ | border-right: 0.5px solid white; | ||
+ | } | ||
+ | |||
+ | .icon-wrapper-last { | ||
+ | border-right: none; | ||
+ | } | ||
+ | |||
+ | .icon { | ||
+ | margin: 16px; | ||
+ | } | ||
+ | |||
+ | .icon img { | ||
+ | height: 24px; | ||
+ | } | ||
+ | |||
+ | .home-description-wrapper { | ||
+ | margin-top: 120px; | ||
+ | } | ||
+ | |||
+ | .home-description-logo { | ||
+ | width: 40%; | ||
+ | height: auto; | ||
+ | display: block; | ||
+ | margin: 0 auto; | ||
+ | margin-bottom: 80px; | ||
+ | } | ||
+ | |||
+ | .home-description { | ||
+ | color: #000; | ||
+ | font-size: 20px; | ||
+ | margin-bottom: 80px; | ||
+ | text-align: center; | ||
+ | } | ||
+ | |||
+ | .tiles-wrapper { | ||
+ | background-color: #F9FCFB; | ||
+ | } | ||
+ | |||
+ | .home-banner-wrapper { | ||
+ | position: relative; | ||
+ | background: #a0e0bd; | ||
+ | height: 675px; | ||
+ | width: 100%; | ||
+ | margin-top: -5px; | ||
+ | } | ||
+ | |||
+ | .home-banner-logo { | ||
+ | height: 200px; | ||
+ | position: absolute; | ||
+ | left: 75px; | ||
+ | bottom: 55px; | ||
+ | z-index: 1; | ||
+ | background-color: rgba(160, 224, 189, 0.5); | ||
+ | box-shadow: 10px -10px 50px 10px rgba(160, 224, 189, 0.75); | ||
+ | } | ||
+ | |||
+ | .home-banner-plants { | ||
+ | position: absolute; | ||
+ | top: 10px; | ||
+ | right: -10; | ||
+ | bottom: 20px; | ||
+ | height: 680px; | ||
+ | width: 1400px; | ||
+ | } | ||
+ | |||
+ | .tiles-wrapper img { | ||
+ | width: 90%; | ||
+ | border-radius: 50%; | ||
+ | display: block; | ||
+ | margin: 15px auto 15px auto; | ||
+ | } | ||
+ | |||
+ | .tile-wrapper { | ||
+ | position: relative; | ||
+ | } | ||
+ | |||
+ | .tile-title { | ||
+ | font-size: 30px; | ||
+ | color: rgb(30, 30, 30); | ||
+ | text-align: center; | ||
+ | margin-top: 45%; | ||
+ | } | ||
+ | |||
+ | .pp-title { | ||
+ | margin-top: 40%; | ||
+ | } | ||
+ | |||
+ | .overlay { | ||
+ | background-color: transparent; | ||
+ | z-index: 512; | ||
+ | position: absolute; | ||
+ | top: 0; | ||
+ | left: 0; | ||
+ | width: 100%; | ||
+ | height: 100%; | ||
+ | border-radius: 50%; | ||
+ | -webkit-transition: all 0.4s ease-in-out; | ||
+ | transition: all 0.4s ease-in-out; | ||
+ | } | ||
+ | |||
+ | .overlay:hover { | ||
+ | background-color: #F9FCFB; | ||
+ | opacity: .7; | ||
+ | } | ||
+ | |||
+ | .wrapper-space { | ||
+ | background-color: #F9FCFB; | ||
+ | } | ||
+ | |||
+ | /*End Styles for Home Page*/ | ||
+ | |||
+ | /*Start Grid for Home Page*/ | ||
+ | .home-page-wrapper { | ||
+ | display: grid; | ||
+ | grid-template-columns: auto; | ||
+ | grid-template-rows: 100px auto auto 100px auto 100px 100px; | ||
+ | grid-template-areas: 'navbar' 'banner' 'homedescription' '.' 'tiles' '.' 'footer'; | ||
+ | } | ||
+ | |||
+ | .home-banner-wrapper { | ||
+ | display: grid; | ||
+ | grid-area: banner; | ||
+ | } | ||
+ | |||
+ | nav { | ||
+ | grid-area: navbar; | ||
+ | } | ||
+ | |||
+ | .nav-bar-main-menu .dropdown:nth-child(5) .dropdown-contentx { | ||
+ | display: grid; | ||
+ | grid-template-columns: auto auto auto; | ||
+ | } | ||
+ | |||
+ | .nav-first-col { | ||
+ | display: inline-grid; | ||
+ | } | ||
+ | |||
+ | .nav-second-col { | ||
+ | display: inline-grid; | ||
+ | } | ||
+ | |||
+ | .nav-third-col { | ||
+ | display: inline-grid; | ||
+ | } | ||
+ | |||
+ | .home-description-wrapper { | ||
+ | display: grid; | ||
+ | grid-area: homedescription; | ||
+ | grid-template-columns: 150px auto 150px; | ||
+ | grid-template-areas: '. homedescriptionlogo .' '. homedescription .'; | ||
+ | } | ||
+ | |||
+ | .home-description-logo-wrapper { | ||
+ | grid-area: homedescriptionlogo; | ||
+ | } | ||
+ | |||
+ | .home-description { | ||
+ | grid-area: homedescription; | ||
+ | } | ||
+ | |||
+ | footer { | ||
+ | grid-area: footer; | ||
+ | } | ||
+ | |||
+ | .tiles-wrapper { | ||
+ | display: grid; | ||
+ | grid-area: tiles; | ||
+ | grid-template-columns: 150px repeat(3, 1fr) 150px; | ||
+ | grid-gap: 10px; | ||
+ | } | ||
+ | |||
+ | .wet-lab-tile { | ||
+ | grid-column: 2; | ||
+ | grid-row: 1; | ||
+ | } | ||
+ | |||
+ | .pd-tile { | ||
+ | grid-column: 3; | ||
+ | grid-row: 1; | ||
+ | } | ||
+ | |||
+ | .pp-tile { | ||
+ | grid-column: 4; | ||
+ | grid-row: 1; | ||
+ | } | ||
+ | |||
+ | .outreach-tile { | ||
+ | grid-column: 2; | ||
+ | grid-row: 2; | ||
+ | } | ||
+ | |||
+ | .bus-tile { | ||
+ | grid-column: 3; | ||
+ | grid-row: 2; | ||
+ | } | ||
+ | |||
+ | .team-tile { | ||
+ | grid-column: 4; | ||
+ | grid-row: 2; | ||
+ | } | ||
+ | |||
+ | @media only screen and (max-width: 1100px) { | ||
+ | .tiles-wrapper { | ||
+ | display: grid; | ||
+ | grid-area: tiles; | ||
+ | grid-template-columns: 150px auto 150px; | ||
+ | grid-gap: 10px; | ||
+ | } | ||
+ | .wet-lab-tile { | ||
+ | grid-column: 2; | ||
+ | grid-row: 1; | ||
+ | } | ||
+ | .pd-tile { | ||
+ | grid-column: 2; | ||
+ | grid-row: 2; | ||
+ | } | ||
+ | .pp-tile { | ||
+ | grid-column: 2; | ||
+ | grid-row: 3; | ||
+ | } | ||
+ | .outreach-tile { | ||
+ | grid-column: 2; | ||
+ | grid-row: 4; | ||
+ | } | ||
+ | .bus-tile { | ||
+ | grid-column: 2; | ||
+ | grid-row: 5; | ||
+ | } | ||
+ | .team-tile { | ||
+ | grid-column: 2; | ||
+ | grid-row: 6; | ||
+ | } | ||
+ | } | ||
+ | /*End Grid for Home Page*/ | ||
+ | |||
+ | a.icon { | ||
+ | padding: 0 !important; | ||
+ | } | ||
</style> | </style> | ||
− | <title>Team:Cornell - | + | <meta name="description" content="Developing a community-oriented Harmful Algal Bloom detection and remediation system."> |
+ | <title>Team:Cornell - 2019.igem.org</title> | ||
<!-- CSS --> | <!-- CSS --> | ||
− | <link rel="stylesheet" type="text/css" href="https:// | + | <link rel="stylesheet" type="text/css" href="https://2019.igem.org/Team:Cornell/styles?action=raw&ctype=text/css"> |
− | <link rel="stylesheet" type="text/css" href="https:// | + | <link rel="stylesheet" type="text/css" href="https://2019.igem.org/Team:Cornell/grids?action=raw&ctype=text/css"> |
<!-- JS --> | <!-- JS --> | ||
− | <script src="https:// | + | <script src="https://2019.igem.org/Team:Cornell/jquerymin?action=raw&ctype=text/javascript"></script> |
− | + | ||
</head> | </head> | ||
+ | |||
<body> | <body> | ||
− | <div class="home-page-wrapper"> | + | <div class = "home-page-wrapper"> |
<!------------------------ NAV BAR START ------------------------> | <!------------------------ NAV BAR START ------------------------> | ||
<nav> | <nav> | ||
<div class="nav-bar-wrapper"> | <div class="nav-bar-wrapper"> | ||
− | + | <div class="nav-bar-main-menu"> | |
− | + | <a href="https://2019.igem.org/Team:Cornell"><img class="nav-bar-logo" src="https://static.igem.org/mediawiki/2019/c/cd/T--Cornell--WhiteIGEMLogo.png" alt="logo"></a> | |
− | + | ||
− | + | ||
− | + | ||
<div class="dropdown"> | <div class="dropdown"> | ||
<button class="dropbtn">TEAM</button> | <button class="dropbtn">TEAM</button> | ||
<div class="dropdown-content team-dropdown-content"> | <div class="dropdown-content team-dropdown-content"> | ||
− | <a href="https:// | + | <a href="https://2019.igem.org/Team:Cornell/Team">BIOS</a> |
− | <a href="https:// | + | <a href="https://2019.igem.org/Team:Cornell/Sponsors">SPONSORS</a> |
− | <a href="https:// | + | <a href="https://2019.igem.org/Team:Cornell/Attributions">ATTRIBUTIONS</a> |
</div> | </div> | ||
</div> | </div> | ||
Line 65: | Line 498: | ||
<button class="dropbtn">OUTREACH</button> | <button class="dropbtn">OUTREACH</button> | ||
<div class="dropdown-content outreach-dropdown-content"> | <div class="dropdown-content outreach-dropdown-content"> | ||
− | <a href="https:// | + | <a href="https://2019.igem.org/Team:Cornell/Public_Engagement">EDUCATION & ENGAGEMENT</a> |
− | <a href="https:// | + | <a href="https://2019.igem.org/Team:Cornell/Collaborations">COLLABORATIONS</a> |
</div> | </div> | ||
</div> | </div> | ||
<div class="dropdown"> | <div class="dropdown"> | ||
− | <button class="dropbtn">HUMAN | + | <button class="dropbtn">HUMAN PRACTICES</button> |
<div class="dropdown-content human-dropdown-content"> | <div class="dropdown-content human-dropdown-content"> | ||
− | <a href="https:// | + | <a href="https://2019.igem.org/Team:Cornell/Human_Practices">INTEGRATED PRACTICES</a> |
− | <a href="https:// | + | <a href="https://2019.igem.org/Team:Cornell/Policies">POLICIES</a> |
− | <a href="https:// | + | <a href="https://2019.igem.org/Team:Cornell/Entrepreneurship">ENTREPRENEURSHIP</a> |
</div> | </div> | ||
</div> | </div> | ||
<div class="dropdown"> | <div class="dropdown"> | ||
− | <button class="dropbtn" | + | <button class="dropbtn" |
− | + | onclick="location.href='https://2019.igem.org/Team:Cornell/Model'">MODELING</button> | |
− | + | ||
− | + | ||
− | + | ||
</div> | </div> | ||
<div class="dropdown"> | <div class="dropdown"> | ||
Line 89: | Line 519: | ||
<ul> | <ul> | ||
<div class="nav-first-col"> | <div class="nav-first-col"> | ||
− | <li class = "wet-lab-list-title"><b>WET LAB</b></li> | + | <li class="wet-lab-list-title"><b>WET LAB</b></li> |
− | <li><a href="https:// | + | <li><a href="https://2019.igem.org/Team:Cornell/Foundations">FOUNDATIONS</a></li> |
− | <li><a href="https:// | + | <li><a href="https://2019.igem.org/Team:Cornell/Demonstrate">DEMONSTRATE</a></li> |
− | <li><a href="https:// | + | <li><a href="https://2019.igem.org/Team:Cornell/Parts">PARTS</a></li> |
− | + | <li><a href="https://2019.igem.org/Team:Cornell/BasicParts">BASIC PARTS</a></li> | |
− | <li><a href="https:// | + | <li><a href="https://2019.igem.org/Team:Cornell/CompositeParts">COMPOSITE PARTS</a></li> |
− | <li><a href="https:// | + | |
− | + | ||
</div> | </div> | ||
<div class="nav-second-col"> | <div class="nav-second-col"> | ||
− | <li class = " | + | <li class="pd-list-title"><b>PRODUCT DEVELOPMENT</b></li> |
− | <li><a href="https:// | + | <li><a href="https://2019.igem.org/Team:Cornell/DesignProcess">DESIGN PROCESS</a></li> |
− | <li><a href="https:// | + | <li><a href="https://2019.igem.org/Team:Cornell/Hardware">HARDWARE</a></li> |
− | </li> | + | </div> |
+ | <div class="nav-third-col"> | ||
+ | <li class="doc-list-title"><b>DOCUMENTATION</b></li> | ||
+ | <li><a href="https://2019.igem.org/Team:Cornell/Notebook">NOTEBOOK</a></li> | ||
+ | <li><a href="https://2019.igem.org/Team:Cornell/Safety">SAFETY</a></li> | ||
</div> | </div> | ||
</ul> | </ul> | ||
Line 108: | Line 540: | ||
</div> | </div> | ||
<div class="dropdown"> | <div class="dropdown"> | ||
− | <button class="dropbtn" onclick="location.href='https:// | + | <button class="dropbtn" |
+ | onclick="location.href='https://2019.igem.org/Team:Cornell/Description'">ABOUT</button> | ||
</div> | </div> | ||
<div class="dropdown"> | <div class="dropdown"> | ||
− | <button class="dropbtn active-page" onclick="location.href='https:// | + | <button class="dropbtn active-page" |
+ | onclick="location.href='https://2019.igem.org/Team:Cornell'">HOME</button> | ||
</div> | </div> | ||
− | |||
</div> | </div> | ||
</div> | </div> | ||
</nav> | </nav> | ||
− | <!------------------------ NAV BAR END ------------------------> | + | <!------------------------ NAV BAR END -------------------------> |
− | <!------------------------ | + | <!------------------------ BANNER START ------------------------> |
− | < | + | |
− | + | <div class="home-banner-wrapper"> | |
− | + | <div class="banner-container"> | |
− | + | <img class="home-banner-logo" src="https://static.igem.org/mediawiki/2019/7/73/T--Cornell--BigLogo.png"></img> | |
− | + | <img class="home-banner-plants" src="https://static.igem.org/mediawiki/2019/b/b4/T--Cornell--Plants.png"></img> | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | <div class=" | + | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
</div> | </div> | ||
− | </ | + | </div> |
− | <!------------------------ | + | <!------------------------ BANNER END --------------------------> |
<!------------------------ DESCRIPTION START ------------------------> | <!------------------------ DESCRIPTION START ------------------------> | ||
<div class="home-description-wrapper"> | <div class="home-description-wrapper"> | ||
<div class="home-description-logo-wrapper"> | <div class="home-description-logo-wrapper"> | ||
− | <a id="home-description"><img class="home-description-logo" src="https://static.igem.org/mediawiki/ | + | <a id="home-description"><img class="home-description-logo" src="https://static.igem.org/mediawiki/2019/0/07/T--Cornell--CornelliGEMLogo.png"></a> |
</div> | </div> | ||
− | |||
<div class="home-description"> | <div class="home-description"> | ||
− | + | Developing a community-oriented Harmful Algal Bloom detection and remediation system. | |
− | + | ||
− | + | ||
− | + | ||
</div> | </div> | ||
</div> | </div> | ||
<!------------------------ DESCRIPTION END ------------------------> | <!------------------------ DESCRIPTION END ------------------------> | ||
− | <!------------------------ | + | <!------------------------TILES------------------------> |
− | <div class=" | + | <div class="wrapper-space"><br></div> |
− | + | <div class="tiles-wrapper"> | |
− | + | <div class="tile-wrapper wet-lab-tile" onclick="location.href='https://2019.igem.org/Team:Cornell/Foundations'"><img src="https://static.igem.org/mediawiki/2017/a/ac/CornellTileWetlab.png" alt="Wet Lab"> | |
− | + | <div class="overlay"> | |
− | + | <div class="tile-title">WET LAB</div></a> | |
− | + | ||
− | < | + | |
− | + | ||
</div> | </div> | ||
− | + | </div> | |
− | + | <div class="tile-wrapper pd-tile" onclick="location.href='https://2019.igem.org/Team:Cornell/DesignProcess'"><img src="https://static.igem.org/mediawiki/2019/6/6c/T--Cornell--PDTile.png" alt="Product Development"> | |
+ | <div class="overlay"> | ||
+ | <div class="tile-title">PRODUCT DEV</div> | ||
</div> | </div> | ||
</div> | </div> | ||
− | <div class=" | + | <div class="tile-wrapper pp-tile" onclick="location.href='https://2019.igem.org/Team:Cornell/Human_Practices'"><img src="https://static.igem.org/mediawiki/2017/7/7f/CornellTileP%26P.png" alt="Policies & Practices"> |
− | <div class=" | + | <div class="overlay"> |
− | + | <div class="tile-title pp-title">POLICY & <br>PRACTICES</div> | |
− | + | ||
</div> | </div> | ||
− | + | </div> | |
− | <div> | + | <div class="tile-wrapper outreach-tile" onclick="location.href='https://2019.igem.org/Team:Cornell/Public_Engagement'"><img src="https://static.igem.org/mediawiki/2017/8/8e/CornellTileOutreach.png" alt="Outreach"> |
+ | <div class="overlay"> | ||
+ | <div class="tile-title">OUTREACH</div> | ||
</div> | </div> | ||
− | + | </div> | |
− | + | <div class="tile-wrapper bus-tile" onclick="location.href='https://2019.igem.org/Team:Cornell/Entrepreneurship'"><img src="https://static.igem.org/mediawiki/2017/d/d7/CornellTileBusiness.png" alt="Business"> | |
+ | <div class="overlay"> | ||
+ | <div class="tile-title">BUSINESS</div> | ||
</div> | </div> | ||
</div> | </div> | ||
− | + | <div class="tile-wrapper team-tile" onclick="location.href='https://2019.igem.org/Team:Cornell/Team'"><img src="https://static.igem.org/mediawiki/2019/a/a8/T--Cornell--TeamTile.png" alt="Team"> | |
− | <div class=" | + | <div class="overlay"> |
− | + | <div class="tile-title">THE TEAM</div> | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
</div> | </div> | ||
</div> | </div> | ||
</div> | </div> | ||
− | <!------------------------ | + | <div class="wrapper-space"><br><br></div> |
− | + | <!------------------------END TILES------------------------> | |
− | + | <!------------------------ FOOTER START ------------------------> | |
<footer> | <footer> | ||
<div class="footer-wrapper"> | <div class="footer-wrapper"> | ||
<div class="icon-wrapper"> | <div class="icon-wrapper"> | ||
− | <a class="icon" href="http://facebook.com/cornelligem"><img src="https://static.igem.org/mediawiki/ | + | <a class="icon" href="http://facebook.com/cornelligem"><img src="https://static.igem.org/mediawiki/2019/4/44/T--Cornell--Facebook.png"></a> |
</div> | </div> | ||
<div class="icon-wrapper"> | <div class="icon-wrapper"> | ||
− | <a class="icon" href="http://twitter.com/cugem"><img src="https://static.igem.org/mediawiki/ | + | <a class="icon" href="http://twitter.com/cugem"><img src="https://static.igem.org/mediawiki/2019/8/80/T--Cornell--Twitter.png"></a> |
</div> | </div> | ||
<div class="icon-wrapper"> | <div class="icon-wrapper"> | ||
− | <a class="icon" href="https://www.instagram.com/cugem/"><img src="https://static.igem.org/mediawiki/ | + | <a class="icon" href="https://www.instagram.com/cugem/"><img src="https://static.igem.org/mediawiki/2019/3/37/T--Cornell--Instagram.png" style="padding: 0;"></a> |
</div> | </div> | ||
<div class="icon-wrapper icon-wrapper-last"> | <div class="icon-wrapper icon-wrapper-last"> | ||
− | <a class="icon" href="https://www.youtube.com/channel/UCJt-5JfyoucUJXC1EsTllhg"><img src="https://static.igem.org/mediawiki/ | + | <a class="icon" href="https://www.youtube.com/channel/UCJt-5JfyoucUJXC1EsTllhg"><img src="https://static.igem.org/mediawiki/2019/3/3c/T--Cornell--Youtube.png"></a> |
</div> | </div> | ||
</div> | </div> |
Latest revision as of 21:32, 21 October 2019