Difference between revisions of "Template:IISc-Bangalore"

(Prototype team template page)
 
 
(383 intermediate revisions by 6 users not shown)
Line 1: Line 1:
 
<html>
 
<html>
 
<script>
 
 
// This is the jquery part of your template. 
 
// Try not modify any of this code too much since it makes your menu work.
 
 
$(document).ready(function() {
 
 
$("#HQ_page").attr('id','');
 
 
// call the functions that control the menu
 
menu_functionality();
 
hide_show_menu();
 
 
 
 
//this function controls the expand and collapse buttons of the menu and changes the +/- symbols
 
function menu_functionality() {
 
 
//when clicking on a "menu_button", it will change the "+/-" accordingly and it will show/hide the corresponding submenu
 
$(".menu_button").click(function(){
 
 
// add or remove the class "open" , this class holds the "-"
 
$(this).children().toggleClass("open");
 
// show or hide the submenu
 
$(this).next('.submenu_wrapper').fadeToggle(400);
 
});
 
 
// when the screen size is smaller than 800px, the display_menu_control button appears and will show/hide the whole menu
 
$("#display_menu_control").click(function(){
 
$('#menu_content').fadeToggle(400);
 
});
 
 
// call the current page highlight function
 
highlight_current_page();
 
}
 
 
 
// call the highlight current page function to show it on the menu with a different background color
 
function highlight_current_page() {
 
 
// select a page from the menu based on the id assigned to it and the current page name and add the class "current page" to make it change background color
 
$("#"+  wgPageName.substring(wgPageName.lastIndexOf("/")+1, wgPageName.length ) + "_page").addClass("current_page");
 
 
// now that the current_page class has been added to a menu item, make the submenu fade in
 
$(".current_page").parents(".submenu_wrapper").fadeIn(400);
 
// change the +/- symbol of the corresponding menu button
 
$(".current_page").parents(".submenu_wrapper").prev().children().toggleClass("open");
 
 
}
 
 
 
 
// allow button on the black menu bar to show/hide the side menu
 
function hide_show_menu() {
 
 
// in case you preview mode is selected, the menu is hidden for better visibility
 
if (window.location.href.indexOf("submit") >= 0) {
 
$(".igem_2017_menu_wrapper").hide();
 
}
 
 
// if the black menu bar has been loaded
 
  if (document.getElementById('bars_item')) {
 
 
// when the "bars_item" has been clicked
 
$("#bars_item").click(function() {
 
$("#sideMenu").hide();
 
 
// show/hide the menu wrapper
 
$(".igem_2017_menu_wrapper").fadeToggle("100");
 
});
 
  }
 
 
// because the black menu bars loads at a different time than the rest of the page, this function is set on a time out so it can run again in case it has not been loaded yet
 
else {
 
    setTimeout(hide_show_menu, 15);
 
}
 
}
 
 
 
});
 
 
 
</script>
 
 
 
 
 
  
 
<style>
 
<style>
  
 +
/* Fonts */
  
 +
@font-face {
 +
    font-family: "Raleway";
 +
    src: url("https://static.igem.org/mediawiki/2017/3/3f/T--IISc-Bangalore--raleway.woff") format("woff");
 +
}
 +
@font-face {
 +
    font-family: "Poppins";
 +
    src: url("https://static.igem.org/mediawiki/2017/d/d7/T--IISc-Bangalore--poppins.woff") format("woff");
 +
}
  
/***************************************************** DEFAULT WIKI SETTINGS  ****************************************************/
+
@font-face {
+
    font-family: "Raleway-ExtraBold";
/* Clear the default wiki settings */
+
    src: url('https://static.igem.org/mediawiki/2017/6/6b/T--IISc-Bangalore--raleway-extrabold.woff') format("woff");
+
}
#home_logo, #sideMenu { display:none; }
+
#sideMenu, #top_title, .patrollink  {display:none;}
+
#content { width:100%; padding:0px;  margin-top:-7px; margin-left:0px;}
+
body {background-color:white; }
+
#bodyContent h1, #bodyContent h2, #bodyContent h3, #bodyContent h4, #bodyContent h5 { margin-bottom: 0px; }
+
  
+
/* Code for removing iGEM loader content */
+
+
/**************************************************************** MENU ***************************************************************/
+
/* Wrapper for the menu */
+
.igem_2017_menu_wrapper {
+
width: 15%;
+
height:100vh;
+
position:fixed;
+
right:0%;
+
padding:0px;
+
float:right;
+
border-left: 1px solid #d3d3d3;
+
background-color:#dddddd;
+
text-align:left;
+
font-family:Tahoma, Geneva, sans-serif;
+
overflow-y: auto;
+
overflow-x: hidden;
+
}
+
  
/* this hides the scrollbar to keep view consistency */
+
#sideMenu, #top_title, #top, #toc{
.igem_2017_menu_wrappe::-webkit-scrollbar {  
+
  display: none;
display: none;  
+
}
}
+
+
+
/* styling for links in the menu, removes the line under text */
+
.igem_2017_menu_wrapper a { 
+
text-decoration: none;
+
}
+
  
 +
/* Content styling */
  
