Difference between revisions of "Team:NJAU China"

Line 103: Line 103:
 
.mycontent{
 
.mycontent{
 
             width:1366px;
 
             width:1366px;
    height:500px;
 
 
    margin:0 auto;
 
    margin:0 auto;
 
    position:relative;
 
    position:relative;
Line 114: Line 113:
 
margin:0 auto;}
 
margin:0 auto;}
 
         /*-- hides default wiki settings --*/
 
         /*-- hides default wiki settings --*/
 +
 +
/*my own page*/
 +
* {
 +
margin:0;
 +
padding:0;
 +
}
 +
 +
body {
 +
/*font-family:Tahoma, Geneva, sans-serif;*/
 +
font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
 +
font-size:1em;
 +
margin:0 auto;
 +
}
 +
.nav {
 +
    left:0;
 +
width:auto;
 +
    background-color:#252525;
 +
    padding:0 100px;
 +
position:relative;
 +
}
 +
 +
/* general styles */
 +
.menu, .menu ul {
 +
    list-style: none;
 +
width:100%;
 +
    margin:0 auto;
 +
}
 +
.menu {
 +
    height: 58px;
 +
}
 +
.menu li {
 +
    background: -moz-linear-gradient(#292929, #252525);
 +
    background: -ms-linear-gradient(#292929, #252525);
 +
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #292929), color-stop(100%, #252525));
 +
    background: -webkit-linear-gradient(#292929, #252525);
 +
    background: -o-linear-gradient(#292929, #252525);
 +
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#292929', endColorstr='#252525');
 +
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#292929', endColorstr='#252525')";
 +
    background: linear-gradient(#292929, #252525);
 +
    border-bottom: 2px solid #181818;
 +
    border-top: 2px solid #303030;
 +
    min-width:100px;
 +
   
 +
}
 +
.menu li img{
 +
display:block;
 +
width:60px;
 +
height:54px;
 +
margin:0;
 +
}
 +
.menu > li {
 +
    display: block;
 +
    float: left;
 +
    position: relative;
 +
}
 +
.menu a {
 +
    border-left: 3px solid rgba(0, 0, 0, 0);
 +
    color: #FFF;
 +
    display: block;
 +
    font-family:Arial, Helvetica, sans-serif;
 +
    font-size: 15px;
 +
font-weight:bold;
 +
    line-height: 54px;
 +
    padding: 0 30px;
 +
    text-decoration: none;
 +
}
 +
 +
/* onhover styles */
 +
.menu li:hover {
 +
    background-color: #1c1c1c;
 +
    background: -moz-linear-gradient(#1c1c1c, #1b1b1b);
 +
    background: -ms-linear-gradient(#1c1c1c, #1b1b1b);
 +
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #1c1c1c), color-stop(100%, #1b1b1b));
 +
    background: -webkit-linear-gradient(#1c1c1c, #1b1b1b);
 +
    background: -o-linear-gradient(#1c1c1c, #1b1b1b);
 +
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1c1c1c', endColorstr='#1b1b1b');
 +
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#1c1c1c', endColorstr='#1b1b1b')";
 +
    background: linear-gradient(#1c1c1c, #1b1b1b);
 +
    border-bottom: 2px solid #222222;
 +
    border-top: 2px solid #1B1B1B;
 +
}
 +
.menu li:hover > a {
 +
    border-radius: 5px 0 0 0;
 +
    border-left: 3px solid #369;
 +
    color:#369;
 +
}
 +
 +
/* submenu styles */
 +
.submenu {
 +
    left: 0;
 +
    max-height: 0;
 +
    position: absolute;
 +
    top: 100%;
 +
    z-index: 0;
 +
min-width:220px;
 +
    -webkit-perspective: 400px;
 +
    -moz-perspective: 400px;
 +
    -ms-perspective: 400px;
 +
    -o-perspective: 400px;
 +
    perspective: 400px;
 +
 +
}
 +
.submenu li {
 +
    opacity: 0;
 +
    -webkit-transform: rotateY(90deg);
 +
    -moz-transform: rotateY(90deg);
 +
    -ms-transform: rotateY(90deg);
 +
    -o-transform: rotateY(90deg);
 +
    transform: rotateY(90deg);
 +
 +
    -webkit-transition: opacity .4s, -webkit-transform .5s;
 +
    -moz-transition: opacity .4s, -moz-transform .5s;
 +
    -ms-transition: opacity .4s, -ms-transform .5s;
 +
    -o-transition: opacity .4s, -o-transform .5s;
 +
    transition: opacity .4s, transform .5s;
 +
}
 +
.menu .submenu li:hover a {
 +
    border-left: 3px solid #454545;
 +
    border-radius: 0;
 +
    color: #69F;
 +
}
 +
.menu > li:hover .submenu, .menu > li:focus .submenu {
 +
    max-height: 2000px;
 +
    z-index: 10;
 +
}
 +
.menu > li:hover .submenu li, .menu > li:focus .submenu li {
 +
    opacity: 1;
 +
    -webkit-transform: none;
 +
    -moz-transform: none;
 +
    -ms-transform: none;
 +
    -o-transform: none;
 +
    transform: none;
 +
}
 +
 +
/* CSS3 delays for transition effects */
 +
.menu li:hover .submenu li:nth-child(1) {
 +
    -webkit-transition-delay: 0s;
 +
    -moz-transition-delay: 0s;
 +
    -ms-transition-delay: 0s;
 +
    -o-transition-delay: 0s;
 +
    transition-delay: 0s;
 +
}
 +
.menu li:hover .submenu li:nth-child(2) {
 +
    -webkit-transition-delay: 50ms;
 +
    -moz-transition-delay: 50ms;
 +
    -ms-transition-delay: 50ms;
 +
    -o-transition-delay: 50ms;
 +
    transition-delay: 50ms;
 +
}
 +
.menu li:hover .submenu li:nth-child(3) {
 +
    -webkit-transition-delay: 100ms;
 +
    -moz-transition-delay: 100ms;
 +
    -ms-transition-delay: 100ms;
 +
    -o-transition-delay: 100ms;
 +
    transition-delay: 100ms;
 +
}
 +
.menu li:hover .submenu li:nth-child(4) {
 +
    -webkit-transition-delay: 150ms;
 +
    -moz-transition-delay: 150ms;
 +
    -ms-transition-delay: 150ms;
 +
    -o-transition-delay: 150ms;
 +
    transition-delay: 150ms;
 +
}
 +
.menu li:hover .submenu li:nth-child(5) {
 +
    -webkit-transition-delay: 200ms;
 +
    -moz-transition-delay: 200ms;
 +
    -ms-transition-delay: 200ms;
 +
    -o-transition-delay: 200ms;
 +
    transition-delay: 200ms;
 +
}
 +
.menu li:hover .submenu li:nth-child(6) {
 +
    -webkit-transition-delay: 250ms;
 +
    -moz-transition-delay: 250ms;
 +
    -ms-transition-delay: 250ms;
 +
    -o-transition-delay: 250ms;
 +
    transition-delay: 250ms;
 +
}
 +
.menu li:hover .submenu li:nth-child(7) {
 +
    -webkit-transition-delay: 300ms;
 +
    -moz-transition-delay: 300ms;
 +
    -ms-transition-delay: 300ms;
 +
    -o-transition-delay: 300ms;
 +
    transition-delay: 300ms;
 +
}
 +
.menu li:hover .submenu li:nth-child(8) {
 +
    -webkit-transition-delay: 350ms;
 +
    -moz-transition-delay: 350ms;
 +
    -ms-transition-delay: 350ms;
 +
    -o-transition-delay: 350ms;
 +
    transition-delay: 350ms;
 +
}
 +
 +
.submenu li:nth-child(1) {
 +
    -webkit-transition-delay: 350ms;
 +
    -moz-transition-delay: 350ms;
 +
    -ms-transition-delay: 350ms;
 +
    -o-transition-delay: 350ms;
 +
    transition-delay: 350ms;
 +
}
 +
.submenu li:nth-child(2) {
 +
    -webkit-transition-delay: 300ms;
 +
    -moz-transition-delay: 300ms;
 +
    -ms-transition-delay: 300ms;
 +
    -o-transition-delay: 300ms;
 +
    transition-delay: 300ms;
 +
}
 +
.submenu li:nth-child(3) {
 +
    -webkit-transition-delay: 250ms;
 +
    -moz-transition-delay: 250ms;
 +
    -ms-transition-delay: 250ms;
 +
    -o-transition-delay: 250ms;
 +
    transition-delay: 250ms;
 +
}
 +
.submenu li:nth-child(4) {
 +
    -webkit-transition-delay: 200ms;
 +
    -moz-transition-delay: 200ms;
 +
    -ms-transition-delay: 200ms;
 +
    -o-transition-delay: 200ms;
 +
    transition-delay: 200ms;
 +
}
 +
.submenu li:nth-child(5) {
 +
    -webkit-transition-delay: 150ms;
 +
    -moz-transition-delay: 150ms;
 +
    -ms-transition-delay: 150ms;
 +
    -o-transition-delay: 150ms;
 +
    transition-delay: 150ms;
 +
}
 +
.submenu li:nth-child(6) {
 +
    -webkit-transition-delay: 100ms;
 +
    -moz-transition-delay: 100ms;
 +
    -ms-transition-delay: 100ms;
 +
    -o-transition-delay: 100ms;
 +
    transition-delay: 100ms;
 +
}
 +
.submenu li:nth-child(7) {
 +
    -webkit-transition-delay: 50ms;
 +
    -moz-transition-delay: 50ms;
 +
    -ms-transition-delay: 50ms;
 +
    -o-transition-delay: 50ms;
 +
    transition-delay: 50ms;
 +
}
 +
.submenu li:nth-child(8) {
 +
    -webkit-transition-delay: 0s;
 +
    -moz-transition-delay: 0s;
 +
    -ms-transition-delay: 0s;
 +
    -o-transition-delay: 0s;
 +
    transition-delay: 0s;
 +
}
 +
 +
/*main*/
 +
*{
 +
/*margin: 0 auto;*/
 +
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
 +
margin:0;
 +
padding:0;
 +
}
 +
body{
 +
  background:url(../images/Njau_2015_body_bg.jpg);
 +
}
 +
#maintop{
 +
width:auto;
 +
height:240px;
 +
background:url(../images/NJAU_2015_navtop.jpg) no-repeat;
 +
background-size:100%;
 +
}
 +
#box{
 +
margin: 0 auto;
 +
}
 +
#pic{
 +
height: 400px;
 +
}
 +
#pic #pic-left{
 +
width:25%;
 +
height:400px;
 +
float:left;
 +
}
 +
#pic #pic-in{
 +
width:50%;
 +
height:350px;
 +
float:left;
 +
}
 +
video{
 +
display: block;
 +
width:100%;
 +
height:390px;
 +
margin-top:8px;
 +
color:#FFF;
 +
font-size:xx-large;
 +
}
 +
#pic #pic-right{
 +
width:25%;
 +
height:400px;
 +
float:left;
 +
}
 +
#pic img{
 +
width:100%;
 +
height:70%;
 +
}
 +
#block{
 +
margin:0 auto;
 +
height:900px;
 +
width:1200px;
 +
text-align:justify;
 +
font-family:Verdana, Geneva, sans-serif;
 +
}
 +
#block ul li{
 +
list-style: none;
 +
}
 +
.sub1,.sub2,.sub3,.sub4,.main1,.main2,.main3,.main4,.main5{
 +
width:33%;
 +
height:300px;
 +
}
 +
.sub1,.sub2,.sub3,.sub4{
 +
background: white;
 +
}
 +
.main1,.main2,.main4,.main5{
 +
background: #333;
 +
}
 +
.main3{
 +
background:url(../images/Njau_2015_mid1.jpg);
 +
background-size:100% 100%;
 +
}
 +
.sub1,.sub2,.main1{
 +
float: left;
 +
}
 +
.main2,.main3,.main4{
 +
float: left;
 +
}
 +
.sub3,.main5,.sub4{
 +
float: left;
 +
}
 +
.main1,.main2,.main3,.main4,.main5{
 +
font-family:;
 +
font-size: 13px;
 +
color:#FFFF99;
 +
word-wrap: break-word;
 +
text-indent: 10px;
 +
}
 +
.sub2{
 +
background: #33CC99;
 +
}
 +
.sub1,.sub4{
 +
background: #CC9933;
 +
}
 +
.sub3{
 +
background: #CCCC00;
 +
}
 +
span.f1,span.f2{
 +
display: block;
 +
overflow: hidden;
 +
padding:5px 10px;
 +
    width: auto;
 +
height:250px;
 +
}
 +
span.f1:hover{
 +
padding:5px 40px;
 +
-moz-transform: scale(1.2);
 +
-ms-transform: scale(1.2);
 +
-o-transform: scale(1.2);
 +
-webkit-transform: scale(1.2);
 +
color: #000;
 +
opacity: 0.8;
 +
background: #33CCCC;
 +
    transition: background 2s ease 0s;
 +
  -moz-transition: background 1.5s ease 0s;
 +
  -ms-transition: background 1.5s ease 0s;
 +
  -o-transition: background 1.5s ease 0s;
 +
  -webkit-transition: background 1.5s ease 0s;
 +
  transition: color 0.5s ease 0s;
 +
  -moz-transition: color 0.5s ease 0s;
 +
  -o-transition: color 0.5s ease 0s;
 +
  -ms-transition: color 0.5s ease 0s;
 +
  -webkit-transition: color 0.5s ease 0s;
 +
}
 +
span.f2:hover{
 +
padding:5px 40px;
 +
-moz-transform: scale(1.2);
 +
-ms-transform: scale(1.2);
 +
-o-transform: scale(1.2);
 +
-webkit-transform: scale(1.2);
 +
color:#066;
 +
opacity: 0.8;
 +
background: #66FF00;
 +
    transition: background 2s ease 0s;
 +
  -moz-transition: background 2s ease 0s;
 +
  -ms-transition: background 2s ease 0s;
 +
  -o-transition: background 2s ease 0s;
 +
  -webkit-transition: background 2s ease 0s;
 +
  transition: color 1s ease 0s;
 +
  -moz-transition: color 1s ease 0s;
 +
  -o-transition: color 1s ease 0s;
 +
  -ms-transition: color 1s ease 0s;
 +
  -webkit-transition: color 1s ease 0s;
 +
}
 +
.main3:hover{
 +
background:url(../images/Njau_2015_mid2.jpg);
 +
background-size:100% 100%;
 +
}
 +
#footer{
 +
width: auto;
 +
height: 111px;
 +
    background:#999966;
 +
    margin: 0 auto;
 +
}
 +
