Difference between revisions of "Template:JNFLS"

(Prototype team template page)
 
Line 2: Line 2:
  
 
<script>
 
<script>
flag=true;
+
 
$(function(){
+
// This is the jquery part of your template.
var url=window.location.pathname.split('/');
+
// Try not modify any of this code too much since it makes your menu work.
var currentPage=url[2];
+
 
if(!currentPage)
+
$(document).ready(function() {
currentPage='Home';
+
 
else if(currentPage=='Attributions'||currentPage=='Collaborations')
+
$("#HQ_page").attr('id','');
currentPage='Team';
+
 
else if(currentPage=='Demonstrate'||currentPage=='Model'||currentPage=='Description'||currentPage=='Design'||currentPage=='Results'||currentPage=='Notebook')
+
// call the functions that control the menu
currentPage='Project';
+
menu_functionality();  
else if(currentPage=='Engagement'||currentPage=='HP')
+
hide_show_menu();
currentPage='Outlab';
+
 
$('#header .header_nav>[data-name='+currentPage+']').addClass('active').siblings().removeClass('active');
+
 
$(window).on('scroll',function(){
+
 
var top=$(this).scrollTop();
+
//this function controls the expand and collapse buttons of the menu and changes the +/- symbols
var bottom=document.body.scrollHeight-$('.container_in .container_nav').height()-top;
+
function menu_functionality() {
var offsetT=0;
+
 
for(var i=$('.container_in .container_nav>a').length;i>0;i--)
+
//when clicking on a "menu_button", it will change the "+/-" accordingly and it will show/hide the corresponding submenu
if(top-$('#t'+i).offset().top>=-1){
+
$(".menu_button").click(function(){
var ths=$('.container_in .container_nav>a:eq('+(i-1)+')');
+
 
if(!ths.hasClass('active')){
+
// add or remove the class "open" , this class holds the "-"
ths.addClass('active');
+
$(this).children().toggleClass("open");
ths.siblings().removeClass('active');
+
// show or hide the submenu
$('.nav_2').slideUp(100);
+
$(this).next('.submenu_wrapper').fadeToggle(400);
$('.'+ths.attr('href').replace('#','')+'C').css('display','block').slideDown(200);
+
});
}
+
 
for(var o=$('.'+ths.attr('href').replace('#','')+'C>*').length;o>0;o--){
+
// when the screen size is smaller than 800px, the display_menu_control button appears and will show/hide the whole menu
if(top-$('#t'+i+'_'+o).offset().top>=-1){
+
$("#display_menu_control").click(function(){
var ths=$('.t'+i+'C>a:eq('+(o-1)+')');
+
$('#menu_content').fadeToggle(400);
if(!ths.hasClass('active')){
+
});
ths.addClass('active');
+
 
ths.siblings().removeClass('active');
+
// call the current page highlight function
}
+
highlight_current_page();
break;
+
}
+
}
+
break;
+
}
+
if(bottom<150){
+
if($('.container_in .container_nav').hasClass('fixed_2')){
+
$('.container_in .container_nav').addClass('fixed_2');
+
}
+
 
}
 
}
if(bottom>=150){
+
 
if($('.container_in .container_nav').hasClass('fixed_2')){
+
 
$('.container_in .container_nav').removeClass('fixed_2');
+
// 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");
 +
 
}
 
}
if(!$('.container_in .container_nav').hasClass('fixed_2')){
+
 
if(top>120){
+
 
if(!$('.container_in .container_nav').hasClass('fixed')){
+
 
$('.container_in .container_nav').addClass('fixed');
+
// 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(top<=120){
+
 
if($('.container_in .container_nav').hasClass('fixed')){
+
// if the black menu bar has been loaded
$('.container_in .container_nav').removeClass('fixed');
+
  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);
 
}
 
}
 
}
 
}
});
 
  
$('#header .navs').hover(function(){
+
 
if(flag){
+
flag=false
+
$(this).find('.nav_2').slideDown(200,function(){
+
flag=true;
+
});
+
}
+
},function(){
+
$(this).find('.nav_2').fadeOut(200);
+
 
});
 
});
});
+
 
 +
 
 
</script>
 
</script>
  
Line 82: Line 90:
  
 
<style>
 
<style>
#sideMenu{
+
 
display:none;
+
 
}
+
 
#content{
+
/***************************************************** DEFAULT WIKI SETTINGS  ****************************************************/
width:100%;
+
padding:0;
+
/* Clear the default wiki settings */
margin:0;
+
position:absolute;
+
#home_logo, #sideMenu { display:none; }
min-height:100%;
+
#sideMenu, #top_title, .patrollink  {display:none;}
}
+
#content { width:100%; padding:0px; margin-top:-7px; margin-left:0px;}
#top_title{
+
body {background-color:white; }
display:none;
+
#bodyContent h1, #bodyContent h2, #bodyContent h3, #bodyContent h4, #bodyContent h5 { margin-bottom: 0px; }
}
+
 
