Difference between revisions of "Template:CCU Taiwan"

 
Line 57: Line 57:
 
 
 
// in case you preview mode is selected, the menu is hidden for better visibility  
 
// in case you preview mode is selected, the menu is hidden for better visibility  
if (window.location.href.indexOf("submit") < 0) {
+
if (window.location.href.indexOf("submit") >= 0) {
 
$(".igem_2017_menu_wrapper").hide();
 
$(".igem_2017_menu_wrapper").hide();
 
}
 
}
Line 85: Line 85:
 
</script>
 
</script>
  
<script>
 
/*
 
Helios by HTML5 UP
 
html5up.net | @ajlkn
 
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
 
*/
 
  
(function($) {
 
  
var settings = {
 
  
// Carousels
 
carousels: {
 
speed: 4,
 
fadeIn: true,
 
fadeDelay: 250
 
},
 
  
};
+
<style>
  
skel.breakpoints({
 
wide: '(max-width: 1680px)',
 
normal: '(max-width: 1280px)',
 
narrow: '(max-width: 960px)',
 
narrower: '(max-width: 840px)',
 
mobile: '(max-width: 736px)'
 
});
 
  
$(function() {
 
  
var $window = $(window),
+
/***************************************************** DEFAULT WIKI SETTINGS  ****************************************************/
$body = $('body');
+
 +
/* Clear the default wiki settings */
 +
 +
#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; }
  
// Disable animations/transitions until the page has loaded.
+
$body.addClass('is-loading');
+
 +
 +
/**************************************************************** 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;
 +
}
  
$window.on('load', function() {
+
/* this hides the scrollbar to keep view consistency */
$body.removeClass('is-loading');
+
.igem_2017_menu_wrappe::-webkit-scrollbar {  
});
+
display: none;
 +
}
 +
 +
 +
/* styling for links in the menu, removes the line under text */
 +
.igem_2017_menu_wrapper a { 
 +
text-decoration: none;  
 +
}
  
// CSS polyfills (IE<9).
 
if (skel.vars.IEVersion < 9)
 
$(':last-child').addClass('last-child');
 
  
// Fix: Placeholder polyfill.
+
/* styling for the images in the menu */
$('form').placeholder();
+
.igem_2017_menu_wrapper img {
 +
width: 100%;
 +
}
  
// Prioritize "important" elements on mobile.
+
/* styling for the menu buttons */
skel.on('+mobile -mobile', function() {
+
.igem_2017_menu_wrapper .menu_button {  
$.prioritize(
+
width: 100%;
'.important\\28 mobile\\29',
+
padding: 10px 0px 10px 15px;
skel.breakpoint('mobile').active
+
float:left;
);
+
border-bottom: 1px solid #d3d3d3;  
});
+
font-size: 12px;  
 +
font-weight: bold;
 +
color: #5e5f5f;
 +
cursor: pointer;
 +
}
  
// Dropdowns.
 
$('#nav > ul').dropotron({
 
mode: 'fade',
 
speed: 350,
 
noOpenerFade: true,
 
alignment: 'center'
 
});
 
  
// Scrolly links.
+
.igem_2017_menu_wrapper .menu_bottom_padding {
$('.scrolly').scrolly();
+
width: 100%;  
 +
height: 30px;
 +
float:left;
 +
}
  
// Off-Canvas Navigation.
+
.menu_button.direct_to_page {
 +
padding-left: 36px;
 +
}
  
// Navigation Button.
 
$(
 
'<div id="navButton">' +
 
'<a href="#navPanel" class="toggle"></a>' +
 
'</div>'
 
)
 
.appendTo($body);
 
  
// Navigation Panel.
+
.igem_2017_menu_wrapper .menu_button .expand_collapse_icon {
$(
+
width:10%;
'<div id="navPanel">' +
+
float:left;
'<nav>' +
+
}
$('#nav').navList() +
+
'</nav>' +
+
'</div>'
+
)
+
.appendTo($body)
+
.panel({
+
delay: 500,
+
hideOnClick: true,
+
hideOnSwipe: true,
+
resetScroll: true,
+
resetForms: true,
+
target: $body,
+
visibleClass: 'navPanel-visible'
+
});
+
  
// Fix: Remove navPanel transitions on WP<10 (poor/buggy performance).
+
.igem_2017_menu_wrapper .menu_button .expand_collapse_icon::before {
if (skel.vars.os == 'wp' && skel.vars.osVersion < 10)
+
content: "+"; 
$('#navButton, #navPanel, #page-wrapper')
+
}
.css('transition', '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;
 +
}
  
// Carousels.
+
/* styling for the menu button when it is the current page */
$('.carousel').each(function() {
+
.current_page {  
 +
background-color:#7fc1f7  !important;
 +
color:#5e5f5f !important;
 +
}
  
var $t = $(this),
 
$forward = $('<span class="forward"></span>'),
 
$backward = $('<span class="backward"></span>'),
 
$reel = $t.children('.reel'),
 
$items = $reel.children('article');
 
  
var pos = 0,
+
/* styling for the submenu buttons */
leftLimit,
+
.igem_2017_menu_wrapper .submenu_button {
rightLimit,
+
width: 100%;
itemWidth,
+
padding: 10px 0px 10px 34px;
reelWidth,
+
float:left;
timerId;
+
background-color:#f2f2f2;  
 +
border-bottom: 1px solid #d3d3d3;
 +
font-size: 12px;
 +
color: #5e5f5f;
 +
cursor: pointer;
 +
}
  
// Items.
+
/* wrapper for the submenu items, they are hidden by default*/
if (settings.carousels.fadeIn) {
+
.igem_2017_menu_wrapper .submenu_wrapper {  
 +
display:none;
 +
}
  
$items.addClass('loading');
+
/* when the page size is bigger than 800px, this show/hide control is hidden by default */
 +
.igem_2017_menu_wrapper #display_menu_control {
 +
display:none;
 +
text-align:center;
 +
}
 +
  
$t.onVisible(function() {
+
/***************************************************** CONTENT OF THE PAGE ****************************************************/
var timerId,
+
limit = $items.length - Math.ceil($window.width() / itemWidth);
+
  
timerId = window.setInterval(function() {
+
/* Wrapper for the content */
var x = $items.filter('.loading'), xf = x.first();
+
.igem_2017_content_wrapper {
 +
width: 81%;
 +
margin: 2%;
 +
display:block;
 +
float:left;
 +
background-color:white;
 +
font-family:Tahoma, Geneva, sans-serif;  
 +
}
  
if (x.length <= limit) {
 
  
window.clearInterval(timerId);
+
/********************************* HTML STYLING  *********************************/
$items.removeClass('loading');
+
return;
+
  
}
+
/* styling for the titles h1 h2 */
 +
.igem_2017_content_wrapper h1, .igem_2017_content_wrapper h2 {
 +
padding:5px 15px;
 +
border-bottom: 0px;
 +
color: #3399ff;
 +
}
  
if (skel.vars.IEVersion < 10) {
 
  
xf.fadeTo(750, 1.0);
+
/* styling for the titles  h3 h4 h5 h6*/
window.setTimeout(function() {
+
.igem_2017_content_wrapper h3, .igem_2017_content_wrapper h4, .igem_2017_content_wrapper h5, .igem_2017_content_wrapper h6 {  
xf.removeClass('loading');
+
padding:5px 15px;  
}, 50);
+
border-bottom:0px;  
 +
color: #000000; 
 +
}
  
}
 
else
 
xf.removeClass('loading');
 
  
}, settings.carousels.fadeDelay);
+
/* font and text */
}, 50);
+
.igem_2017_content_wrapper p {
}
+
padding: 0px 15px;  
 +
font-size: 13px;
 +
}
  
// Main.
+
/* Links */
$t._update = function() {
+
.igem_2017_content_wrapper a {  
pos = 0;
+
font-weight: bold;
rightLimit = (-1 * reelWidth) + $window.width();
+
text-decoration: underline;
leftLimit = 0;
+
text-decoration-color: #3399ff;
$t._updatePos();
+
color:  #3399ff;
};
+
-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;
 +
}
  
if (skel.vars.IEVersion < 9)
+
/* hover for the links */
$t._updatePos = function() { $reel.css('left', pos); };
+
.igem_2017_content_wrapper a:hover {  
else
+
text-decoration:none;
$t._updatePos = function() { $reel.css('transform', 'translate(' + pos + 'px, 0)'); };
+
color:#000000;
 +
}
  
// Forward.
+
/* non numbered lists */
$forward
+
.igem_2017_content_wrapper ul {
.appendTo($t)
+
padding:0px 20px;
.hide()
+
font-size: 13px;
.mouseenter(function(e) {
+
font-family:Tahoma, Geneva, sans-serif;
timerId = window.setInterval(function() {
+
}
pos -= settings.carousels.speed;
+
  
if (pos <= rightLimit)
+
/* numbered lists */
{
+
.igem_2017_content_wrapper ol {
window.clearInterval(timerId);
+
padding:0px;
pos = rightLimit;
+
font-size: 13px;
}
+
font-family:Tahoma, Geneva, sans-serif;  
 +
}
  
$t._updatePos();
+
/* Table */
}, 10);
+
.igem_2017_content_wrapper table {
})
+
width: 97%;  
.mouseleave(function(e) {
+
margin:15px 10px;  
window.clearInterval(timerId);
+
border: 1px solid #d3d3d3;
});
+
border-collapse: collapse;  
 +
}
  
// Backward.
+
/* table cells */
$backward
+
.igem_2017_content_wrapper  td {
.appendTo($t)
+
padding: 10px;
.hide()
+
vertical-align: text-top;
.mouseenter(function(e) {
+
border: 1px solid #d3d3d3;
timerId = window.setInterval(function() {
+
border-collapse: collapse;  
pos += settings.carousels.speed;
+
}
  
if (pos >= leftLimit) {
+
/* table headers */
 +
.igem_2017_content_wrapper th {  
 +
padding: 10px;
 +
vertical-align: text-top;
 +
border: 1px solid #d3d3d3;
 +
border-collapse: collapse;
 +
background-color:#f2f2f2;
 +
}
  
window.clearInterval(timerId);
 
pos = leftLimit;
 
  
}
+
/**********************************LAYOUT CLASSES **********************************/
  
$t._updatePos();
+
/* general class for column divs */
}, 10);
+
.igem_2017_content_wrapper .column  {  
})
+
padding: 10px 0px;
.mouseleave(function(e) {
+
float:left;
window.clearInterval(timerId);
+
}
});
+
  
// Init.
+
/* class for a full width column */
$window.load(function() {
+
.column .full_size {
 +
width:100%;
 +
}
  
reelWidth = $reel[0].scrollWidth;
+
/* styling for images in a full width column*/
 +
.column.full_size img {
 +
width:97%;
 +
padding: 10px 15px;
 +
}
  
skel.on('change', function() {
+
/* class for a half width column */
 +
.column.half_size {
 +
width: 50%;
 +
}
 +
/* styling for images in a half width column*/
 +
.column.half_size img {
 +
width: 94.5%;
 +
padding: 10px 15px;
 +
}
  
if (skel.vars.mobile) {
 
  
$reel
 
.css('overflow-y', 'hidden')
 
.css('overflow-x', 'scroll')
 
.scrollLeft(0);
 
$forward.hide();
 
$backward.hide();
 
  
}
 
else {
 
  
$reel
+
/********************************* SUPPORT CLASSES ********************************/
.css('overflow', 'visible')
+
.scrollLeft(0);
+
$forward.show();
+
$backward.show();
+
  
}
+
/* class that clears content below*/
 +
.igem_2017_content_wrapper .clear {
 +
clear:both;
 +
}
 +
 +
 +
/* adds extra spacing when clearing content */
 +
.igem_2017_content_wrapper  .clear.extra_space {
 +
height: 30px;
 +
}
  
$t._update();
 
  
});
+
/* highlight class, makes content slightly smaller */
 +
.igem_2017_content_wrapper .highlight {
 +
margin: 0px 15px;
 +
padding: 15px 0px;
 +
}
  
$window.resize(function() {
 
reelWidth = $reel[0].scrollWidth;
 
$t._update();
 
}).trigger('resize');
 
  
});
+
/* highlight class, adds a gray background */
 +
.igem_2017_content_wrapper .highlight.gray {
 +
background-color: #f2f2f2;  
 +
}
  
});
+
/* highlight with decoration blue line on top */
 +
.igem_2017_content_wrapper .highlight.blue_top {
 +
    border-top: 4px solid #3399ff;
 +
}
  
});
+
/* highlight with a full blue border decoration */
 +