#footer img{
 +
margin: 10px 0 10px 100px;
 +
display: inline;
 +
float: left;
 +
}
 
     </style>
 
     </style>
  
Line 123: Line 531:
 
<body>
 
<body>
 
<div class="mycontent">
 
<div class="mycontent">
    <div id="my_nav">
+
  <div class="nav" id="main" role="main">
       
+
<ul class="menu">
    </div>
+
<li><img src="https://static.igem.org/mediawiki/2015/9/9d/NJAU_2015_navigemlogo_home0.png"/></li>
 +
<li><a href="#">HOME</a></li>
 +
<li><a href="#s1">TEAM</a>
 +
<ul class="submenu">
 +
<li><a href="NJAU_2015_index/NJAU_CHINA2015_team.html">team</a></li>
 +
<li><a href="NJAU_2015_index/NJAU_CHINA2015_notebook.html">notebook</a></li>
 +
<li><a href="NJAU_2015_index/NJAU_CHINA2015_attribution.html">attribution</a></li>
 +
</ul>
 +
</li>
 +
<li><a href="#s1">PROGECT</a>
 +
<ul class="submenu">
 +
<li><a href="NJAU_2015_index/NJAU_CHINA2015_description.html">description</a></li>
 +
<li><a href="NJAU_2015_index/NJAU_CHINA2015_experiment.html">experiment&protocals</a></li>
 +