#globalWrapper{
+
font-size:1em;
+
position:absolute;
+
min-height:100%;
+
/**************************************************************** MENU ***************************************************************/
}
+
/* Wrapper for the menu */
*{
+
.igem_2017_menu_wrapper {  
box-sizing:border-box;
+
width: 15%;  
}
+
height:100vh;  
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,dl,dt,dd,ol,nav ul,nav li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{
+
position:fixed;
margin:0;
+
right:0%;
padding:0;
+
padding:0px;
border:0;
+
float:right;  
font-size:100%;
+
border-left: 1px solid #d3d3d3;  
font:inherit;
+
background-color:#dddddd;  
color:inherit;
+
text-align:left;
outline:0;
+
font-family:Tahoma, Geneva, sans-serif;  
}
+
overflow-y: auto;
h1,h2,h3,h4,h5,h6{
+
overflow-x: hidden;
overflow:visible;
+
}
}
+
 
article, aside, details, figcaption, figure,footer, header, hgroup, menu, nav, section {
+
/* this hides the scrollbar to keep view consistency */
display: block;
+
.igem_2017_menu_wrappe::-webkit-scrollbar {
}
+
display: none;  
ol,ul{
+
}
list-style:none;
+
margin:0px;
+
padding:0px;
+
/* styling for links in the menu, removes the line under text */
}
+
.igem_2017_menu_wrapper a {
blockquote,q{
+
text-decoration: none;  
quotes:none;
+
}
}
+
 
blockquote:before,blockquote:after,q:before,q:after{
+
 
content:'';
+
/* styling for the images in the menu */
content:none;
+
.igem_2017_menu_wrapper img {  
}
+
width: 100%;
table{
+
}
border-collapse:collapse;
+
 
border-spacing:0;
+
/* styling for the menu buttons */
}
+
.igem_2017_menu_wrapper .menu_button {  
a{
+
width: 100%;  
text-decoration:none;
+
padding: 10px 0px 10px 15px;  
}
+
float:left;  
a:visited{
+
border-bottom: 1px solid #d3d3d3;  
color:inherit;
+
font-size: 12px;  
}
+
font-weight: bold;  
a:hover{
+
color: #5e5f5f;  
text-decoration:none
+
cursor: pointer;
}
+
}
html,body{
+
 
min-height:100%;
+
 
}
+
.igem_2017_menu_wrapper .menu_bottom_padding {
input,textarea,select{
+
width: 100%;  
border:1px solid #999;
+
height: 30px;
width:100%;
+
float:left;
padding:.35em .2em;
+
}
border-radius:.1em;
+
 
font:inherit;
+
.menu_button.direct_to_page {
}
+
padding-left: 36px;
select{
+
}
width:auto;
+
 
padding:0;
+
 
}
+
.igem_2017_menu_wrapper .menu_button .expand_collapse_icon {
textarea{
+
width:10%;
padding:.2em;
+
float:left;
}
+
}
hr{
+
 
border:none;
+
.igem_2017_menu_wrapper .menu_button .expand_collapse_icon::before {
height:2px;
+
content: "+";
border-top:2px dotted #999;
+
}
}
+
html{
+
.open::before {
height:100%;
+
content: "-" !important;
}
+
}
body{
+
font-family:"Arial","Microsoft YaHei","黑体","宋体",sans-serif!important;
+
position:relative;
+
}
+
/* styling for the menu buttons on hover */
.btn_1{
+
.igem_2017_menu_wrapper .menu_button:hover, .igem_2017_menu_wrapper .submenu_button:hover ,  .submenu_button.current_page:hover {  
display:inline-block;
+
background-color: #3399ff;
background-color:#6a90e0;
+
text-decoration: none;
padding:.5em 1em;
+
color:#ffffff;  
border-radius:.8em;
+
}
color:#fff;
+
 
font-weight:bold;
+
/* styling for the menu button when it is the current page */
font-size:.8em;
+
.current_page {  
cursor:pointer;
+
background-color:#7fc1f7  !important;
}
+
color:#5e5f5f !important;
#header{
+
}
position:fixed;
+
 
top:16px;
+
 
left:0;
+
/* styling for the submenu buttons */
background:linear-gradient(#3c3c3c,#000);
+
.igem_2017_menu_wrapper .submenu_button {
height:5em;
+
width: 100%;  
padding:0 1.4em;
+
padding: 10px 0px 10px 34px;  
width:100%;
+
float:left;
color:#fff;
+
background-color:#f2f2f2;  
z-index:5;
+
border-bottom: 1px solid #d3d3d3;  
}
+
font-size: 12px;  
#header .header_logo{
+
color: #5e5f5f;  
width:9em;
+
cursor: pointer;
height:5em;
+
}
display:inline-block;
+
 
background:url('https://static.igem.org/mediawiki/2017/e/e5/JNFLS-logo.png') no-repeat left;
+
/* wrapper for the submenu items, they are hidden by default*/
background-size:auto 4em;
+
.igem_2017_menu_wrapper .submenu_wrapper {  
}
+
display:none;
#header .header_nav{
+
}
height:4.9em;
+
 