/* styling for the images in the menu */
+
#content {
.igem_2017_menu_wrapper img {  
+
  width: 100%;
width: 100%;
+
  height: 100%;
}
+
  box-sizing: border-box;
 +
  margin: -31px 0 0;
 +
  padding: 0;
 +
}
  
/* styling for the menu buttons */
+
body {
.igem_2017_menu_wrapper .menu_button {  
+
    margin: 0;
width: 100%;  
+
    height: 100%;
padding: 10px 0px 10px 15px;
+
}
float:left;
+
border-bottom: 1px solid #d3d3d3;
+
font-size: 12px;
+
font-weight: bold;
+
color: #5e5f5f;
+
cursor: pointer;
+
}
+
  
 +
#inPageNav {
 +
    position: fixed;
 +
    display: block;
 +
    top: 50%;
 +
    transform: translateY(-50%);
 +
    right: 83%;
 +
    margin: 0 auto;
 +
    padding: 0;
 +
    box-sizing: border-box;
 +
    list-style: none;
 +
    z-index: 1;
 +
    display: none;
 +
}
  
.igem_2017_menu_wrapper .menu_bottom_padding {  
+
#inPageNav li {
width: 100%;  
+
    display: block;
height: 30px;
+
    padding: 10px 10px 10px 10px;
float:left;
+
    text-align: right;
}
+
    font-family: "Raleway", sans-serif;
 +
}
  
.menu_button.direct_to_page {  
+
#inPageNav li a {
padding-left: 36px;
+
    color: inherit;
}
+
}
  
 +
#inPageNav li a img {
 +
    width: 0;
 +
    height: 0;
 +
    box-sizing: border-box;
 +
    margin-top: -5px;
 +
    padding: 20px;
 +
    background-image: url('https://static.igem.org/mediawiki/2017/6/68/T--IISc-Bangalore--navbar_bullet.png');
 +
    background-size: 40px 40px;
 +
}
  
.igem_2017_menu_wrapper .menu_button .expand_collapse_icon {
+
#inPageNav li a.active img {
width:10%;
+
    background-image: url('https://static.igem.org/mediawiki/2017/2/20/T--IISc-Bangalore--navbar_bullet_active.png');
float:left;
+
    background-size: 40px 40px;
}
+
}
  
.igem_2017_menu_wrapper .menu_button .expand_collapse_icon::before {
+
#inPageNav li a:focus {
content: "+"; 
+
    color: inherit;
}
+
    text-decoration: none;
+
    outline: none;
.open::before {
+
}
content: "-" !important; 
+
}
+
+
+
+
/* styling for the menu buttons on hover */
+
.igem_2017_menu_wrapper .menu_button:hover, .igem_2017_menu_wrapper .submenu_button:hover ,  .submenu_button.current_page:hover {
+
background-color: #3399ff;
+
text-decoration: none;
+
color:#ffffff;  
+
}
+
  
/* styling for the menu button when it is the current page */
+
#inPageNav li a:active {
.current_page {  
+
    text-decoration: none;
background-color:#7fc1f7  !important;
+
}
color:#5e5f5f !important;
+
}
+
  
 +
#inPageNav li a.active {
 +
    font-weight: 800;
 +
}
  
/* styling for the submenu buttons */
+
#inPageNav li:hover {
.igem_2017_menu_wrapper .submenu_button {  
+
    background-color: #f4f4f4;
width: 100%;  
+
}
padding: 10px 0px 10px 34px;  
+
float:left;
+
#contentMain {
background-color:#f2f2f2;  
+
    width: 100%;
border-bottom: 1px solid #d3d3d3;  
+
    float: left;
font-size: 12px;  
+
    display: block;
color: #5e5f5f;  
+
    padding: 0 15% 50px 0;
cursor: pointer;
+
    box-sizing: border-box;
}
+
    position: relative;
 +
    height: auto;
 +
    overflow: auto;
 +
    font-family: "Poppins", sans-serif;
 +
    font-size: 1em;
 +
    line-height: 2;
 +
    background-image: url('https://static.igem.org/mediawiki/2017/4/44/T--IISc-Bangalore--background_final.png');
 +
    background-size: cover;
 +
    background-attachment: fixed;
 +
    padding-left: 20%;
 +
    top: 80px;
 +
}
  
/* wrapper for the submenu items, they are hidden by default*/
+
#contentMain h1 {
.igem_2017_menu_wrapper .submenu_wrapper {
+
    margin: 20px 0;
display:none;
+
    line-height: 1.3;
}
+
    font-family: "Raleway-ExtraBold", sans-serif;
 +
    padding: 0;
 +
    text-align: center;
 +
    border-bottom: 2px solid;
 +
    padding-bottom: 10px;
 +
    box-sizing: border-box;
 +
    font-size: 3em;
 +
}
  
/* when the page size is bigger than 800px, this show/hide control is hidden by default */
+
#contentMain h1 img {
.igem_2017_menu_wrapper #display_menu_control {
+
    vertical-align: text-top;
display:none;
+
    box-sizing: border-box;
text-align:center;
+
    padding-bottom: 8px;
}
+
    height: 50px;