<li><a href="NJAU_2015_index/NJAU_CHINA2015_results.html">results</a></li>
 +
<li><a href="NJAU_2015_index/NJAU_CHINA2015_design.html">design</a></li>
 +
<li><a href="NJAU_2015_index/NJAU_CHINA2015_teampart.html">team parts</a></li>
 +
</ul>
 +
</li>
 +
<li class="active"><a href="#s2">HUMAN PRACTICES</a>
 +
<ul class="submenu">
 +
<li><a href="NJAU_2015_index/NJAU_CHINA2015_humampractices.html">humam practices</a></li>
 +
<li><a href="NJAU_2015_index/NJAU_CHINA2015_collaborations.html">collaborations</a></li>
 +
<li><a href="NJAU_2015_index/NJAU_CHINA2015_safety.html">safety</a></li>
 +
</ul>
 +
</li>
 +
<li><a href="NJAU_2015_index/NJAU_CHINA2015_modeling.html">MODELING</a></li>
 +
<li><a href="NJAU_2015_index/NJAU_CHINA2015_measurement.html">MEASUREMENT</a></li>
 +
</ul>
 
</div>
 
</div>
 +
<div id="pic">
 +
<div id="pic-left"><img src="https://static.igem.org/mediawiki/2015/9/9e/NJAU_2015_dna2_home1.png"/></div>
 +