line-height:5em;
+
/* when the page size is bigger than 800px, this show/hide control is hidden by default */
vertical-align:top;
+
.igem_2017_menu_wrapper #display_menu_control {
display:inline-block;
+
display:none;
}
+
text-align:center;
#header .header_nav>*{
+
}
display:inline-block;
+
padding:0 .8em;
+
 
margin:0 .1em;
+
/***************************************************** CONTENT OF THE PAGE ****************************************************/
font-weight:bold;
+
 
letter-spacing:.1em;
+
/* Wrapper for the content */
cursor:pointer;
+
.igem_2017_content_wrapper {
position:relative;
+
width: 81%;
transition:0.2s all;
+
margin: 2%;
-webkit-transition:0.2s all;
+
display:block;
-moz-transition:0.2s all;
+
float:left;
-o-transition:0.2s all;
+
background-color:white;  
}
+
font-family:Tahoma, Geneva, sans-serif;  
#header .header_nav>*:not(.active):hover{
+
}
color:#6a90e0;
+
 
}
+
 
#header .header_nav>*.active{
+
/********************************* HTML STYLING  *********************************/
background:linear-gradient(to bottom,#6a90e0,#444);
+
 
}
+
/* styling for the titles h1 h2 */
#header .header_nav>*.active:after{
+
.igem_2017_content_wrapper h1, .igem_2017_content_wrapper h2 {
content:" >";
+
padding:5px 15px;  
color:#f3f3f3;
+
border-bottom: 0px;  
font-weight:bold;
+
color: #3399ff;
font-size:.8em;
+
}
}
+
 
#header .header_nav .nav_2{
+
 
position:absolute;
+
/* styling for the titles  h3 h4 h5 h6*/
top:5em;
+
.igem_2017_content_wrapper h3, .igem_2017_content_wrapper h4, .igem_2017_content_wrapper h5, .igem_2017_content_wrapper h6 {
left:0;
+
padding:5px 15px;  
min-width:100%;
+
border-bottom:0px;  
background-color:#fff;
+
color: #000000;
color:#333;
+
}
box-shadow:0 0 .3em #333;
+
 
display:none;
+
 
}
+
/* font and text */
#header .header_nav .nav_2>*{
+
.igem_2017_content_wrapper p {
border-top:1px solid #ccc;
+
padding: 0px 15px;  
display:block;
+
font-size: 13px;
line-height:3em;
+
}
padding:0 1em;
+
 
font-weight:normal;
+
/* Links */
font-size:.9em;
+
.igem_2017_content_wrapper a {  
}
+
font-weight: bold;  
#header .header_nav .nav_2>*:first-child{
+
text-decoration: underline;
border:none;
+
text-decoration-color: #3399ff;
}
+
color: #3399ff;
#header .header_nav .nav_2>*:hover{
+
-webkit-transition: all 0.4s ease;
background-color:#f3f3f3;
+
-moz-transition: all 0.4s ease;  
}
+
-ms-transition: all 0.4s ease;  
#header .header_nav>*>img{
+
-o-transition: all 0.4s ease;  
width:2em;
+
transition: all 0.4s ease;
height:2em;
+
}
vertical-align:middle;
+
 
margin-right:.5em;
+
/* hover for the links */
}
+
.igem_2017_content_wrapper a:hover {
#container{
+
text-decoration:none;
margin-top:4.8em;
+
color:#000000;
width:100%;
+
}
min-height:90%;
+
 
background-color:#f3f3f3;
+
/* non numbered lists */
}
+
.igem_2017_content_wrapper ul {
#container.index .ban_container{
+
padding:0px 20px;
position:relative;
+
font-size: 13px;
}
+
font-family:Tahoma, Geneva, sans-serif;  
#container.index .ban_container .img_ban{
+
}
width:100%;
+
 
}
+
/* numbered lists */
#container.index .ban_container .img_logo{
+
.igem_2017_content_wrapper ol {
position:absolute;
+
padding:0px;  
right:3em;
+
font-size: 13px;
top:2em;
+
font-family:Tahoma, Geneva, sans-serif;  
background-color:#fff;
+
}
width:8em;
+
 
height:8em;
+
/* Table */
border-radius:4em;
+
.igem_2017_content_wrapper table {
box-shadow:0 0 .3em #333;
+
width: 97%;  
}
+
margin:15px 10px;  
#container.index .ban_container .ban_content{
+
border: 1px solid #d3d3d3;  
position:absolute;
+
border-collapse: collapse;  
bottom:3em;
+
}
font-size:1.3em;
+
 
padding:1em 20%;
+
/* table cells */
color:#fff;
+
.igem_2017_content_wrapper  td {
background-color:rgba(0,0,0,.4);
+
padding: 10px;
box-shadow:0 0 .2em #000;
+
vertical-align: text-top;  
}
+
border: 1px solid #d3d3d3;  
#container.index .ban_container .ban_content b{
+
border-collapse: collapse;  
font-size:1.1em;
+
}
text-align:center;
+
 