+
}
  
/***************************************************** CONTENT OF THE PAGE ****************************************************/
+
#contentMain h1 img:nth-child(1) {
 +
    margin-right: 10px;
 +
}
  
/* Wrapper for the content */
+
#contentMain h1 img:nth-child(2) {
.igem_2017_content_wrapper {
+
    margin-left: 10px;
width: 81%;
+
}
margin: 2%;
+
display:block;
+
float:left;
+
background-color:white;
+
font-family:Tahoma, Geneva, sans-serif;  
+
}
+
  
 +
#contentMain h1:target {
 +
    padding-top: 80px;
 +
    margin-top: -80px;
 +
}
  
/********************************* HTML STYLING  *********************************/
+
#contentMain h2, h3 {
 +
    margin: 15px 0 15px 0;
 +
    font-family: "Raleway", sans-serif;
 +
    font-weight: 600;
 +
    padding: 0;
 +
}
 +
#contentMain p {
 +
    margin: 15px 0 15px 0;
 +
    line-height: 1.9;
 +
    font-size: 1.25em;
 +
    font-family: "Poppins", sans-serif;
 +
}
 +
#contentMain li li{
 +
    font-size: 1em;
 +
}
 +
#contentMain table {
 +
    background: none;
 +
    border: none;
 +
    margin: auto;
 +
}
  
/* styling for the titles h1 h2 */
+
#contentMain th {
.igem_2017_content_wrapper h1, .igem_2017_content_wrapper h2 {
+
    background: none;
padding:5px 15px;  
+
    border: none;
border-bottom: 0px;  
+
    border-bottom: 2px solid black;
color: #3399ff;
+
}
}
+
  
 +
#contentMain td {
 +
    background: none;
 +
    border: none;
 +
}
  
/* styling for the titles  h3 h4 h5 h6*/
+
.navbar {
.igem_2017_content_wrapper h3, .igem_2017_content_wrapper h4, .igem_2017_content_wrapper h5, .igem_2017_content_wrapper h6 {  
+
    overflow: hidden;
padding:5px 15px;  
+
    padding-right: 60px;
border-bottom:0px;  
+
    background-color: #ffe97c;
color: #000000;
+
    font-family: "Poppins", sans-serif;
}
+
}
  
 +
.navbar a {
 +
    float: right;
 +
    font-size: 14px;
 +
    color: black;
 +
    text-align: center;
 +
    padding: 14px 16px;
 +
    text-decoration: none;
 +
}
  
/* font and text */
+
.dropdown {
.igem_2017_content_wrapper p {  
+
    float: right;
padding: 0px 15px;  
+
    overflow: hidden;
font-size: 13px;
+
    z-index: 100;
}
+
}
  
/* Links */
+
.dropdown .dropbtn, .dropdown a {
.igem_2017_content_wrapper a {  
+
    font-size: 14.5px;  
font-weight: bold;  
+
    border: none;
text-decoration: underline;
+
    outline: none;
text-decoration-color: #3399ff;
+
    color: black;
color: #3399ff;
+
    padding: 13px 24px;
-webkit-transition: all 0.4s ease;
+
    font-family: "Poppins", sans-serif;
-moz-transition: all 0.4s ease;
+
    letter-spacing: 0.05em;
-ms-transition: all 0.4s ease;  
+
}
-o-transition: all 0.4s ease;
+
transition: all 0.4s ease;
+
}
+
  
/* hover for the links */
+
.dropbtn {
.igem_2017_content_wrapper a:hover {  
+
    position: relative;
text-decoration:none;
+
    background-color: rgb(255,255,255);
color:#000000;
+
    background-color: #ffe97c;
}
+
}
  
/* non numbered lists */
+
.dropbtn span {
.igem_2017_content_wrapper ul {
+
    position: absolute;
padding:0px 20px;
+
    height: 100%;
font-size: 13px;
+
    width: 100%;
font-family:Tahoma, Geneva, sans-serif;  
+
    top: 0;
}
+
    left: 0;
 +
}
  
/* numbered lists */
+
.dropbtn a {
.igem_2017_content_wrapper ol {
+
    padding: 0;
padding:0px;
+
    float: none;
font-size: 13px;
+
}
font-family:Tahoma, Geneva, sans-serif;  
+
}
+
  
/* Table */
+
.navbar a:hover, .dropdown:hover .dropbtn {
.igem_2017_content_wrapper table {
+
    background-color: #fff4bd;
width: 97%;
+
}
margin:15px 10px;
+
border: 1px solid #d3d3d3;
+
border-collapse: collapse;  
+
}
+
  
/* table cells */
+
.dropdown-content {
.igem_2017_content_wrapper  td {  
+
    display: none;
padding: 10px;
+
    position: absolute;
vertical-align: text-top;  
+
    background-color: #fff4bd;
border: 1px solid #d3d3d3;  
+
    min-width: 160px;
border-collapse: collapse;  
+
    box-shadow: 0px 13px 10px -2px rgba(0, 0, 0, 0.12);
}
+
}
  