.igem_2017_content_wrapper .highlight.blue_border {
 +
    border: 4px solid  #3399ff;
 +
}
  
})(jQuery);
 
  
</script>
+
/* 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;
 +
}
  
  
<style>
 
  
  
 +
/***************************************************** RESPONSIVE STYLING ****************************************************/
  
/***************************************************** DEFAULT WIKI SETTINGS  ****************************************************/
+
/* IF THE SCREEN IS LESS THAN 1200PX */
+
@media only screen and (max-width: 1200px) {
/* Clear the default wiki settings */
+
+
#home_logo, #sideMenu { display:none; }
+
#sideMenu, #top_title, .patrollink  {display:none;}
+
#content { width:100%; padding:0px;  margin-top:-30px; margin-left:0px;}
+
body {background-color:white; }
+
#bodyContent h1, #bodyContent h2, #bodyContent h3, #bodyContent h4, #bodyContent h5 { margin-bottom: 0px; }
+
  
+
#content {width:100%; }
+
.igem_2017_menu_wrapper {width:15%; right:0;}
+
.highlight {padding:10px 0px;}
/**************************************************************** MENU ***************************************************************/
+
.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; }
 +
}
  
/* Reset */
 
  
 
 
 
+
 +
/* 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>
  
  
 
<!--- THIS IS WHERE THE HTML BEGINS --->
 
<!--- THIS IS WHERE THE HTML BEGINS --->
 +
  
  
Line 374: Line 457:
 
<!-- This tells the browser that your page is responsive -->
 
<!-- This tells the browser that your page is responsive -->
 
<meta name="viewport" content="width=device-width, initial-scale=1">  
 
<meta name="viewport" content="width=device-width, initial-scale=1">  
 
  
 
</head>
 
</head>
  
  
 +
 +
<div class="igem_2017_menu_wrapper" >
 +
 +
 +
 +
<a href="https://2017.igem.org/Team:CCU_Taiwan">
 +
<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:CCU_Taiwan">
 +
<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:CCU_Taiwan/Team">
 +
<div class="submenu_button" id="Team_page">
 +
Team
 +
</div>
 +
</a>
 +
 +
<a href="https://2017.igem.org/Team:CCU_Taiwan/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:CCU_Taiwan/Description">
 +
<div class="submenu_button"  id="Description_page">
 +
Description
 +
</div>
 +
</a>
 +
 +
<a href="https://2017.igem.org/Team:CCU_Taiwan/Design">
 +
<div class="submenu_button"  id="Design_page">
 +
Design
 +
</div>
 +
</a>
 +
 +
<a href="https://2017.igem.org/Team:CCU_Taiwan/Experiments">
 +
<div class="submenu_button"  id="Experiments_page">
 +
Experiments
 +
</div>
 +
</a>
 +
 +
 +
<a href="https://2017.igem.org/Team:CCU_Taiwan/Notebook">
 +
<div class="submenu_button"  id="Notebook_page">
 +
Notebook
 +
</div>
 +
</a>
 +
 +
<a href="https://2017.igem.org/Team:CCU_Taiwan/InterLab">
 +
<div class="submenu_button"  id="InterLab_page">
 +
InterLab
 +
</div>
 +
</a>
 +
 +
<a href="https://2017.igem.org/Team:CCU_Taiwan/Contribution">
 +
<div class="submenu_button"  id="Contribution_page">
 +
Contribution
 +
</div>
 +
</a>
 +
 +
<a href="https://2017.igem.org/Team:CCU_Taiwan/Model">
 +
<div class="submenu_button"  id="Model_page">
 +
Model
 +
</div>
 +
</a>
 +
 +
<a href="https://2017.igem.org/Team:CCU_Taiwan/Results">
 +
<div class="submenu_button"  id="Results_page">
 +
Results
 +
</div>
 +
</a>
 +
 +
 +
<a href="https://2017.igem.org/Team:CCU_Taiwan/Demonstrate">
 +
<div class="submenu_button"  id="Demonstrate_page">
 +
Demonstrate
 +
</div>
 +
</a>
 +
 +
<a href="https://2017.igem.org/Team:CCU_Taiwan/Improve">
 +
<div class="submenu_button"  id="Improve_page">
 +
Improve
 +
</div>
 +
</a>
 +
 +
<a href="https://2017.igem.org/Team:CCU_Taiwan/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:CCU_Taiwan/Parts">
 +
<div class="submenu_button"  id="Parts_page">
 +
Parts
 +
</div>
 +
</a>
 +
 +
<a href="https://2017.igem.org/Team:CCU_Taiwan/Basic_Part">
 +
<div class="submenu_button"  id="Basic_Part_page">
 +
Basic Parts
 +
</div>
 +
</a>
 +
 +
<a href="https://2017.igem.org/Team:CCU_Taiwan/Composite_Part">
 +
<div class="submenu_button"  id="Composite_Part_page">
 +
Composite Parts
 +
</div>
 +
</a>
 +
 +
<a href="https://2017.igem.org/Team:CCU_Taiwan/Part_Collection">
 +
<div class="submenu_button"  id="Part_Collection_page">
 +
Part Collection
 +
</div>
 +
</a>
 +
</div>
 +
 +
 +
 +
 +
 +
 +
<a href="https://2017.igem.org/Team:CCU_Taiwan/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:CCU_Taiwan/HP/Silver">
 +
<div class="submenu_button"  id="Silver_page">
 +
Silver HP
 +
</div>
 +
</a>
 +
 +
<a href="https://2017.igem.org/Team:CCU_Taiwan/HP/Gold_Integrated">
 +
<div class="submenu_button" id="Gold_Integrated_page">
 +
Integrated and Gold
 +
</div>
 +
</a>
 +
 +
 +
<a href="https://2017.igem.org/Team:CCU_Taiwan/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:CCU_Taiwan/Applied_Design">
 +
<div class="submenu_button"  id="Applied_Design_page">
 +
Applied Design
 +
</div>
 +
</a>
 +
 +
<a href="https://2017.igem.org/Team:CCU_Taiwan/Entrepreneurship">
 +
<div class="submenu_button"  id="Entrepreneurship_page">
 +
Entrepreneurship
 +
</div>
 +
</a>
 +
 +
<a href="https://2017.igem.org/Team:CCU_Taiwan/Hardware">
 +
<div class="submenu_button"  id="Hardware_page">
 +
Hardware
 +
</div>
 +
</a>
 +
 +
<a href="https://2017.igem.org/Team:CCU_Taiwan/Measurement">
 +
<div class="submenu_button"  id="Measurement_page">
 +
Measurement
 +
</div>
 +
</a>
 +
 +
<a href="https://2017.igem.org/Team:CCU_Taiwan/Model">
 +
<div class="submenu_button"  id="Model_page">
 +
Model
 +
</div>
 +
</a>
 +
 +
<a href="https://2017.igem.org/Team:CCU_Taiwan/Plant">
 +
<div class="submenu_button"  id="Plant_page">
 +
Plant
 +
</div>
 +
</a>
 +
 +
 +
<a href="https://2017.igem.org/Team:CCU_Taiwan/Software">
 +
<div class="submenu_button"  id="Software_page">
 +
Software
 +
</div>
 +
</a>
 +
 +
</div>
 +
 +
<a href="https://igem.org/2017_Judging_Form?team=CCU_Taiwan">
 +
<div class="menu_button direct_to_page">
 +
JUDGING FORM
 +
</div>
 +
</a>
 +
 +
 +
 +
<div class="menu_bottom_padding" >
 +
</div>
 +
 +
</div>
 +
 +
 +
 +
 +
</div>
  
  
  
 
<!-- start of content -->
 
<!-- start of content -->
 +
<div class="igem_2017_content_wrapper">
 +
<h1>CCU_Taiwan</h1>

Latest revision as of 06:58, 20 August 2017

CCU_Taiwan