font-weight:bold;
+
/* table headers */
display:block;
+
.igem_2017_content_wrapper th {  
margin-bottom:.6em;
+
padding: 10px;  
}
+
vertical-align: text-top;  
#container.index .ban_container .ban_content p{
+
border: 1px solid #d3d3d3;
text-align:center;
+
border-collapse: collapse;  
}
+
background-color:#f2f2f2;  
#container.index .ban_container_about{
+
}
text-align:center;
+
 
background:url('https://static.igem.org/mediawiki/2017/c/c0/Bg_index.jpg') no-repeat;
+
 
padding:3em 0;
+
/**********************************LAYOUT CLASSES **********************************/
background-size:100% 100%;
+
 
}
+
/* general class for column divs */
#container.index .ban_container_video{
+
.igem_2017_content_wrapper .column  {
display:inline-block;
+
padding: 10px 0px;
vertical-align:top;
+
float:left;  
width:40%;
+
}
}
+
 
#container.index .ban_container_video span{
+
/* class for a full width column */
display:block;
+
.column .full_size {
font-size:1.8em;
+
width:100%;  
font-weight:bold;
+
}
margin-top:1.6em;
+
 
background:rgba(0,0,0,.2);
+
/* styling for images in a full width column*/
box-shadow:0 0 .2em #666;
+
.column.full_size img {  
padding:.6em 0;
+
width:97%;  
color:#333;
+
padding: 10px 15px;
}
+
}
#container.index .abstract_content{
+
 
display:inline-block;
+
/* class for a half width column */
width:40%;
+
.column.half_size {
font-size:1.2em;
+
width: 50%;  
padding:1.5em 1em;
+
}
margin-left:5%;
+
/* styling for images in a half width column*/
background-color:rgba(255,255,255,.4);
+
.column.half_size img {  
border:1px solid #ccc;
+
width: 94.5%;
}
+
padding: 10px 15px;
#container.index .abstract_content p{
+
}
font-size:.9em;
+
 
text-indent:2em;
+
 
line-height:1.7em;
+
 
color:#333;
+
 
}
+
/********************************* SUPPORT CLASSES ********************************/
#container.index .abstract_content h2{
+
 
text-align:center;
+
/* class that clears content below*/
font-size:1.5em;
+
.igem_2017_content_wrapper .clear {
font-weight:bold;
+
clear:both;
}
+
}
#container h1{
+
background:linear-gradient(to top right,#2f70af,#000);
+
z-index:-5;
+
/* adds extra spacing when clearing content */
}
+
.igem_2017_content_wrapper  .clear.extra_space {
#container h1{
+
height: 30px;
text-align:center;
+
}
color:#fff;
+
 
padding-bottom:0;
+
 
font-size:3em;
+
/* highlight class, makes content slightly smaller */
padding:.8em 0;
+
.igem_2017_content_wrapper .highlight {
letter-spacing:.05em;
+
margin: 0px 15px;
margin:0;
+
padding: 15px 0px;
}
+
}
#container .container_in{
+
 
padding:2em 3% 4em;
+
 
position:relative;
+
/* highlight class, adds a gray background */
background:linear-gradient(to bottom right,#ddd,#fff);
+
.igem_2017_content_wrapper .highlight.gray {
}
+
background-color: #f2f2f2;  
#container .container_in .container_nav{
+
}
position: absolute;
+
 
left: 3%;
+
/* highlight with decoration blue line on top */
top: 2em;
+
.igem_2017_content_wrapper .highlight.blue_top {
width: 17%;
+
    border-top: 4px solid #3399ff;
max-width: 15em;
+
}
}
+
 
#container .container_in .container_nav.fixed{
+
/* highlight with a full blue border decoration */
position:fixed;
+
.igem_2017_content_wrapper .highlight.blue_border {
top:6.5em;
+
    border: 4px solid  #3399ff;
}
+
}
#container .container_in .container_nav.fixed_2{
+
 
position:absolute;
+
 
top:auto;
+
/* button class */
bottom:2em;
+
.igem_2017_content_wrapper .button{
}
+
max-width: 35%;
#container .container_in .container_nav>*:not(.nav_2){
+
margin: 30px auto;
display:block;
+
padding: 12px 10px;
font-size:1.2em;
+
    background-color: #3399ff;
cursor:pointer;
+
    text-align: center;
padding:.4em .6em;
+
  color: #ffffff;
margin:.6em 0;
+
-webkit-transition: all 0.4s ease;  
border-left:.2em solid #eee;
+
-moz-transition: all 0.4s ease;
transition:0.2s all;
+
-ms-transition: all 0.4s ease;  
-webkit-transition:0.2s all;
+
-o-transition: all 0.4s ease; transition: all 0.4s ease;
-moz-transition:0.2s all;
+
}
-o-transition:0.2s all;
+
 
}
+
/* styling for button on hover */
#container .container_in .container_nav>*:not(.nav_2):hover{
+
.igem_2017_content_wrapper .button:hover{
border-color:#2f70af;
+
background-color: #3399ff;
}
+
    color: #000000;