/* table headers */
+
.dropdown-content a {
.igem_2017_content_wrapper th {  
+
    float: none;
padding: 10px;  
+
    color: black;
vertical-align: text-top;  
+
    padding: 12px 16px;
border: 1px solid #d3d3d3;  
+
    text-decoration: none;
border-collapse: collapse;  
+
    display: block;
background-color:#f2f2f2;  
+
    text-align: left;
}
+
    letter-spacing: 0;
 +
}
  
 +
.dropdown-content a:hover {
 +
    background-color: #fffdec;
 +
}
  
/**********************************LAYOUT CLASSES **********************************/
+
.dropdown:hover .dropdown-content {
 +
    display: block;
 +
}
  
/* general class for column divs */
 
.igem_2017_content_wrapper .column  {
 
padding: 10px 0px;
 
float:left;
 
}
 
  
/* class for a full width column */
+
#logoImg {
.column .full_size {
+
    height: 70px;
width:100%;  
+
    position: fixed;
}
+
    top: 20px;
 +
    left: 0;
 +
    z-index: 2;
 +
    background-color: #FFE97C;
 +
    border-radius: 0 0 100px 0;
 +
    padding: 5px 80px 10px 10px;
 +
    border: none;
 +
}
  
/* styling for images in a full width column*/
+
figure img {
.column.full_size img {  
+
    display: block;
width:97%;  
+
    margin: auto;
padding: 10px 15px;
+
}
}
+
  
/* class for a half width column */
+
figurecaption {
.column.half_size {
+
    text-align: center;
width: 50%;  
+
    font-style: italic;
}
+
    display: block;
/* styling for images in a half width column*/
+
    margin: auto;
.column.half_size img {
+
}
width: 94.5%;
+
padding: 10px 15px;
+
}
+
  
 +
.clearfix::after {
 +
    content: "";
 +
    clear: both;
 +
    display: table;
 +
}
  
 +
.fch {
 +
    border-bottom: 2px solid !important;
 +
}
  
 +
.fch tr:nth-child(1) th:nth-child(1) {
 +
    border-bottom: 2px solid !important;
 +
}
  
/********************************* SUPPORT CLASSES ********************************/
+
.fch tr th:nth-child(1) {
 +
    border: none !important;
 +
}
  
/* class that clears content below*/
+
#contentMain li {
.igem_2017_content_wrapper .clear {
+
    font-size: 1.25em;
clear:both;
+
    line-height: 1.9;
}
+
}
+
+
/* adds extra spacing when clearing content */
+
.igem_2017_content_wrapper  .clear.extra_space {
+
height: 30px;
+
}
+
  
 +
#contentMain table li {
 +
    font-size: 1em;
 +
}
  
/* highlight class, makes content slightly smaller */
+
.gifAnimated {
.igem_2017_content_wrapper .highlight {  
+
    position: absolute;
margin: 0px 15px;
+
    width: 100%;
padding: 15px 0px;
+
    height: calc(100% - 61px);
}
+
    background-size: contain;
 +
    background-position: center; 
 +
    background-repeat: no-repeat;
 +
    top: 68px;
 +
    left: 0;
 +
}
  
 +
#headerImg {
 +
    margin-left: -30.76%;
 +
    margin-right: -23.07%;
 +
}
  
/* highlight class, adds a gray background */
+
/* Footer styling */
.igem_2017_content_wrapper .highlight.gray {
+
background-color: #f2f2f2;
+
}
+
  
/* highlight with decoration blue line on top */
+
        #pagefooter {
.igem_2017_content_wrapper .highlight.blue_top {
+
            width: 100%;
    border-top: 4px solid #3399ff;
+
            position: fixed;
}
+
            bottom: -250px;
 +
            left: 0;
 +
            background-color: #FFE97C;
 +
            transition: all 0.5s ease;
 +
            padding-left: 10px;
 +
            z-index: 2;
 +
            font-family: "Poppins", sans-serif;
 +
        }
 +
        #smallfooter {
 +
            transition: all 0.5s ease;
 +
        }
 +
        .expanded {
 +
            bottom: 0 !important;
 +
            transition: all 0.5s ease;
 +
        }
 +
        .expanded #smallfooter {
 +
            opacity: 0;
 +
            transition: all 0.5s ease;
 +
        }
 +
        .footerarrow {
 +
            position: absolute;
 +
            top: 4px;
 +
            left: 50%;
 +
            transform: translateX(-50%);
 +
            transition: transform 0.5s ease-in;
 +
            height: 12px;
 +
        }
 +
        .inverted {
 +
            transform: rotate(180deg);
 +
            transition: transform 0.5 ease-in;
 +
        }
 +
        #bigfooter table {
 +
            border: none;
 +
            background: none;
 +
        }
 +
        #bigfooter table tr td {
 +
            border: none;
 +
            background: none;
 +
        }
 +
        #bigfooter table tr th {
 +
            border: none;
 +
            background: none;
 +
            font-family: "Raleway-ExtraBold", sans-serif;
 +
            font-size: 2em;
 +
            letter-spacing: 1px;
 +
            text-transform: uppercase;
 +
        }
 +
        #footericons {
 +
            float: right;
 +
            margin-right: 20px;
 +
        }
 +
        #footericons img{
 +
            height: 18px;
 +
            margin-right: 10px;
 +
            margin-bottom: 2px;
 +
        }
 +
        #bigfooter {
 +
            width: 100%;
 +
            position: relative;
 +
            display: block;
 +
            height: 250px;
 +
        }
 +
        #footersponsors {
 +
            width: 60%;
 +
            float: left;
 +
        }
 +
        #footersponsors img {
 +
            height: 100%;
 +
        }
 +
        #footercontact {
 +
            width: 40%;
 +
            float: right;
 +
        }
 +
        #footercontact img {
 +
            height: 50px;
 +
        }
 +
        #footersponsors td {
 +
            text-align: center;
 +
            height: 70px;
 +
        }
  
