Difference between revisions of "Template:SJTU-software"

(Prototype team template page)
 
 
(159 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
<html>
 
<html>
<script>
 
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
 
  
$(document).ready(function() {
+
<style type="text/css">
  
$("#HQ_page").attr('id','');
+
    #sideMenu, #top_title, .patrollink  {display:none;}
+
    #content {background:transparent; margin-top:30px; padding:0px; width:100%;}
 +
    body {
 +
        font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, serif;
 +
        font-size: 18px;
 +
        line-height: 1.5em;
 +
        color: #6b3b25;
 +
        background: url(https://static.igem.org/mediawiki/2018/b/b9/T--SJTU-software--background.png);
 +
        background-size: 100%;
 +
}
  
//highlight current page on the menu
+
    ul{
highlight_current_page_menu();
+
        list-style:none;
+
//accessing submenus
+
    }
$(".menu_item").click(function(){
+
    .wrapper {
$(".submenu_control_icon", this).toggleClass("open");
+
        width: 1000px;
$(this).next(".submenu").fadeToggle(400);
+
        margin: auto auto auto auto;
});
+
        background: #dedad3;
+
        -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
//mobile menu access
+
        -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
$(".igem_2018_team_mobile_bar").click(function(){
+
        -o-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
$(this).next().toggleClass("displaying_menu");
+
        box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
});
+
        }
+
    /*-----------------------------------------------------------------------------------*/
});
+
    /* HEADER(url(https://raw.githubusercontent.com/sjtusoftware2018/2018iGEM_wiki/master/images/bg.png))
 +
    /*-----------------------------------------------------------------------------------*/
 +
    header {
 +
        background: url(https://static.igem.org/mediawiki/2018/b/b9/T--SJTU-software--header.png);
 +
        min-height: 155px;
 +
        }
 +
    header #logo {
 +
        margin-top: 36px;
 +
        margin-bottom: 20px;
 +
        float: left;
 +
        }
 +
    header #logo:hover {
 +
        opacity: 0.8;
 +
        }
 +
    header #logo img {
 +
        display: block;
 +
        margin: 0 0 0 55px;
 +
        }
 +
    header #title {
 +
        color: #6b3b25;
 +
        margin-top: 45px;
 +
        margin-left: 260px;
 +
        font-size: 42px;
 +
        font-weight: 700;
 +
        text-shadow: 0px 1px 0 rgba(255, 255, 255, 0.5);
 +
        /* text-align: center; */
 +
    }
 +
    header #subtitle{
 +
        color: #6b3b25;
 +
        margin-top: 26px;
 +
        margin-left: 260px;
 +
        font-size: 26px;
 +
        font-weight: 500;
 +
        text-shadow: 0px 1px 0 rgba(255, 255, 255, 0.5);
 +
    }
 +
    /*---------------------------------------------------------------*/
  
 +
    /*-----------------------------------------------------------------------------------*/
 +
    /* Nav
 +
    /*-----------------------------------------------------------------------------------*/
 +
    nav {
 +
        background: url(https://static.igem.org/mediawiki/2018/5/54/T--SJTU-software--nav.png) no-repeat top center;
 +
        height: 65px;
 +
        width: 1038px;
 +
        margin-left: -20px;
 +
        font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial;
 +
        font-size: 16px;
 +
        font-weight: 700;
 +
        }
 +
    nav #menu-icon {
 +
        display: none;
 +
        background: red;
 +
        width: 40px;
 +
        height: 40px;
 +
        }
 +
    nav #nav {
 +
        display: block;
 +
        margin-left: 35px;
 +
        /* substract 15 from the link padding */
  
function highlight_current_page_menu() {
+
        }
+
    nav #nav > li {
var page_url="https://2018.igem.org/";
+
        display: block;
page_url = page_url + wgPageName;
+
        float: left;
$("a[href$='"+ page_url +"']").children().addClass("current_page");
+
        /* Subnavigation ----------------------------------------------------*/
+
        }
//if the page is in a submenu, open the submenu and make the appropiate changes
+
    nav #nav > li:hover a,
if( $( ".current_page" ).hasClass( "submenu_item" )){
+
    nav #nav > li.current-menu-item a,
+
    nav #nav > li.current_page_item a {
$(".current_page").parent().parent().fadeToggle(400);
+
        background: #62493d;
$(".current_page").parent().parent().prev().addClass("current_page");
+
        text-shadow: 0px 2px 0px #444;
$(".menu_item.current_page > .submenu_control_icon").toggleClass("open");
+
        }