#container .container_in .container_nav>.active{
+
}
margin-left:1em;
+
 
background-color:#e4edf7;
+
 
border-color:#2f70af;
+
 
}
+
 
#container .container_in .container_nav .nav_2{
+
/***************************************************** RESPONSIVE STYLING ****************************************************/
display:none;
+
 
}
+
/* IF THE SCREEN IS LESS THAN 1200PX */
#container .container_in .container_nav .nav_2>*{
+
@media only screen and (max-width: 1200px) {
display:block;
+
 
margin:.6em 2em;
+
#content {width:100%; }
padding:.4em .6em;
+
.igem_2017_menu_wrapper {width:15%; right:0;}
border-left:.1em solid #ccc;
+
.highlight {padding:10px 0px;}
cursor:pointer;
+
.igem_2017_menu_wrapper #display_menu_control { display:none; }
transition:0.2s all;
+
#menu_content { display:block;}
-webkit-transition:0.2s all;
+
.menu_button.direct_to_page {padding-left: 17px;}
-moz-transition:0.2s all;
+
-o-transition:0.2s all;
+
}
}
+
 
#container .container_in .container_nav .nav_2>*:hover,#container .container_in .container_nav .nav_2>.active{
+
/* IF THE SCREEN IS LESS THAN 800PX */
border-color:#2f70af;
+
@media only screen and (max-width: 800px) {
}
+
 
#container .container_in .container_nav .nav_2>.active:after{
+
.igem_2017_menu_wrapper { width:100%; height: 15%; position:relative; left:0%;}
content:'>';
+
.igem_2017_content_wrapper {width:100%; margin-left:0px;}
color:#999;
+
.column.half_size  {width:100%; }
margin-left:.6em;
+
.column.full_size img, .column.half_size img { width: 100%; padding: 10px 0px;}  
font-weight:bold;
+
.highlight {padding:15px 5px;}
}
+
.igem_2017_menu_wrapper #display_menu_control { display:block; }
#container .container_in .container_content{
+
#menu_content { display:none;}
width:100%;
+
.igem_2017_menu_wrapper .menu_button .expand_collapse_icon { width: 5%; }
padding:1em 2em;
+
.menu_bottom_padding {display:none;}
color:#333;
+
.menu_button.direct_to_page { padding-left: 36px; }
box-shadow:0 0 .3em #666;
+
}
background-color:#fff;
+
 
}
+
 
#container .container_in .container_content h2{
+
font-size:1.4em;
+
color:#043180;
+
/* special class that the system uses to make sure the team wants a page to be evaluated */
font-weight:bold;
+
.judges-will-not-evaluate {
margin:-4.4em 0 .2em;
+
    width: 96.6%;
padding-bottom:.3em;
+
  margin: 5px 15px;
border-bottom:3px solid #a4acc9;
+
  display: block;
padding-top:5em;
+
border: 4px solid #3399ff;
}
+
    font-weight: bold;
#container .container_in .container_content h3{
+
}
font-size:1.2em;
+
margin:-5em 0 .4em 1em;
+
padding:5.4em 0 .2em;
+
color:#165db5;
+
font-weight:bold;
+
border-bottom:1px solid #cacede;
+
}
+
#container .container_in .container_content h4{
+
padding:.4em 0 .2em;
+
border-bottom:1px dashed #ccc;
+
font-weight:bold;
+
}
+
#container .container_in table{
+
min-width:80%;
+
margin:1em auto;
+
line-height:1.8em;
+
color:#333;
+
font-size:.85em;
+
}
+
#container .container_in table.small{
+
font-size:.65em;
+
}
+
#container .container_in table.medium{
+
font-size:.7em;
+
}
+
#container .container_in th{
+
background-color:#ccc;
+
border:1px solid #999;
+
font-weight:bold;
+
}
+
#container .container_in td{
+
border:1px solid #999;
+
padding:0 .2em;
+
text-align:center;
+
}
+
#container .container_in table a{
+
color:#2f70af;
+
}
+
#container .container_in .container_content .content{
+
margin:0 0 .3em 2.5em;
+
}
+
#container .container_in .container_content .content.else{
+
border-top:1px dotted #ccc;
+
min-height:auto!important;
+
padding:1em;
+
}
+
#container .container_in .container_content .content p{
+
margin:.4em 0;
+
text-indent:2em;
+
line-height:1.6em;
+
padding-bottom:.3em;
+
color:#2a2c33;
+
word-break:break-all;
+
}
+
#container .container_in .container_content .content p.code{
+
text-indent:0;
+
color:#666;
+
margin-left:1.8em;
+
}
+
#container .container_in .container_content .content p.no_indent{
+
text-indent:0;
+
}
+
#container .container_in .container_content .content.else p{
+
color:#999;
+
}
+
#container .container_in .container_content .content img{
+
width:60%;
+
margin:1em 20%;
+
 
 
}
 
#container .container_in .container_content .content a{
 