/* highlight with a full blue border decoration */
 
.igem_2017_content_wrapper .highlight.blue_border {
 
    border: 4px solid  #3399ff;
 
}
 
 
 
/* button class */
 
.igem_2017_content_wrapper .button{
 
max-width: 35%;
 
margin: 30px auto;
 
padding: 12px 10px;
 
    background-color: #3399ff;
 
    text-align: center;
 
  color: #ffffff;
 
-webkit-transition: all 0.4s ease;
 
-moz-transition: all 0.4s ease;
 
-ms-transition: all 0.4s ease;
 
-o-transition: all 0.4s ease; transition: all 0.4s ease; 
 
}
 
 
/* styling for button on hover */
 
.igem_2017_content_wrapper .button:hover{
 
background-color: #3399ff;
 
    color: #000000;
 
}
 
 
 
 
 
/***************************************************** RESPONSIVE STYLING ****************************************************/
 
 
/* IF THE SCREEN IS LESS THAN 1200PX */
 
@media only screen and (max-width: 1200px) {
 
 
#content {width:100%; }
 
.igem_2017_menu_wrapper {width:15%; right:0;}
 
.highlight {padding:10px 0px;}
 
.igem_2017_menu_wrapper #display_menu_control { display:none; }
 
#menu_content { display:block;}
 
.menu_button.direct_to_page {padding-left: 17px;}
 
 
}
 
 
/* IF THE SCREEN IS LESS THAN 800PX */
 
@media only screen and (max-width: 800px) {
 
 
.igem_2017_menu_wrapper { width:100%; height: 15%; position:relative; left:0%;}
 
.igem_2017_content_wrapper {width:100%; margin-left:0px;}
 
.column.half_size  {width:100%; }
 
.column.full_size img, .column.half_size img {  width: 100%; padding: 10px 0px;}
 
.highlight {padding:15px 5px;}
 
.igem_2017_menu_wrapper #display_menu_control { display:block; }
 
#menu_content { display:none;}
 
.igem_2017_menu_wrapper .menu_button .expand_collapse_icon { width: 5%; }
 
.menu_bottom_padding {display:none;}
 
.menu_button.direct_to_page { padding-left: 36px; }
 
}
 
 
 
 
 
/* special class that the system uses to make sure the team wants a page to be evaluated */
 
.judges-will-not-evaluate {
 
    width: 96.6%;
 
  margin: 5px 15px;
 
  display: block;
 
border: 4px solid #3399ff;
 
    font-weight: bold;
 
}
 
 
 
</style>
 
</style>
  
 +
<div id="contentWrapper">
 +
<div style="position: fixed; width: 100%; top: 16px; left: 0; z-index: 1;">
 +
<div class="navbar">
  
<!--- THIS IS WHERE THE HTML BEGINS --->
+
  <div class="dropdown">
 +
    <div class="dropbtn">COMMUNITY</div>
 +
    <div class="dropdown-content">
 +
      <a href="https://2017.igem.org/Team:IISc-Bangalore/HP/Silver">Human Practices</a>
 +
      <a href="https://2017.igem.org/Team:IISc-Bangalore/HP/Gold_Integrated">Integrated Practices</a>
 +
      <a href="https://2017.igem.org/Team:IISc-Bangalore/Collaborations">Collaborations</a>
 +
      <a href="https://2017.igem.org/Team:IISc-Bangalore/Engagement">Public Engagement</a>
 +
      <a href="https://2017.igem.org/Team:IISc-Bangalore/Safety">Safety</a>
  
 +
    </div>
 +
  </div>
 +
  <div class="dropdown">
 +
    <div class="dropbtn"><a href="https://2017.igem.org/Team:IISc-Bangalore/Hardware"><span></span></a>HARDWARE</div>
 +
    <div class="dropdown-content">
 +
      <a href="https://2017.igem.org/Team:IISc-Bangalore/Hardware">GCODe</a>
 +
      <a href="https://2017.igem.org/Team:IISc-Bangalore/Hardware/GCODe-Mini">Mini</a>
 +
      <a href="https://2017.igem.org/Team:IISc-Bangalore/Hardware/GCODe-Pro">Pro</a>
 +
      <a href="https://2017.igem.org/Team:IISc-Bangalore/Hardware/Results">Results</a>
 +
      <a href="https://2017.igem.org/Team:IISc-Bangalore/Hardware/Notebook">Hardware Evolution</a>
 +
      <a href="https://2017.igem.org/Team:IISc-Bangalore/Hardware/Documentation">Build Your Own</a>
 +
    </div>
 +
  </div>
  
 +
  <div class="dropdown">
 +
    <div class="dropbtn">LAB</div>
 +
    <div class="dropdown-content">
 +
      <a href="https://2017.igem.org/Team:IISc-Bangalore/Assembly">Assembly</a>
 +
      <a href="https://2017.igem.org/Team:IISc-Bangalore/Results">Results</a>
 +
      <a href="https://2017.igem.org/Team:IISc-Bangalore/Demonstrate">Demonstrate</a>
 +
      <a href="https://2017.igem.org/Team:IISc-Bangalore/Notebook">Notebook</a>
 +
      <a href="https://2017.igem.org/Team:IISc-Bangalore/Protocols">Protocols</a>
 +
      <a href="https://2017.igem.org/Team:IISc-Bangalore/InterLab">InterLab</a>
 +
    </div>
 +
  </div>
  