+
        nav #nav > li > a {
}
+
        display: block;
}
+
        line-height: 65px;
 +
        padding-left: 15px;
 +
        padding-right: 15px;
 +
        text-decoration: none;
 +
        color: #dedad3;
 +
        text-shadow: 0px 2px 0px #c68301;
 +
        }
 +
    nav #nav > li.important a {
 +
        color: #ffe09f;
 +
    }
 +
    nav #nav > li ul {
 +
        margin-top: 20px;
 +
        background: #62493d;
 +
    }
 +
    nav #nav > li ul li {
 +
        border-bottom: 1px solid #806d63;
 +
    }
 +
    nav #nav > li ul li:last-child {
 +
        border-bottom: none;
 +
    }
 +
    nav #nav > li ul a {
 +
        display: block;
 +
        color: #dedad3;
 +
        text-decoration: none;
 +
        line-height: 1.5em;
 +
        padding: 15px;
 +
    }
 +
    nav #nav > li ul a:hover {
 +
        color: #e09402;
 +
    }
 +
    /*-----------------------------------------------------------------------------------*/
  
 +
    /*** ESSENTIAL STYLES ***/
  
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
+
    .sf-menu, .sf-menu * {
</script>
+
        margin: 0;
 +
        padding: 0;
 +
        list-style: none;
 +
    }
 +
 
 +
    .sf-menu ul {
 +
        position: absolute;
 +
        top: -999em;
 +
        margin-left:            0em;
 +
        width: 10em; /* left offset of submenus need to match (see below) */
  
 +
    }
 +
    .sf-menu ul li {
 +
        width: 100%;
 +
    }
 +
    .sf-menu li:hover {
 +
        visibility: inherit; /* fixes IE7 'sticky bug' */
 +
    }
 +
    .sf-menu li {
 +
        float: left;
 +
        position: relative;
 +
    }
 +
    .sf-menu a {
 +
        display: block;
 +
        position: relative;
 +
    }
 +
    .sf-menu li:hover ul,
 +
    .sf-menu li.sfHover ul {
 +
        left: 0;
 +
        top: 2.5em; /* match top ul list item height */
 +
        z-index: 99;
 +
    }
 +
    ul.sf-menu li:hover li ul,
 +
    ul.sf-menu li.sfHover li ul {
 +
        top: -999em;
 +
    }
 +
    ul.sf-menu li li:hover ul,
 +
    ul.sf-menu li li.sfHover ul {
 +
        left: 10em; /* match ul width */
 +
        top: 0;
 +
    }
 +
    ul.sf-menu li li:hover li ul,
 +
    ul.sf-menu li li.sfHover li ul {
 +
        top: -999em;
 +
    }
 +
    ul.sf-menu li li li:hover ul,
 +
    ul.sf-menu li li li.sfHover ul {
 +
        left: 10em; /* match ul width */
 +
        top: 0;
 +
    }
 +
    /* MAIN
 +
    /*-----------------------------------------------------------------------------------*/
 +
    #main {
 +
        min-height: 500px;
 +
        position: relative;
 +
        border-top: 5px solid #c6c2bc;
 +
        }
 +
    #main .tagline {
 +
        font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial;
 +
        line-height: 1.3em;
 +
        font-size: 36px;
 +
        font-weight: 700;
 +
        text-shadow: 0px 1px 0 rgba(255, 255, 255, 0.5);
 +
        text-align: center;
 +
        margin-bottom: 40px;
 +
        margin-right: 30px;
 +
        margin-left: 30px;
 +
        }
  
<style>
+
    /* cf: contain floats*/
/**************************************************************************************************************************************************************************************************/
+
  
 +
    .cf:before,
 +
    .cf:after {
 +
        content: " "; /* 1 */
 +
        display: table; /* 2 */
 +
    }
  
 +
    .cf:after {
 +
        clear: both;
 +
    }
  
/**************************************************************************************************************************************************************************************************/
+
    /*
/* DEFAULT WIKI SETTINGS */
+
    * For IE 6/7 only
/**************************************************************************************************************************************************************************************************/
+
    * Include this rule to trigger hasLayout and contain floats.
 +
    */
  
 +
    .cf {
 +
        *zoom: 1;
 +
    }
  
#home_logo, #sideMenu { display:none; }
+
    /* ==========================================================================*/
#sideMenu, #top_title, .patrollink  {display:none;}
+
#content { margin-left:0px; margin-top:-7px; padding:0px; width:100%;}
+
body {background-color:white; }
+
#bodyContent h1, #bodyContent h2, #bodyContent h3, #bodyContent h4, #bodyContent h5 { margin-bottom: 0px; }
+
  
