Team:Paris Bettencourt
From 2013.igem.org
(Difference between revisions)
Line 26: | Line 26: | ||
position:absolute; | position:absolute; | ||
z-index:4; | z-index:4; | ||
+ | } | ||
+ | .panel { | ||
+ | width:1000px; | ||
+ | height:500px; | ||
+ | margin-top:50px; | ||
+ | margin-bottom:50px; | ||
+ | font-family: 'Yanone Kaffeesatz', sans-serif; | ||
+ | } | ||
+ | /* */ | ||
+ | .subpanel1 { | ||
+ | float:left; | ||
+ | width:488px; | ||
+ | height:437.5px; | ||
+ | background:rgb(255,62,5); | ||
+ | color:white; | ||
+ | font-size:30px; | ||
+ | } | ||
+ | .subpanel2 { | ||
+ | float:left; | ||
+ | width:244px; | ||
+ | height:244px; | ||
+ | font-size:40px; | ||
+ | line-height:244px; | ||
+ | text-align:center; | ||
+ | } | ||
+ | .subpanel2:hover{ | ||
+ | font-weight:bold; | ||
+ | } | ||
+ | .subpanel3 { | ||
+ | float:left; | ||
+ | width:488px; | ||
+ | height:50.5px; | ||
+ | font-size:30px; | ||
+ | text-align:center; | ||
+ | line-height:50px; | ||
+ | background:rgb(143,32,79); | ||
+ | color:white; | ||
+ | } | ||
+ | .spdesc { | ||
+ | display:none; | ||
+ | height:220px; | ||
+ | } | ||
+ | .cont { | ||
+ | width:90%; | ||
+ | height:90%; | ||
+ | margin-left:5%; | ||
+ | margin-top:5%; | ||
} | } | ||
</style> | </style> | ||
Line 49: | Line 96: | ||
</div> | </div> | ||
<div style="clear: both;"></div> | <div style="clear: both;"></div> | ||
- | |||
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script> | <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script> | ||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
<div id="page"> | <div id="page"> | ||
+ | <div class="panel"> | ||
+ | <div class="subpanel1" style="margin-right:12px;margin-bottom:12px;"> | ||
+ | <div style="height:220px"> | ||
+ | <div class="cont"> | ||
+ | Using Escherichia coli as a model organism we are developing and testing approaches that could lead to eradication of tuberculosis. | ||
+ | </div> | ||
+ | </div> | ||
+ | <div id="psdesc" class="spdesc"> | ||
+ | <div class="cont"> | ||
+ | A phage sensor for detection of sequence specific antibiotic-resistance genes. | ||
+ | </div> | ||
+ | </div> | ||
+ | <div id="dsdesc" class="spdesc"> | ||
+ | <div class="cont"> | ||
+ | A safe, inexpensively, and specific drug screening method aimed for essential mycobacterial metabolic pathway genes. | ||
+ | </div> | ||
+ | </div> | ||
+ | <div id="thdesc" class="spdesc"> | ||
+ | <div class="cont"> | ||
+ | A stable phage system producing sRNA which silence the production of antibiotic resistance proteins. | ||
+ | </div> | ||
+ | </div> | ||
+ | <div id="tcdesc" class="spdesc"> | ||
+ | <div class="cont"> | ||
+ | E. coli which invade macrophages and kill mycobacteria. | ||
+ | </div> | ||
+ | </div> | ||
+ | </div> | ||
+ | <div id="pspanel" class="subpanel2" style="background:rgb(250,247,186); margin-right:12px; margin-bottom:12px;"> | ||
+ | DETECT | ||
+ | </div> | ||
+ | <div id="dspanel" class="subpanel2" style="background:rgb(155,190,210); margin-bottom:12px;"> | ||
+ | TARGET | ||
+ | </div> | ||
+ | <div id="thpanel" class="subpanel2" style="background:rgb(155,190,210); margin-right:12px;"> | ||
+ | SABOTAGE | ||
+ | </div> | ||
+ | <div id="tcpanel" class="subpanel2" style="background:rgb(250,247,186);"> | ||
+ | INFILTRATE | ||
+ | </div> | ||
+ | <div class="subpanel3" style="position:relative; bottom:50.5px; margin-bottom:-50.5px;"> | ||
+ | Visit our Results! | ||
+ | </div> | ||
+ | </div> | ||
+ | <div style="clear: both;"></div> | ||
+ | <div class="panel"> | ||
+ | <div class="subpanel2" style="background:rgb(155,190,210); margin-right:12px; margin-bottom:12px;"> | ||
+ | |||
+ | </div> | ||
+ | <div class="subpanel2" style="background:rgb(250,247,186); margin-right:12px; margin-bottom:12px;"> | ||
+ | |||
+ | </div> | ||
+ | <div class="subpanel1" style="float:right; margin-bottom:12px;"> | ||
+ | |||
+ | </div> | ||
+ | <div class="subpanel2" style="background:rgb(250,247,186); margin-right:12px;"> | ||
+ | |||
+ | </div> | ||
+ | <div class="subpanel2" style="background:rgb(155,190,210); margin-right:12px;"> | ||
+ | |||
+ | </div> | ||
+ | <div class="subpanel3" > | ||
+ | |||
+ | </div> | ||
+ | </div> | ||
+ | <div style="clear: both;"></div> | ||
+ | </div> | ||
+ | |||
+ | <script> | ||
+ | $(document).ready(function(){$('div #pspanel').mouseover(function(){div = $('#psdesc');div.fadeIn(1);}).mouseout(function(){div.fadeOut(1);});}); | ||
+ | $(document).ready(function(){$('div #dspanel').mouseover(function(){div = $('#dsdesc');div.fadeIn(1);}).mouseout(function(){div.fadeOut(1);});}); | ||
+ | $(document).ready(function(){$('div #thpanel').mouseover(function(){div = $('#thdesc');div.fadeIn(1);}).mouseout(function(){div.fadeOut(1);});}); | ||
+ | $(document).ready(function(){$('div #tcpanel').mouseover(function(){div = $('#tcdesc');div.fadeIn(1);}).mouseout(function(){div.fadeOut(1);});}); | ||
+ | </script> | ||
+ | |||
</div> | </div> | ||
</html> | </html> | ||
{{:Team:Paris_Bettencourt/footer}} | {{:Team:Paris_Bettencourt/footer}} |
Revision as of 20:51, 5 September 2013
Using Escherichia coli as a model organism we are developing and testing approaches that could lead to eradication of tuberculosis.
A phage sensor for detection of sequence specific antibiotic-resistance genes.
A safe, inexpensively, and specific drug screening method aimed for essential mycobacterial metabolic pathway genes.
A stable phage system producing sRNA which silence the production of antibiotic resistance proteins.
E. coli which invade macrophages and kill mycobacteria.
DETECT
TARGET
SABOTAGE
INFILTRATE
Visit our Results!