<head>  
+
  <div class="dropdown">
 +
    <div class="dropbtn">PROJECT</div>
 +
    <div class="dropdown-content">
 +
      <a href="https://2017.igem.org/Team:IISc-Bangalore/Description">iFLOAT</a>
 +
      <a href="https://2017.igem.org/Team:IISc-Bangalore/Model">Model</a>
 +
      <a href="https://2017.igem.org/Team:IISc-Bangalore/Experiments">Experiments</a>
 +
      <a href="https://2017.igem.org/Team:IISc-Bangalore/Parts">Parts</a>
 +
      <a href="https://2017.igem.org/Team:IISc-Bangalore/Design">Design</a>
 +
    </div>
 +
  </div>
  
<!-- This tells the browser that your page is responsive -->
+
  <div class="dropdown">
<meta name="viewport" content="width=device-width, initial-scale=1">  
+
    <div class="dropbtn">ABOUT</div>
 +
    <div class="dropdown-content">
 +
      <a href="https://2017.igem.org/Team:IISc-Bangalore/Team">Team</a>
 +
      <a href="https://2017.igem.org/Team:IISc-Bangalore/Philosophy">Philosophy</a>
 +
      <a href="https://2017.igem.org/Team:IISc-Bangalore/Attributions">Attributions</a>
 +
    </div>
 +
  </div>
  
</head>
+
  <div class="dropdown">
 
+
    <a href="https://2017.igem.org/Team:IISc-Bangalore">HOME</a>
 
+
  </div>
 
+
</div>
<div class="igem_2017_menu_wrapper" >
+
   <a href="https://2017.igem.org/Team:IISc-Bangalore"><img id="logoImg" src="/wiki/images/6/65/T--IISc-Bangalore--logo-new.png"></a>
 
+
</div>
 
+
 
+
<a href="https://2017.igem.org/Team:IISc-Bangalore">
+
<img src="http://placehold.it/350x150">
+
</a>
+
 
+
 
+
<!-- this div is hidden by default and will only be displayed if the screen size is too small -->
+
<div class="menu_button" id="display_menu_control">
+
MENU 
+
</div>
+
 
+
<div id="menu_content">
+
+
 
+
 
+
 
+
<a href="https://2017.igem.org/Team:IISc-Bangalore">
+
<div class="menu_button direct_to_page">
+
HOME
+
</div>
+
</a>
+
 
+
 
+
 
+
<div class="menu_button">
+
<div class="expand_collapse_icon">  </div> TEAM
+
</div>  
+
 
+
<div class="submenu_wrapper" id="team_submenu">
+
+
<a href="https://2017.igem.org/Team:IISc-Bangalore/Team">
+
<div class="submenu_button" id="Team_page">
+
Team
+
</div>
+
</a>
+
 
+
<a href="https://2017.igem.org/Team:IISc-Bangalore/Collaborations">
+
<div class="submenu_button"  id="Collaborations_page">
+
Collaborations
+
</div>
+
</a>
+
+
+
</div>
+
 
+
 
+
+
+
 
+
<div class="menu_button">
+
<div class="expand_collapse_icon">  </div> PROJECT
+
</div>
+
 
+
<!-- project submenu -->
+
<div class="submenu_wrapper">
+
+
<a href="https://2017.igem.org/Team:IISc-Bangalore/Description">
+
<div class="submenu_button"  id="Description_page">
+
Description
+
</div>
+
</a>
+
 
+
<a href="https://2017.igem.org/Team:IISc-Bangalore/Design">
+
<div class="submenu_button"  id="Design_page">
+
Design
+
</div>
+
</a>
+
 
+
<a href="https://2017.igem.org/Team:IISc-Bangalore/Experiments">
+
<div class="submenu_button"  id="Experiments_page">
+
Experiments
+
</div>
+
</a>
+
 
+
 
+
<a href="https://2017.igem.org/Team:IISc-Bangalore/Notebook">
+
<div class="submenu_button"  id="Notebook_page">
+
Notebook
+
</div>
+
</a>
+
 