font-weight:bold;
 
color:#999;
 
font-size:.9em;
 
margin:0 .2em;
 
}
 
#container .container_in .container_content_right{
 
width:80%;
 
margin-left:20%;
 
}
 
#container .container_in .container_content.team{
 
width:85%;
 
margin:6.2em 5% 0 10%;
 
position:relative;
 
}
 
#container .container_in .container_content.team img{
 
position:absolute;
 
width:8em;
 
top:-4.2em;
 
left:-4.2em;
 
border:.1em solid #fff;
 
border-radius:4em;
 
}
 
#container .container_in .container_content.team .member_intro{
 
text-indent:2em;
 
line-height:1.8em;
 
word-spacing:.1em;
 
color:#333;
 
}
 
#container .container_in .container_content.team .member_name{
 
position:absolute;
 
right:1em;
 
top:-1.3em;
 
font-size:2em;
 
font-weight:bold;
 
color:#999;
 
font-style:italic;
 
}
 
#container .container_in_nav_2{
 
background-color:#fff;
 
text-align:center;
 
padding:.8em 0;
 
font-size:1.1em;
 
box-shadow:0 0 1em #666;
 
}
 
#container .container_in_nav_2>*{
 
display:inline-block;
 
padding:0 1.2em;
 
color:#666;
 
}
 
#container .container_in_nav_2>*:hover{
 
color:#333;
 
}
 
#container .container_in h5{
 
font-size:1.8em;
 
font-weight:bold;
 
border-top:.1em solid #888;
 
border-bottom:.1em solid #888;
 
color:#333;
 
padding:.6em 0;
 
margin:2.4em 0 .8em;
 
text-align:center;
 
}
 
#container .container_in h6{
 
font-size:1.5em;
 
font-weight:bold;
 
border-left:.2em solid #f3b029;
 
margin:.8em 0;
 
padding:.6em;
 
}
 
#container .container_in_3{
 
text-align:center;
 
padding:3em 0;
 
}
 
#container .container_in_3>*{
 
display:inline-block;
 
width:26%;
 
margin:0 2%;
 
vertical-align:top;
 
box-shadow:0 0 .3em #666;
 
padding:1.5em 1em;
 
background-color:#fff
 
}
 
#container .container_in_3 h2{
 
color:#2f70af;
 
font-weight:bold;
 
font-size:1.3em;
 
}
 
#container .container_in_3 h3{
 
text-align:left;
 
padding:.4em 0;
 
font-size:.9em;
 
font-weight:bold;
 
color:#333;
 
}
 
#container .container_in_3 p{
 
margin-left:1.5em;
 
border-left:.2em solid #ddd;
 
padding-left:.8em;
 
color:#666;
 
}
 
#container .container_in_3 a{
 
color:#2f70af;
 
font-style:italic;
 
font-weight:bold;
 
}
 
#container .content_attr{
 
margin:0 5%;
 
width:90%!important;
 
line-height:2em;
 
}
 
#container .content_attr p{
 
font-size:1.1em;
 
text-indent:2em;
 
margin:.6em 0;
 
}
 
#container .container_in_content{
 
background-color:#fff;
 
padding:1.5em 2em;
 
margin:0 6%;
 
box-shadow:0 0 .3em #666;
 
}
 
#container .container_in_content .imgs{
 
text-align:center;
 
}
 
#container .container_in_content img{
 
width:90%;
 
margin:1em 5%;
 
}
 
#container .container_in_content img.small{
 
width:35%;
 
margin:1em 2.5%;
 
display:inline-block;
 
}
 
#container .container_in_content img.medium{
 
width:50%;
 
margin:1em 25%;
 
}
 
#container .container_in_content h2{
 
font-weight:bold;
 
font-size:1.2em;
 
color:#2f70af;
 
margin:1em 0;
 
}
 
#container .container_in_content h3{
 
font-weight:bold;
 
font-size:1.1em;
 
margin:1em 0;
 
color:#333;
 
text-decoration:underline;
 
}
 
#container .container_in_content em{
 
font-weight:bold;
 
display:block;
 
}
 
#container .container_in_content h2 b{
 
color:#fff;
 
background-color:#2f70af;
 
padding:.2em .8em;
 
font-size:.85em;
 
border-radius:1em;
 
margin:0 .6em;
 
}
 
#container .container_in_content p{
 
margin:.8em 0 .8em 1em;
 
border-left:.2em solid #ccc;
 
padding-left:.8em;
 
font-size:.9em;
 
word-wrap:break-word;
 
}
 
#container .container_in_content p.show{
 
border-color:#2f70af;
 
color:#2f70af;
 
font-weight:bold;
 
margin:1em 0 1em 1em;
 
}
 
#container .container_in_content strong{
 
font-weight:bold;
 
}
 
#container .container_in_content p a{
 
font-style:italic;
 
color:#2f70af;
 
font-weight:bold;
 
}
 
#container .container_in_content .top_text{
 
padding:1em;
 
background-color:#5991c8;
 
color:#fff;
 