<div id="pic-in">
 +
<video controls autoplay loop>
 +
<source src="video/thehorcorx.mp4" type=video/mp4 />
 +
<source src="video/thehorcorx.mov" type=video/mov />
 +
<source src="video/thehorcorx.webm" type=video/webm />
 +
Your browser does not support the video tag. </video>
 +
</div>
 +
<div id="pic-right"><img src="https://static.igem.org/mediawiki/2015/6/6d/NJAU_2015_dna_home2.png"/></div>
 +
</div>
 +
<div id="block">
 +
<ul>
 +
  <li>
 +
    <div class="sub1"><img src="https://static.igem.org/mediawiki/2015/2/25/NJAU_2015_subblock1_home3.png" alt="pics"></div>
 +
<div class="main1"><h3>introduction</h3><span class="f1"> The conversion of transient information into long-lasting responses is a common aspect of many biological processes and is crucial for the design of sophisticated synthetic circuits. Whereas, the most cellular memories are limited to protein levels currently, which are transient, instantaneous and unapparent. To overcome these shortcuts, this year we design a system to achieve the storage of information by a transient stimulation but use a long-lasting response. Because of the similarity with the process of memory, we call it “the horcrux”. </span></div>
 +
<div class="sub2"><img src="https://static.igem.org/mediawiki/2015/5/54/NJAU_China2015_subblock2.png" alt="pics"></div>
 +
  </li>
 +
  <li>
 +
    <div class="main2"><h3>our goals</h3><span class="f2">This year we want to design a system which can respond to external stimuli and then maintain a lasting signal. To make it come true, we need to design a sophisticated gene circuits. We try to use two different strains of E.coli to be our “Recorder” and “Saver”. We aim to finish the plasmid construction and functional verification, then use GFP as a report gene to get some data so we can build a mathematical model for our system and predict the effect.
 +