+
<a href="https://2017.igem.org/Team:IISc-Bangalore/InterLab">
+
<div class="submenu_button"  id="InterLab_page">
+
InterLab
+
</div>
+
</a>
+
 
+
<a href="https://2017.igem.org/Team:IISc-Bangalore/Contribution">
+
<div class="submenu_button"  id="Contribution_page">
+
Contribution
+
</div>
+
</a>
+
 
+
<a href="https://2017.igem.org/Team:IISc-Bangalore/Model">
+
<div class="submenu_button"  id="Model_page">
+
Model
+
</div>
+
</a>
+
 
+
<a href="https://2017.igem.org/Team:IISc-Bangalore/Results">
+
<div class="submenu_button"  id="Results_page">
+
Results
+
</div>
+
</a>
+
 
+
 
+
<a href="https://2017.igem.org/Team:IISc-Bangalore/Demonstrate">
+
<div class="submenu_button"  id="Demonstrate_page">
+
Demonstrate
+
</div>
+
</a>
+
 
+
<a href="https://2017.igem.org/Team:IISc-Bangalore/Improve">
+
<div class="submenu_button"  id="Improve_page">
+
Improve
+
</div>
+
</a>
+
 
+
<a href="https://2017.igem.org/Team:IISc-Bangalore/Attributions">
+
<div class="submenu_button"  id="Attributions_page">
+
Attributions
+
</div>
+
</a>
+
 
+
</div>
+
 
+
+
+
+
+
 
+
<div class="menu_button">
+
<div class="expand_collapse_icon">  </div> PARTS
+
</div>
+
+
<!-- parts submenu -->
+
<div class="submenu_wrapper">
+
+
<a href="https://2017.igem.org/Team:IISc-Bangalore/Parts">
+
<div class="submenu_button"  id="Parts_page">
+
Parts
+
</div>
+
</a>
+
 
+
<a href="https://2017.igem.org/Team:IISc-Bangalore/Basic_Part">
+
<div class="submenu_button"  id="Basic_Part_page">
+
Basic Parts
+
</div>
+
</a>
+
 
+
<a href="https://2017.igem.org/Team:IISc-Bangalore/Composite_Part">
+
<div class="submenu_button"  id="Composite_Part_page">
+
Composite Parts
+
</div>
+
</a>
+
 
+
<a href="https://2017.igem.org/Team:IISc-Bangalore/Part_Collection">
+
<div class="submenu_button"  id="Part_Collection_page">
+
Part Collection
+
</div>
+
</a>
+
</div>
+
 
+
+
+
+
+
 
+
<a href="https://2017.igem.org/Team:IISc-Bangalore/Safety">
+
<div class="menu_button direct_to_page">
+
SAFETY
+
</div>
+
</a>
+
 
+
 
+
 
+
 
+
 
+
 
+
 
+
<div class="menu_button" >
+
<div class="expand_collapse_icon">  </div> HUMAN PRACTICES
+
</div>
+
 
+
<!-- human practices submenu -->
+
<div class="submenu_wrapper">
+
 
+
<a href="https://2017.igem.org/Team:IISc-Bangalore/HP/Silver">
+
<div class="submenu_button"   id="Silver_page">
+
Silver HP
+
</div>
+
</a>
+
 
+
<a href="https://2017.igem.org/Team:IISc-Bangalore/HP/Gold_Integrated">
+
<div class="submenu_button" id="Gold_Integrated_page">
+
Integrated and Gold
+
</div>
+
</a>
+
 
+
 
+
<a href="https://2017.igem.org/Team:IISc-Bangalore/Engagement">
+
<div class="submenu_button"  id="Engagement_page">
+
Public Engagement
+
</div>
+
</a>
+
 
+
</div>
+
 
+
 
+
<div class="menu_button">
+
<div class="expand_collapse_icon">  </div> AWARDS
+
</div>
+
 
+
<!-- awards submenu -->
+
<div class="submenu_wrapper">
+
 
+
<a href="https://2017.igem.org/Team:IISc-Bangalore/Applied_Design">
+
<div class="submenu_button"  id="Applied_Design_page">
+
Applied Design
+
</div>
+
</a>
+
 
+
<a href="https://2017.igem.org/Team:IISc-Bangalore/Entrepreneurship">
+
<div class="submenu_button"  id="Entrepreneurship_page">
+
Entrepreneurship
+
</div>
+
</a>
+
 
+
<a href="https://2017.igem.org/Team:IISc-Bangalore/Hardware">
+
<div class="submenu_button"  id="Hardware_page">
+
Hardware
+
</div>
+
</a>
+
 
+
<a href="https://2017.igem.org/Team:IISc-Bangalore/Measurement">
+
<div class="submenu_button"  id="Measurement_page">
+
Measurement
+
</div>
+
</a>
+
 
+
<a href="https://2017.igem.org/Team:IISc-Bangalore/Model">
+
<div class="submenu_button"  id="Model_page">
+
Model
+
</div>
+
</a>
+
 
+
<a href="https://2017.igem.org/Team:IISc-Bangalore/Plant">
+
<div class="submenu_button"  id="Plant_page">
+
Plant
+
</div>
+
</a>
+
 
+
 