font-size:.9em;
 
}
 
#container .collaborations_item a{
 
display:block;
 
background-color:#e3e3e3;
 
font-size:.8em;
 
color:#666;
 
text-align:center;
 
padding:.2em 0;
 
margin:1em 0;
 
}
 
#container .collaborations_item a:hover{
 
background-color:#ddd;
 
color:#333;
 
}
 
 
</style>
 
</style>
  
<div id="header">
+
 
<div class="header_logo"></div>
+
<!--- THIS IS WHERE THE HTML BEGINS --->
<div class="header_nav">
+
 
<a data-name="Home" href="https://2017.igem.org/Team:JNFLS">
+
 
<img src="https://static.igem.org/mediawiki/2017/d/dc/JNFLS-nav-1.png"/>Home</a>
+
 
<span data-name="Team" class="navs">
+
<head>
<img src="https://static.igem.org/mediawiki/2017/8/8b/JNFLS-nav-2.png"/>Team
+
 
<div class="nav_2">
+
<!-- This tells the browser that your page is responsive -->
<a href="https://2017.igem.org/Team:JNFLS/Team">Members</a>
+
<meta name="viewport" content="width=device-width, initial-scale=1">  
<a href="https://2017.igem.org/Team:JNFLS/Attributions">Attributions</a>
+
 
<a href="https://2017.igem.org/Team:JNFLS/Collaborations">Collaborations</a>
+
</head>
</div></span>
+
 
<span data-name="Project" class="navs">
+
 
<img src="https://static.igem.org/mediawiki/2017/6/66/JNFLS-nav-3.png"/>Project
+
 
<div class="nav_2">
+
<div class="igem_2017_menu_wrapper" >
<a href="https://2017.igem.org/Team:JNFLS/Description">Description</a>
+
 
<a href="https://2017.igem.org/Team:JNFLS/Design">Design</a>
+
 
<a href="https://2017.igem.org/Team:JNFLS/Results">Results</a>
+
 
<a href="https://2017.igem.org/Team:JNFLS/Model">Model</a>
+
<a href="https://2017.igem.org/Team:JNFLS">
<a href="https://2017.igem.org/Team:JNFLS/Notebook">Notebook</a>
+
<img src="http://placehold.it/350x150">
<a href="https://2017.igem.org/Team:JNFLS/Demonstrate">Demonstrate</a>
+
</a>
</div>
+
 
</span>
+
 
<a data-name="InterLab" href="https://2017.igem.org/Team:JNFLS/InterLab">
+
<!-- this div is hidden by default and will only be displayed if the screen size is too small -->
<img src="https://static.igem.org/mediawiki/2017/4/43/JNFLS-nav-5.png"/>InterLab</a>
+
<div class="menu_button" id="display_menu_control">
<a data-name="Parts" href="https://2017.igem.org/Team:JNFLS/Parts">
+
MENU 
<img src="https://static.igem.org/mediawiki/2017/f/f4/JNFLS-nav-6.png"/>Parts</a>
+
</div>
<span data-name="Outlab" class="navs">
+
 
<img src="https://static.igem.org/mediawiki/2017/1/1e/JNFLS-nav-7.png"/>Outlab
+
<div id="menu_content">
<div class="nav_2">
+
<a href="https://2017.igem.org/Team:JNFLS/HP/Silver">Silver</a>
+
 
<a href="https://2017.igem.org/Team:JNFLS/HP/Gold_Integrated">Gold_Integrated</a>
+
 
<a href="https://2017.igem.org/Team:JNFLS/Engagement">Engagement</a>
+
 
</div>
+
<a href="https://2017.igem.org/Team:JNFLS">
</span>
+
<div class="menu_button direct_to_page">
<a data-name="Safety" href="https://2017.igem.org/Team:JNFLS/Safety">
+
HOME
<img src="https://static.igem.org/mediawiki/2017/7/7b/JNFLS-nav-4.png"/>Safety</a>
+
</div>
<a data-name="Awards" href="https://2017.igem.org/Team:JNFLS/Awards">
+
</a>
<img src="https://static.igem.org/mediawiki/2017/c/c2/JNFLS-nav-8.png"/>Awards</a>
+
 
</div>
+
 
 +
 
 +
<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:JNFLS/Team">
 +
<div class="submenu_button" id="Team_page">
 +
Team
 +
</div>
 +
</a>
 +
 
 +
<a href="https://2017.igem.org/Team:JNFLS/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:JNFLS/Description">
 +
<div class="submenu_button"  id="Description_page">
 +
Description
 +
</div>
 +
</a>
 +
 
 +
<a href="https://2017.igem.org/Team:JNFLS/Design">
 +
<div class="submenu_button"  id="Design_page">
 +
Design
 +
</div>
 +
</a>
 +
 
 +
<a href="https://2017.igem.org/Team:JNFLS/Experiments">
 +
<div class="submenu_button"  id="Experiments_page">
 +
Experiments
 +
</div>
 +
</a>
 +
 
 +
 
 +