.judges-will-not-evaluate { border: 4px solid #e4dede; padding: 2% !important; width: 92%!important;}
+
    .slider-wrapper{
 +
        margin: 30px auto 0px auto;
 +
        width: 940px;
 +
    }
 +
   
 +
    /* The Nivo Slider styles */
 +
    .nivoSlider {
 +
        position:relative;
 +
        width:100%;
 +
        height:auto;
 +
        overflow: hidden;
 +
       
 +
        border: 5px solid #fff;
 +
        margin-left: -5px; /* Adjust 5px because of the border width 5px*/
 +
       
 +
        -webkit-box-shadow: 0px 0px 5px rgba(0,0,0,.2);  
 +
        -moz-box-shadow: 0px 0px 5px rgba(0,0,0,.2);
 +
        -o-box-shadow: 0px 0px 5px rgba(0,0,0,.2);
 +
        box-shadow: 0px 0px 5px rgba(0,0,0,.2);
 +
       
 +
    }
 +
    .nivoSlider img {
 +
        position:absolute;
 +
        top:0px;
 +
        left:0px;
 +
        max-width: none;
 +
    }
  
 +
    .nivo-main-image {
 +
        display: block !important;
 +
        position: relative !important;
 +
        width: 100% !important;
 +
    }
  
/**************************************************************************************************************************************************************************************************/
+
    /* If an image is wrapped in a link */
/* MENU */
+
    .nivoSlider a.nivo-imageLink {
/**************************************************************************************************************************************************************************************************/
+
        position:absolute;
 
+
        top:0px;
/*this wraps the whole of the menu*/
+
        left:0px;
.igem_2018_team_menu {
+
        width:100%;
background-color:#c4baba;
+
        height:100%;
border-left: 1px solid #c4baba;
+
        border:0;
display:block;
+
        padding:0;
float:right;
+
        margin:0;
height:100vh;
+
        z-index:6;
max-width: 270px;
+
        display:none;
overflow-y: auto;
+
    }
overflow-x: hidden;
+
    /* The slices and boxes in the Slider */
padding:0px;
+
    .nivo-slice {
position:fixed;
+
        display:block;
right:0%;
+
        position:absolute;
text-align:left;
+
        z-index:5;
width: 15%;
+
        height:100%;
}
+
        top:0;
 
+
    }
 
+
    .nivo-box {
.igem_2018_team_menu.displaying_menu{
+
        display:block;
display:block;
+
        position:absolute;
}
+
        z-index:5;
 
+
        overflow:hidden;
.igem_2018_team_menu  a {
+
    }
color: #484848;
+
    .nivo-box img { display:block; }
text-decoration:none;
+
}
+
 
+
.igem_2018_team_menu img {
+
width:100%;
+
}
+
 
+
 
+
.igem_2018_team_menu .menu_item {
+
    background-color: #c4baba;
+
    border-bottom: 1px solid #928b8b;
+
    clear: both;
+
color: #484848;
+
    cursor: pointer;
+
float: left;
+
    font-size: 120%;
+
    font-weight: bold;
+
    padding: 15px 0px 15px 5%;
+
  width: 100%;
+
}
+
 
+
.igem_2018_team_menu .menu_item.direct_link {
+
color: #484848;
+
padding-left: 15%;
+
}
+
.igem_2018_team_menu .menu_item:hover {
+
background-color: #ecb656;
+
}
+
 
+
 
+
.igem_2018_team_menu .menu_item .submenu_control_icon {
+
color: #484848;
+
float: left;
+
width: 10%;
+
}
+
 
+
/* submenu icon "+"  "-"*/
+
.igem_2018_team_menu .menu_item .submenu_control_icon::before {
+
content: "+";
+
}
+
 
+
/* submenu icon "+"  "-"*/
+
.igem_2018_team_menu .menu_item .submenu_control_icon.open::before {
+
content: "-";
+
}
+
 
+
/*submenu wrapper*/
+
.igem_2018_team_menu .submenu{
+
background-color: #e4dede;
+
clear:both;
+
display:none;
+
float: left; 
+
width:100%;
+
}
+
 
+
/*styling for a submenu item*/
+
.igem_2018_team_menu .submenu .submenu_item {
+
border-bottom: 1px solid #c4baba;
+
  color: #635d5d;
+
    height: 30px;
+
  float: left;
+
    font-size: 110%;
+
font-weight: bold;
+
    padding: 12px 0px 0px 15%;
+
    width: 100%;
+
}
+
 
+
.igem_2018_team_menu .submenu .submenu_item:hover {
+
background-color: #f3bd5d;
+
}
+
 
+
 
+
.igem_2018_team_menu .submenu .submenu_item.current_page,
+
.igem_2018_team_menu .menu_item.current_page,
+
.igem_2018_team_menu .menu_item.direct_link.current_page {
+
background-color:#7acbd8;
+
}
+
 
+
 
+
 
+
/*mobile menu bar styling*/
+
/**************************************************************************************************************************************************************************************************/
+
 
+
 
+
.igem_2018_team_mobile_bar {
+
background-color:#e4dede;
+
border-bottom: 1px solid #c4baba;
+
cursor:pointer;
+
display:none;
+
float:left;
+
margin-top: 0;
+
padding: 5px 0;
+
position:fixed;
+
width:100%;
+
}
+
 
+
.igem_logo_mobile img {
+
width:70px;
+
}
+
 
+
.igem_logo_mobile {
+
float:left;
+
padding-left: 5%;
+
width: 30%;
+
}
+
 
+
.igem_menu_control_mobile img {
+
width:25px;
+
}
+
 
+
.igem_menu_control_mobile {
+
float:right;
+
padding-right:5%;
+
padding-top:5px;
+
text-align:right;
+
width: 30%;
+
}
+
 
+
 
+
 
+
/**************************************************************************************************************************************************************************************************/
+
/* CONTENT OF THE PAGE */
+
/**************************************************************************************************************************************************************************************************/
+
 
+
/* general wrapper for the content */
+
.igem_2018_team_content {
+
background-color:white;
+
display:block;
+
width: 87%;
+
}
+
 
+
/* subwrapper to center content */
+
.igem_2018_team_content .igem_2018_team_column_wrapper {
+
margin:auto;
+
max-width: 1400px;
+
width:90%;
+
}
+
 
+
 
+
 
+
/*general styling*/
+
/**************************************************************************************************************************************************************************************************/
+
 
+
.igem_2018_team_content .igem_2018_team_column_wrapper h1 { font-size: 210%;}
+
.igem_2018_team_content .igem_2018_team_column_wrapper h2 { font-size: 190%;}
+
.igem_2018_team_content .igem_2018_team_column_wrapper h3 { font-size: 170%;}
+
.igem_2018_team_content .igem_2018_team_column_wrapper h4 { font-size: 150%;}
+
.igem_2018_team_content .igem_2018_team_column_wrapper h5 { font-size: 140%;}
+
.igem_2018_team_content .igem_2018_team_column_wrapper h6 { font-size: 130%;}
+
 
+
 
+
/* styling for the titles h1, h2*/
+
.igem_2018_team_content .igem_2018_team_column_wrapper h1, .igem_2018_team_content .igem_2018_team_column_wrapper h2 {
+
border-bottom:0px;
+
color: #635d5d;
+
font-family: "Arial Black", Gadget, sans-serif;
+
padding: 10px 0px;
+
}
+
 
+
/* styling for the titles h3, h3, h5, h6 */
+
.igem_2018_team_content .igem_2018_team_column_wrapper h3,
+
.igem_2018_team_content .igem_2018_team_column_wrapper h4,
+
.igem_2018_team_content .igem_2018_team_column_wrapper h5,
+
.igem_2018_team_content .igem_2018_team_column_wrapper h6 {
+
border-bottom:0px;
+
color: #928b8b; 
+
font-family: "Arial Black", Gadget, sans-serif;
+
padding: 5px 0px;
+
}
+
 
+
/* text */
+
.igem_2018_team_content .igem_2018_team_column_wrapper p {
+
font-size: 130%;
+
font-family: Arial, Helvetica, sans-serif;
+
padding: 5px 0px;
+
text-align: left;
+
color: #484848;
+
}
+
 
+
/* Links */
+
.igem_2018_team_content .igem_2018_team_column_wrapper a {
+
color: #5bc7d8;
+
font-weight: bold;
+
text-decoration: underline;
+
text-decoration-color:#5bc7d8;
+
transition: all 0.4s ease;
+
-webkit-transition: all 0.4s ease;
+
-moz-transition: all 0.4s ease;  
+
-ms-transition: all 0.4s ease;
+
-o-transition: all 0.4s ease;
+
}
+
 
+
/* hover for the links */
+
.igem_2018_team_content .igem_2018_team_column_wrapper a:hover {
+
color: #f8b732;
+
text-decoration:none;
+
}
+
 
+
 
+
/* Table */
+
.igem_2018_team_content .igem_2018_team_column_wrapper table {  
+
border: 1px solid #928b8b;  
+
border-collapse: collapse;  
+
font-size: 130%;
+
width: 100%;  
+
}
+
 
+
/* table cells */
+
.igem_2018_team_content .igem_2018_team_column_wrapper td {
+
border: 1px solid #c4baba;
+
border-collapse: collapse;
+
font-size: 105%;
+
padding: 10px;
+
vertical-align: text-top;
+
}
+
 
+
/* table headers */
+
.igem_2018_team_content .igem_2018_team_column_wrapper th {
+
background-color:#c4baba;  
+
border: 1px solid #928b8b;
+
border-collapse: collapse;
+
font-size: 110%;
+
padding: 10px;
+
vertical-align: text-top;
+
}
+
 
+
 
+
 
+
/* non numbered lists */
+
.igem_2018_team_content .igem_2018_team_column_wrapper ul, .igem_2018_team_content .igem_2018_team_column_wrapper ol {
+
font-size: 130%;
+
font-family: Arial, Helvetica, sans-serif;
+
padding:0px 20px;
+
}
+
 
+
 
+
.igem_2018_team_content .igem_2018_team_column_wrapper ul ul li, .igem_2018_team_content .igem_2018_team_column_wrapper ul ul ul li,
+
.igem_2018_team_content .igem_2018_team_column_wrapper ul ol li, .igem_2018_team_content .igem_2018_team_column_wrapper ul ul ol li,
+
.igem_2018_team_content .igem_2018_team_column_wrapper ol ol li, .igem_2018_team_content .igem_2018_team_column_wrapper ul ol ul li,
+
.igem_2018_team_content .igem_2018_team_column_wrapper ol ul li, .igem_2018_team_content .igem_2018_team_column_wrapper ul ol ol li,
+
.igem_2018_team_content .igem_2018_team_column_wrapper ol ul ul li, .igem_2018_team_content .igem_2018_team_column_wrapper ol ol ul li,
+
.igem_2018_team_content .igem_2018_team_column_wrapper ol ol ol li, .igem_2018_team_content .igem_2018_team_column_wrapper ol ul ol li{ font-size: 76%; }
+
 
+
 
+
 
+
/*layout classes*/
+
/**************************************************************************************************************************************************************************************************/
+
 
+
/*main layout class */
+
.igem_2018_team_content .igem_2018_team_column_wrapper .column  {
+
float:left;
+
margin: 1% 2%;
+
padding: 0px;
+
}
+
 
+
/* 100% */
+
.igem_2018_team_content .igem_2018_team_column_wrapper .column.full_size { width:96%; }
+
 
+
/* 66% */
+
.igem_2018_team_content .igem_2018_team_column_wrapper .column.two_thirds_size { width: 62.6%; }
+
 
+
/* 33% */
+
.igem_2018_team_content .igem_2018_team_column_wrapper .column.third_size { width: 29.3%; }
+
 
+
 
+
 
+
 
+
/*styling for all images*/
+
.igem_2018_team_content .igem_2018_team_column_wrapper .column.full_size img,
+
.igem_2018_team_content .igem_2018_team_column_wrapper .column.two_thirds_size img,
+
.igem_2018_team_content .igem_2018_team_column_wrapper .column.third_size img {
+
margin-bottom: 15px;
+
width: 100%;
+
}
+
 
+
 
+
/* page break */
+
.igem_2018_team_content .igem_2018_team_column_wrapper .clear {
+
clear:both;
+
}
+
/*add extra space to page break with clear class*/
+
.igem_2018_team_content .igem_2018_team_column_wrapper .clear.extra_space {
+
height: 30px;
+
}
+
 
+
/* horizontal line to divide the page*/
+
.igem_2018_team_content .igem_2018_team_column_wrapper .line_divider {
+
    border-top: 1px solid #c4baba;
+
  margin: auto;
+
  width: 98%;
+
}
+
 
+
 
+
 
+
+
/*support classes*/
+
/**************************************************************************************************************************************************************************************************/
+
 
+
 
+
/*Button  */
+
/************************************************/
+
.igem_2018_team_content .igem_2018_team_column_wrapper .button_link {
+
font-size: 130%;
+
margin: 30px auto;
+
text-align: center;
+
}
+
 
+
.igem_2018_team_content .igem_2018_team_column_wrapper .button_link a  {
+
background-color: #5bc7d8;
+
color: #635d5d !important;
+
font-weight: bold;
+
margin: auto;
+
text-decoration: none !important;
+
padding: 10px 15px;
+
}
+
 
+
.igem_2018_team_content .igem_2018_team_column_wrapper .button_link a:hover {
+
background-color: #f8b732 !important; 
+
}
+
 
+
 
+
 
+
.igem_2018_team_content .igem_2018_team_column_wrapper .highlight {
+
padding: 15px 20px;
+
}
+
 
+
.igem_2018_team_content .igem_2018_team_column_wrapper .highlight p,
+
.igem_2018_team_content .igem_2018_team_column_wrapper .highlight h1,
+
.igem_2018_team_content .igem_2018_team_column_wrapper .highlight h2,
+
.igem_2018_team_content .igem_2018_team_column_wrapper .highlight h3,
+
.igem_2018_team_content .igem_2018_team_column_wrapper .highlight h4,
+
.igem_2018_team_content .igem_2018_team_column_wrapper .highlight h5,
+
.igem_2018_team_content .igem_2018_team_column_wrapper .highlight h6 {
+
padding: 5px 15px;
+
}
+
 
+
.igem_2018_team_content .igem_2018_team_column_wrapper .highlight.decoration_background {
+
background-color: #e4dede;
+
}
+
 
+
.igem_2018_team_content .igem_2018_team_column_wrapper .highlight.decoration_A_top {
+
    border-top: 4px solid #5bc7d8;
+
}
+
 
+
 
+
.igem_2018_team_content .igem_2018_team_column_wrapper .highlight.decoration_A_full {
+
    border: 4px solid #5bc7d8;
+
}
+
 
+
.igem_2018_team_content .igem_2018_team_column_wrapper .highlight.decoration_B_top {
+
    border-top: 4px solid #f8b732
+
}
+
 
+
 
+
.igem_2018_team_content .igem_2018_team_column_wrapper .highlight.decoration_B_full {
+
    border: 4px solid #f8b732;
+
}
+
 
+
 
+
 
+
 
+
/*mobile*/
+
/**************************************************************************************************************************************************************************************************/
+
 
+
 
+
/* 1800px  */
+
/************************************************/
+
@media only screen and (max-width: 1800px) {
+
.igem_2018_team_content { width: 85%;}
+
.igem_2018_team_menu {display:block;}
+
}
+
 
+
/* 1400px  */
+
/************************************************/
+
@media only screen and (max-width: 1400px) {
+
.igem_2018_team_menu .menu_item { font-size:100%;}
+
.igem_2018_team_menu .submenu .submenu_item { font-size:90%;}
+
.igem_2018_team_menu {display:block;}
+
}
+
 
+
@media only screen and (max-width: 1001px) {
+
.igem_2018_team_menu {display:block;}
+
}
+
 
+
/* 1000px  */
+
/************************************************/
+
@media only screen and (max-width: 1000px) {
+
.igem_2018_team_content {width:100%; margin-left:0px;}
+
.igem_2018_team_menu {display:none; margin-top: 45px; min-width:50%; width:50%;}
+
.igem_2018_team_mobile_bar {display:block;}
+
.igem_2018_team_content .igem_2018_team_column_wrapper .column.full_size, .igem_2018_team_content .igem_2018_team_column_wrapper .column.two_thirds_size,.igem_2018_team_content .igem_2018_team_column_wrapper .column.third_size {width:96%; }
+
 
+
}
+
 
+
 
+
@media only screen and (max-width: 500px) {
+
.igem_2018_team_menu {min-width:100%; width:100%; }
+
}
+
 
+
 
+
/**************************************************************************************************************************************************************************************************/
+
  
 +
    /* Caption styles */
 +
    .nivo-caption {
 +
        position:absolute;
 +
        left:0px;
 +
        bottom:0px;
 +
        background:#000;
 +
        color:#fff;
 +
        width:100%;
 +
        z-index:8;
 +
        padding: 5px 10px;
 +
        opacity: 0.8;
 +
        overflow: hidden;
 +
        display: none;
 +
        -moz-opacity: 0.8;
 +
        filter:alpha(opacity=8);
 +
        -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
 +
        -moz-box-sizing: border-box;    /* Firefox, other Gecko */
 +
        box-sizing: border-box;        /* Opera/IE 8+ */
 +
    }
 +
    .nivo-caption p {
 +
        padding:5px;
 +
        margin:0;
 +
    }
 +
    .nivo-caption a {
 +
        display:inline !important;
 +
    }
 +
    .nivo-html-caption {
 +
        display:none;
 +
    }
 +
    /* Direction nav styles (e.g. Next & Prev) */
 +
    .nivo-directionNav a {
 +
        position:absolute;
 +
        top:45%;
 +
        z-index:9;
 +
        cursor:pointer;
 +
    }
 +
    .nivo-prevNav {
 +
        left:0px;
 +
    }
 +
    .nivo-nextNav {
 +
        right:0px;
 +
    }
 +
    /* Control nav styles (e.g. 1,2,3...) */
 +
    .nivo-controlNav {
 +
        text-align:left;
 +
        padding: 10px 0 15px 0px;
 +
    }
 +
    .nivo-controlNav a {
 +
        display: inline-block;
 +
        cursor:pointer;
 +
        background: #62493d;
 +
        width: 10px;
 +
        height: 10px;
 +
        text-indent: -9000px;
 +
        margin-right: 5px;
 +
       
 +
        -moz-border-radius: 10px;
 +
        -webkit-border-radius: 10px;
 +
        border-radius: 10px;
 +
       
 +
        border: 2px solid #f1f1f1;
 +
        border-top: 2px solid #ffffff;
 +
       
 +
        -webkit-box-shadow: 0px 0px 2px rgba(0,0,0,.3);
 +
        -moz-box-shadow: 0px 0px 2px rgba(0,0,0,.3);
 +
        -o-box-shadow: 0px 0px 2px rgba(0,0,0,.3);
 +
        box-shadow: 0px 0px 2px rgba(0,0,0,.2);
 +
    }
 +
    .nivo-controlNav a.active {
 +
        background: #e09402;
 +
    }
  
 +
    /* Widgets block
 +
    /*-----------------------------------------------------------------------------------*/
 +
    .widget-cols {
 +
        position: relative;
 +
        display: block;
 +
        background: #62493d url(https://static.igem.org/mediawiki/2018/e/e5/T--SJTU-software--widgets.png) repeat;
 +
        font-size: 14px;
 +
        color: #e7d7ba;
 +
        text-shadow: 0px -1px 0 rgba(0, 0, 0, 0.5);
 +
        text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.4);
 +
        border-top: 4px solid #e09402;
 +
        padding-left: 10px;
 +
        padding-top: 10px;
 +
        margin: auto;
 +
        height:230px;
 +
    }
 +
    .widget-cols h1,
 +
    .widget-cols h2,
 +
    .widget-cols h3,
 +
    .widget-cols h4,
 +
    .widget-cols h5,
 +
    .widget-cols h6 {
 +
        font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial;
 +
        color: #e09402;
 +
        margin-bottom: 20px;
 +
        font-weight: 700;
 +
    }
 +
    .widget-cols a {
 +
        color: #e09402;
 +
        text-decoration: none;
 +
    }
 +
    .widget-cols a:hover {
 +
        color: #e7d7ba;
 +
        border-bottom: 1px dotted #e7d7ba;
 +
    }
 +
    .widget-cols > ul {
 +
        width: 230px;
 +
        list-style:none;
 +
        float: left;
 +
        margin-left: 10px;
 +
        margin-bottom: 20px;
 +
    }
 +
    .widget-cols > li {
 +
        width: 220px;
 +
        float: left;
 +
        margin-left: 5px;
 +
        margin-bottom: 20px;
 +
    }
 +
    .widget-cols .scroll {
 +
        content: '';
 +
        position: absolute;
 +
        top: -40px;
 +
        left: 50%;
 +
        margin-left: -23px;
 +
        background: url(https://static.igem.org/mediawiki/2018/f/ff/T--SJTU-software--bottom-arrow.png) no-repeat;
 +
        height: 41px;
 +
        width: 46px;
 +
    }
 +
    .widget-cols .scroll:hover {
 +
        background-position: 0px -41px;
 +
    }
 +
    .multiplebgs .widget-cols {
 +
        background-image: url(https://static.igem.org/mediawiki/2018/9/91/T--SJTU-software--widgets-shadow.png), url(https://static.igem.org/mediawiki/2018/e/e5/T--SJTU-software--widgets.png);
 +
        background-repeat: repeat-x, repeat;
 +
        background-position: left bottom, left bottom;
 +
    }
  
 +
    .footer-divider {
 +
        background: #5a453b;
 +
        border-top: 1px solid #644d42;
 +
        border-bottom: 1px solid #523f35;
 +
        height: 8px;
 +
        width: 100%;
 +
    }
  
 +
    /* FOOTER
 +
    /*-----------------------------------------------------------------------------------*/
 +
    footer {
 +
        position: relative;
 +
        text-align: center;
 +
        padding: 15px 15px 15px 15px;
 +
        font-size: 22px;
 +
        color: #e09402;
 +
        background: #62493d url(https://static.igem.org/mediawiki/2018/b/b6/T--SJTU-software--footer.png) repeat-x center top;
 +
        text-shadow: 0px -1px 0 rgba(0, 0, 0, 0.5);
 +
    }
 +
    footer:after {
 +
        content: '';
 +
        position: absolute;
 +
        bottom: -46px;
 +
        height: 46px;
 +
        right: 6px;
 +
        width: 100%;
 +
        width: 940px\9;
 +
        background: url(https://static.igem.org/mediawiki/2018/5/5b/T--SJTU-software--main-shadow.png) no-repeat top center;
 +
    }
 +
    footer a {
 +
        text-decoration: none;
 +
        color: #e09402;
 +
    }
 +
    footer a:hover {
 +
        color: #fff;
 +
    }
  
 
</style>
 
</style>
 +
<body>
 +
    <div class="wrapper">
 +
        <!-- HEADER -->
 +
      <header class="cf">
 +
          <div id="logo"><a href="https://2018.igem.org/Team:SJTU-software"> <img src="https://static.igem.org/mediawiki/2018/0/04/T--SJTU-software--teamlogo.png"  height="90"/></a></div>
 +
          <div id="title">SJTU-software</div>
 +
          <div id="subtitle">Metlab: a metabolic network research tool box</div>
 +
        </header>
  
 
+
        <!-- NAV -->
<!------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------->
+
        <nav class="cf">
<!--- THIS IS WHERE THE HTML BEGINS --->
+
            <ul id="nav" class="sf-menu">
<!------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------->
+
                <li><a href="https://2018.igem.org/Team:SJTU-software">HOME</a></li>
 
+
                <li><a href="">TEAM</a>
<head>  
+
                    <ul>
 
+
                        <li><a href="https://2018.igem.org/Team:SJTU-software/Team">TEAM</a></li>
<!-- This tells the browser that your page is responsive -->
+
                        <li><a href="https://2018.igem.org/Team:SJTU-software/Video">VIDEO</a></li>
<meta name="viewport" content="width=device-width, initial-scale=1">  
+
                        <li><a href="https://2018.igem.org/Team:SJTU-software/Collaborations">COLLABRATIONS</a></li>
 
+
                    </ul>
</head>
+
                </li>
 
+
                <li><a href="">PROJECT</a>
 
+
                    <ul>
 
+
                        <li><a href="https://2018.igem.org/Team:SJTU-software/Description">DESCRIPTION</a></li>
<!------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------->
+
                        <li><a href="https://2018.igem.org/Team:SJTU-software/Document">DOCUMENT</a></li>
<!--- Menu --->
+
                        <li><a href="https://2018.igem.org/Team:SJTU-software/Design">DESIGN</a></li>
<!------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------->
+
                        <li><a href="https://2018.igem.org/Team:SJTU-software/Demonstrate">DEMONSTRATE</a></li>
 
+
                        <li><a href="https://2018.igem.org/Team:SJTU-software/Improve">IMPROVE</a></li>
 
+
                        <li><a href="https://2018.igem.org/Team:SJTU-software/Attributions">ATTRIBUTIONS</a></li>
 
+
                    </ul>
 
+
                </li>
<div class="igem_2018_team_mobile_bar">
+
                <li><a href="">HUMAN PRACTICE</a>
+
                    <ul>
<div class="igem_logo_mobile">
+
                        <li><a href="https://2018.igem.org/Team:SJTU-software/Human_Practices">INTERCRATED AND GOLD</a></li>
<img src="https://static.igem.org/mediawiki/2018/4/4f/2018_igem_mobile_menu_logo.svg">
+
                        <li><a href="https://2018.igem.org/Team:SJTU-software/Public_Engagement">PUBLIC ENGAGEMENT</a></li>
</div>
+
                    </ul>
 
+
                </li>
 
+
                <li><a href="https://2018.igem.org/Team:SJTU-software/Safety">SAFETY</a>
<div class="igem_menu_control_mobile">
+
                </li>
<img id="menu_control_image" src="https://static.igem.org/mediawiki/igem.org/3/3b/Menu_icon.svg">
+
            </ul>
</div>
+
        </nav>
 +
        <!-- ENDS NAV-->
  
 
</div>
 
</div>
 
+
</body>
 
+
</html>
 
+
 
+
<div class="igem_2018_team_menu displaying_menu">
+
 
+
 
+
<a href="https://2018.igem.org/Team:SJTU-software">
+
<img src="http://placehold.it/350x150/e4dede/c4baba">
+
</a>
+
 
+
 
+
 
+
<a href="https://2018.igem.org/Team:SJTU-software">
+
<div class="menu_item direct_link">
+
HOME
+
</div>
+
</a>
+
 
+
<!-- Team -->
+
<div class="menu_item">
+
<div class="submenu_control_icon"> </div>
+
TEAM
+
</div>
+
<div class="submenu">
+
+
<a href="https://2018.igem.org/Team:SJTU-software/Team">
+
<div class="submenu_item">
+
Team Members
+
</div>
+
</a>
+
 
+
<a href="https://2018.igem.org/Team:SJTU-software/Collaborations">
+
<div class="submenu_item">
+
Collaborations
+
</div>
+
</a>
+
</div>
+
 
+
 
+
<!-- Project -->
+
<div class="menu_item">
+
<div class="submenu_control_icon"> </div>
+
PROJECT
+
</div>
+
<div class="submenu">
+
+
<a href="https://2018.igem.org/Team:SJTU-software/Description">
+
<div class="submenu_item">
+
Description
+
</div>
+
</a>
+
 
+
<a href="https://2018.igem.org/Team:SJTU-software/Design">
+
<div class="submenu_item">
+
Design
+
</div>
+
</a>
+
 
+
<a href="https://2018.igem.org/Team:SJTU-software/Experiments">
+
<div class="submenu_item">
+
Experiments
+
</div>
+
</a>
+
 
+
 
+
<a href="https://2018.igem.org/Team:SJTU-software/Notebook">
+
<div class="submenu_item">
+
Notebook
+
</div>
+
</a>
+
 
+
<a href="https://2018.igem.org/Team:SJTU-software/InterLab">
+
<div class="submenu_item">
+
InterLab
+
</div>
+
</a>
+
 
+
 
+
<a href="https://2018.igem.org/Team:SJTU-software/Model">
+
<div class="submenu_item">
+
Model
+
</div>
+
</a>
+
 
+
<a href="https://2018.igem.org/Team:SJTU-software/Results">
+
<div class="submenu_item">
+
Results
+
</div>
+
</a>
+
 
+
 
+
<a href="https://2018.igem.org/Team:SJTU-software/Demonstrate">
+
<div class="submenu_item">
+
Demonstrate
+
</div>
+
</a>
+
 
+
<a href="https://2018.igem.org/Team:SJTU-software/Improve">
+
<div class="submenu_item">
+
Improve
+
</div>
+
</a>
+
 
+
<a href="https://2018.igem.org/Team:SJTU-software/Attributions">
+
<div class="submenu_item">
+
Attributions
+
</div>
+
</a>
+
 
+
</div>
+
 
+
 
+
<div class="menu_item">
+
<div class="submenu_control_icon"> </div>
+
PARTS
+
</div>
+
<div class="submenu">
+
+
<a href="https://2018.igem.org/Team:SJTU-software/Parts">
+
<div class="submenu_item">
+
Parts Overview
+
</div>
+
</a>
+
 
+
<a href="https://2018.igem.org/Team:SJTU-software/Basic_Part">
+
<div class="submenu_item">
+
Basic Parts
+
</div>
+
</a>
+
 
+
<a href="https://2018.igem.org/Team:SJTU-software/Composite_Part">
+
<div class="submenu_item">
+
Composite Parts
+
</div>
+
</a>
+
 
+
<a href="https://2018.igem.org/Team:SJTU-software/Part_Collection">
+
<div class="submenu_item">
+
Part Collection
+
</div>
+
</a>
+
</div>
+
 
+
+
+
+
+
 
+
<a href="https://2018.igem.org/Team:SJTU-software/Safety">
+
<div class="menu_item direct_link">
+
SAFETY
+
</div>
+
</a>
+
 
+
 
+
 
+
 
+
 
+
 
+
<div class="menu_item">
+
<div class="submenu_control_icon"> </div>
+
HUMAN PRACTICES
+
</div>
+
 
+
<div class="submenu">
+
 
+
<a href="https://2018.igem.org/Team:SJTU-software/Human_Practices">
+
<div class="submenu_item">
+
Human Practices
+
</div>
+
</a>
+
 
+
 
+
<a href="https://2018.igem.org/Team:SJTU-software/Public_Engagement">
+
<div class="submenu_item">
+
Education & Engagement
+
</div>
+
</a>
+
 
+
</div>
+
 
+
 
+
 
+
 
+
 
+
<div class="menu_item">
+
<div class="submenu_control_icon"> </div>
+
AWARDS
+
</div>
+
 
+
<div class="submenu">
+
 
+
<a href="https://2018.igem.org/Team:SJTU-software/Applied_Design">
+
<div class="submenu_item">
+
Applied Design
+
</div>
+
</a>
+
 
+
<a href="https://2018.igem.org/Team:SJTU-software/Entrepreneurship">
+
<div class="submenu_item">
+
Entrepreneurship
+
</div>
+
</a>
+
 
+
<a href="https://2018.igem.org/Team:SJTU-software/Hardware">
+
<div class="submenu_item">
+
Hardware
+
</div>
+
</a>
+
 
+
<a href="https://2018.igem.org/Team:SJTU-software/Measurement">
+
<div class="submenu_item">
+
Measurement
+
</div>
+
</a>
+
 
+
<a href="https://2018.igem.org/Team:SJTU-software/Model">
+
<div class="submenu_item">
+
Model
+
</div>
+
</a>
+
 
+
<a href="https://2018.igem.org/Team:SJTU-software/Plant">
+
<div class="submenu_item">
+
Plant
+
</div>
+
</a>
+
 
+
 
+
<a href="https://2018.igem.org/Team:SJTU-software/Software">
+
<div class="submenu_item">
+
Software
+
</div>
+
</a>
+
 
+
</div>
+
 
+
 
+
 
+
<a href="https://igem.org/2018_Judging_Form?team=SJTU-software">
+
<div class="menu_item direct_link">
+
JUDGING FORM ⇗
+
</div>
+
</a>
+
 
+
 
+
 
+
 
+
 
+
 
+
</div>
+
 
+
<!------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------->
+
<!--- Content of the page  --->
+
<!------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------->
+
 
+
 
+
<div class="igem_2018_team_content">
+
<div class="igem_2018_team_column_wrapper">
+
<div class="clear extra_space"></div>
+
<div class="clear extra_space"></div>
+

Latest revision as of 07:42, 17 October 2018