+
<a href="https://2017.igem.org/Team:IISc-Bangalore/Software">
+
<div class="submenu_button"  id="Software_page">
+
Software
+
</div>
+
</a>
+
 
+
</div>
+
 
+
<a href="https://igem.org/2017_Judging_Form?team=IISc-Bangalore">
+
<div class="menu_button direct_to_page">
+
JUDGING FORM
+
</div>
+
</a>
+
 
+
 
+
+
<div class="menu_bottom_padding" >
+
</div>
+
+
</div>
+
  
 +
<div id="pagefooter" class="clearfix">
 +
        <div id="smallfooter" class="clearfix">
 +
            <div id="footericons">
 +
                <a href="https://www.facebook.com/iiscbangaloreigem/"><img src="https://static.igem.org/mediawiki/2017/4/4b/T--IISc-Bangalore--fb_new.svg" /></a><a href="https://twitter.com/igem_iiscUG"><img src="https://static.igem.org/mediawiki/2017/b/be/T--IISc-Bangalore--twitter_new.svg" /></a><a href="mailto:igem.2017.iisc@gmail.com"><img src="https://static.igem.org/mediawiki/2017/e/e8/T--IISc-Bangalore--mail.svg" /></a>
 +
            </div>
 +
        </div>
 +
        <img class="footerarrow" src="https://static.igem.org/mediawiki/2017/6/62/T--IISc-Bangalore--arrow.png" width="20px" />
 +
        <div id="bigfooter" class="clearfix">
 +
            <div id="footersponsors">
 +
<table style="margin: auto">
 +
<tr>
  
 +
<th colspan="6">Sponsors</th>
  
 +
</tr>
 +
<tr>
 +
<td colspan="2"><a href="http://www.iisc.ac.in/"><img src="https://static.igem.org/mediawiki/2017/8/82/T--IISc-Bangalore--iisc.png"></a></td>
 +
<td colspan="2"><a href="http://www.dbtindia.nic.in/"><img src="https://static.igem.org/mediawiki/2017/7/78/T--IISc-Bangalore--dbt.png"></a></td>
 +
<td colspan="2"><a href="http://www.dbtindia.nic.in/ibec-indian-biological-engineering-competition/"><img src="https://static.igem.org/mediawiki/2017/8/89/T--IISc-Bangalore--ibec.png"></a></td>
 +
</tr>
 +
<tr>
 +
<td colspan="3"><a href="https://www.justdial.com/Tirunelveli/South-India-Bottling-Co-Pvt-Ltd-Gangaikondan/0462P462STD2100023_BZDET"><img src="https://static.igem.org/mediawiki/2017/f/f4/T--IISc-Bangalore--sibc-updated.png"></a></td>
 +
<td colspan="3"><a href="http://www.snapgene.com/"><img src="https://static.igem.org/mediawiki/2017/4/41/T--IISc-Bangalore--snapgene2.png"></a></td>
 +
</tr>
  
 +
                </table>
 +
            </div><div id="footercontact">
 +
                <table style="margin: auto">
 +
                    <tr><th colspan="6">Contact</th></tr>
 +
                    <tr><td>&nbsp;</td></tr>
 +
                    <tr>
 +
                        <td><a href="https://www.facebook.com/iiscbangaloreigem/"><img src="https://static.igem.org/mediawiki/2017/4/4b/T--IISc-Bangalore--fb_new.svg" /></a></td>
 +
                        <td><a href="https://twitter.com/igem_iiscUG"><img src="https://static.igem.org/mediawiki/2017/b/be/T--IISc-Bangalore--twitter_new.svg" /></a></td>
 +
                        <td><a href="mailto:igem.2017.iisc@gmail.com"><img src="https://static.igem.org/mediawiki/2017/e/e8/T--IISc-Bangalore--mail.svg" /></a></td>
 +
                    </tr>
 +
                    <tr><td>&nbsp;</td></tr>
 +
                </table>
 +
            </div>
 +
        </div>
 +
    </div>
 
</div>
 
</div>
  
 
+
<script type="text/javascript" src="https://2017.igem.org/Template:IISc-Bangalore/slide-nav?action=raw&ctype=text/javascript"></script>
 
+
<script>
<!-- start of content -->
+
    $("#pagefooter").click(function() {
<div class="igem_2017_content_wrapper">
+
        $("#pagefooter").toggleClass("expanded");
<h1>IISc-Bangalore</h1>
+
        $(".footerarrow").toggleClass("inverted");
 +
    });
 +
$(document).ready(function(){
 +
    var headings = document.getElementsByTagName("h1");
 +
    var i;
 +
    for (i=0; i<headings.length; i++) {
 +
        var sometext = headings[i].innerHTML;
 +
        console.log(sometext);
 +
        headings[i].innerHTML = "<img src='https://static.igem.org/mediawiki/2017/c/c9/T--IISc-Bangalore--title_flank_left.png'>"+sometext+"<img src='https://static.igem.org/mediawiki/2017/a/a2/T--IISc-Bangalore--title_flank_right.png'>";
 +
    }
 +
})
 +
</script>
 +
</html>

Latest revision as of 03:45, 2 November 2017