<br />In order to enable our biological system to be able to handle data processing with computer information, our students want to design a device for our bacterial system to validate system functionality and measure and collect data. Furthermore, we want it to be widely applicable to the biological research.
  
 
+
</span></div>
 
+
<div class="main3"></div>
 +
<div class="main4"><h3>accomplishment</h3><span class="f1">
 +
<b>-biological experiment</b><br />
 +
We tried our best to construct the plasmid, made the functional verification, got some data and established the mathematical model.<br />
 +
<b>-device assembly</b><br />
 +
We have designed a set of simple starting and measuring devices for our biological system, and it will be used in our prototype design.<br />
 +
<b>-human practice</b><br />
 +
We conducted a wide range of “virtual interviews” for our subject areas. We have also exchanged our ideas and carried out some cooperation with some teams.<br />
 +
</span></div>
 +
  </li>
 +
  <li>
 +
    <div class="sub3"><img src="https://static.igem.org/mediawiki/2015/7/75/NJAU_2015_subblock3_home5.png" alt="pics"></div>
 +
<div class="main5"><span class="f2">introduce introduce introduce introduce introduce introduce introduce introduce introduce introduce introduce introduce introduce introduce introduce introduce introduce introduce introduce introduce introduce introduce introduce introduce introduce introduce introduce introduce introduce introduce introduce introduce introduce</span></div>
 +