<a href="https://2017.igem.org/Team:JNFLS/Notebook">
 +
<div class="submenu_button"  id="Notebook_page">
 +
Notebook
 +
</div>
 +
</a>
 +
 
 +
<a href="https://2017.igem.org/Team:JNFLS/InterLab">
 +
<div class="submenu_button"  id="InterLab_page">
 +
InterLab
 +
</div>
 +
</a>
 +
 
 +
<a href="https://2017.igem.org/Team:JNFLS/Contribution">
 +
<div class="submenu_button"  id="Contribution_page">
 +
Contribution
 +
</div>
 +
</a>
 +
 
 +
<a href="https://2017.igem.org/Team:JNFLS/Model">
 +
<div class="submenu_button"  id="Model_page">
 +
Model
 +
</div>
 +
</a>
 +
 
 +
<a href="https://2017.igem.org/Team:JNFLS/Results">
 +
<div class="submenu_button"  id="Results_page">
 +
Results
 +
</div>
 +
</a>
 +
 
 +
 
 +
<a href="https://2017.igem.org/Team:JNFLS/Demonstrate">
 +
<div class="submenu_button"  id="Demonstrate_page">
 +
Demonstrate
 +
</div>
 +
</a>
 +
 
 +
<a href="https://2017.igem.org/Team:JNFLS/Improve">
 +
<div class="submenu_button"  id="Improve_page">
 +
Improve
 +
</div>
 +
</a>
 +
 
 +
<a href="https://2017.igem.org/Team:JNFLS/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:JNFLS/Parts">
 +
<div class="submenu_button"  id="Parts_page">
 +
Parts
 +
</div>
 +
</a>
 +
 
 +
<a href="https://2017.igem.org/Team:JNFLS/Basic_Part">
 +
<div class="submenu_button"  id="Basic_Part_page">
 +
Basic Parts
 +
</div>
 +
</a>
 +
 
 +
<a href="https://2017.igem.org/Team:JNFLS/Composite_Part">
 +
<div class="submenu_button"  id="Composite_Part_page">
 +
Composite Parts
 +
</div>
 +
</a>
 +
 
 +
<a href="https://2017.igem.org/Team:JNFLS/Part_Collection">
 +
<div class="submenu_button"  id="Part_Collection_page">
 +
Part Collection
 +
</div>
 +
</a>
 +
</div>
 +
 
 +
 +
 +
 +
 +
 
 +
<a href="https://2017.igem.org/Team:JNFLS/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:JNFLS/HP/Silver">
 +
<div class="submenu_button"  id="Silver_page">
 +
Silver HP
 +
</div>
 +
</a>
 +
 
 +
<a href="https://2017.igem.org/Team:JNFLS/HP/Gold_Integrated">
 +
<div class="submenu_button" id="Gold_Integrated_page">
 +
Integrated and Gold
 +
</div>
 +
</a>
 +
 
 +
 
 +
<a href="https://2017.igem.org/Team:JNFLS/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:JNFLS/Applied_Design">
 +
<div class="submenu_button"  id="Applied_Design_page">
 +
Applied Design
 +
</div>
 +
</a>
 +
 
 +
<a href="https://2017.igem.org/Team:JNFLS/Entrepreneurship">
 +
<div class="submenu_button"  id="Entrepreneurship_page">
 +
Entrepreneurship
 +
</div>
 +
</a>
 +
 
 +
<a href="https://2017.igem.org/Team:JNFLS/Hardware">
 +
<div class="submenu_button"  id="Hardware_page">
 +
Hardware
 +
</div>
 +
</a>
 +
 
 +
<a href="https://2017.igem.org/Team:JNFLS/Measurement">
 +
<div class="submenu_button"  id="Measurement_page">
 +
Measurement
 +
</div>
 +
</a>
 +
 
 +
<a href="https://2017.igem.org/Team:JNFLS/Model">
 +
<div class="submenu_button"  id="Model_page">
 +
Model
 +
</div>
 +
</a>
 +
 
 +
<a href="https://2017.igem.org/Team:JNFLS/Plant">
 +
<div class="submenu_button"  id="Plant_page">
 +
Plant
 +
</div>
 +
</a>
 +
 
 +
 
 +
<a href="https://2017.igem.org/Team:JNFLS/Software">
 +
<div class="submenu_button"  id="Software_page">
 +
Software
 +
</div>
 +
</a>
 +
 
 +
</div>
 +
 
 +
<a href="https://igem.org/2017_Judging_Form?team=JNFLS">
 +
<div class="menu_button direct_to_page">
 +
JUDGING FORM
 +
</div>  
 +
</a>
 +
 
 +
 
 +
 +
<div class="menu_bottom_padding" >
 +
</div>  
 +
 +
</div>
 +
 
 +
 
 +
 
 +
 
 
</div>
 
</div>
 +
 +
 +
 +
<!-- start of content -->
 +
<div class="igem_2017_content_wrapper">
 +
<h1>JNFLS</h1>

Latest revision as of 20:30, 1 March 2018

JNFLS