<div class="sub4"><img src="https://static.igem.org/mediawiki/2015/b/b5/NJAU_2015_subblock4_home6.png" alt="pics"></div>
 +
  </li>
 +
</ul>NJAU
 +
</div>
 +
<div id="footer">
 +
<img src="https://static.igem.org/mediawiki/2015/1/1a/NJAU_2015_bg_home7.png" alt="Nanjing Argriculture University">
 +
<img src="https://static.igem.org/mediawiki/2015/b/b4/NJAU_2015_sk_bg_home8.png" alt="Nanjing Argriculture University">
 +
</div>
 
</body>
 
</body>
 
</html>
 
</html>

Revision as of 19:18, 17 September 2015

Home

  • pics

    introduction

    The conversion of transient information into long-lasting responses is a common aspect of many biological processes and is crucial for the design of sophisticated synthetic circuits. Whereas, the most cellular memories are limited to protein levels currently, which are transient, instantaneous and unapparent. To overcome these shortcuts, this year we design a system to achieve the storage of information by a transient stimulation but use a long-lasting response. Because of the similarity with the process of memory, we call it “the horcrux”.
    pics
  • our goals

    This year we want to design a system which can respond to external stimuli and then maintain a lasting signal. To make it come true, we need to design a sophisticated gene circuits. We try to use two different strains of E.coli to be our “Recorder” and “Saver”. We aim to finish the plasmid construction and functional verification, then use GFP as a report gene to get some data so we can build a mathematical model for our system and predict the effect.
    In order to enable our biological system to be able to handle data processing with computer information, our students want to design a device for our bacterial system to validate system functionality and measure and collect data. Furthermore, we want it to be widely applicable to the biological research.

    accomplishment

    -biological experiment
    We tried our best to construct the plasmid, made the functional verification, got some data and established the mathematical model.
    -device assembly
    We have designed a set of simple starting and measuring devices for our biological system, and it will be used in our prototype design.
    -human practice
    We conducted a wide range of “virtual interviews” for our subject areas. We have also exchanged our ideas and carried out some cooperation with some teams.
  • pics
    introduce introduce introduce introduce introduce introduce introduce introduce introduce introduce introduce introduce introduce introduce introduce introduce introduce introduce introduce introduce introduce introduce introduce introduce introduce introduce introduce introduce introduce introduce introduce introduce introduce
    pics
NJAU