Line 1: | Line 1: | ||
<html> | <html> | ||
<head> | <head> | ||
− | + | ||
− | + | <script src = "https://2017.igem.org/Template:Munich/Javascript?action=raw&ctype=text/javascript"></script> | |
− | + | <link rel="stylesheet" type="text/css" href="https://2017.igem.org/Template:Munich/CSS?action=raw&ctype=text/css"> | |
− | |||
− | |||
− | |||
− | < | + | <style type="text/css"> |
− | + | #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; } | |
− | + | ||
− | + | ||
− | + | p { | |
− | + | font-family: Helvetica, Arial, sans-serif; | |
− | + | font-size: 17px; | |
− | + | } | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
+ | .text-center{ | ||
+ | text-align: center; | ||
+ | } | ||
+ | .header-container{ | ||
+ | margin-left: 5% ; | ||
+ | margin-right: 5% ; | ||
+ | } | ||
− | + | h1{ | |
− | + | margin: 2.5%; | |
− | + | color: rgb(147,149,152); | |
− | + | font-family: Helvetica, Arial, sans-serif; | |
− | + | font-size: 25px; | |
− | + | text-align: justify !important; | |
− | + | } | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | button{ | |
− | + | font-family: Helvetica, Arial, sans-serif; | |
− | + | } | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | + | line{ | |
− | + | stroke: rgb(147,149,152); | |
− | + | } | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | .skip-animation{ | |
+ | background-color: rgb(0,144,239) !important; | ||
+ | } | ||
− | + | .button-container{ | |
− | + | padding-left: 25%; | |
− | + | ||
− | + | } | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
+ | .explanation-text{ | ||
+ | |||
+ | } | ||
− | + | .explanation{ | |
+ | /*border-width: 30px; | ||
+ | border-radius: 10%; For when there is svg canvas in the divs */ | ||
+ | border-radius: 10px; | ||
+ | padding: 5%; | ||
+ | background-color: rgb(0,144,239); | ||
+ | width:80%; | ||
+ | color: white; | ||
+ | |||
+ | } | ||
− | + | .explanation-left{ | |
− | + | float: right; | |
− | + | transform: translate(0,10px); | |
− | + | } | |
− | + | ||
− | + | .pretty-picture{ | |
− | + | width: 80%; | |
− | + | height: 200px; | |
− | + | } | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | .pretty-picture-container{ | |
− | + | text-align: center; | |
− | + | ||
− | + | ||
− | + | ||
+ | } | ||
− | |||
− | + | .column{ | |
− | + | padding: 0 !important; | |
− | + | } | |
− | </ | + | |
− | + | #canvas-container{ | |
+ | padding: 0; | ||
+ | } | ||
+ | |||
+ | .invisible{ | ||
+ | opacity: 0; | ||
+ | } | ||
+ | |||
+ | .appear{ | ||
+ | -webkit-animation: appear 1s linear; | ||
+ | } | ||
+ | |||
+ | @keyframes appear { | ||
+ | 0%{ | ||
+ | opacity: 0; | ||
+ | } | ||
+ | |||
+ | 100%{ | ||
+ | opacity: 1; | ||
+ | } | ||
+ | } | ||
+ | .white{ | ||
+ | -webkit-animation: white 1s linear; | ||
+ | -webkit-animation-fill-mode: forwards; | ||
+ | } | ||
+ | |||
+ | @keyframes white{ | ||
+ | 0%{ | ||
+ | fill: rgb(255,149,152); | ||
+ | } | ||
+ | 100%{ | ||
+ | fill: white; | ||
+ | } | ||
+ | } | ||
+ | |||
+ | |||
+ | .colorPositive{ | ||
+ | -webkit-animation: colorPositive 2s linear; | ||
+ | -webkit-animation-fill-mode: forwards; | ||
+ | } | ||
+ | |||
+ | @keyframes colorPositive{ | ||
+ | 0%{ | ||
+ | fill:white; | ||
+ | } | ||
+ | |||
+ | 100%{ | ||
+ | fill: rgb(100,255,0); | ||
+ | } | ||
+ | } | ||
+ | |||
+ | .visible{ | ||
+ | -webkit-animation: visible 1s linear; | ||
+ | -webkit-animation-fill-mode: forwards; | ||
+ | } | ||
+ | |||
+ | @keyframes visible{ | ||
+ | 0%{ | ||
+ | opacity: 0; | ||
+ | } | ||
+ | 100%{ | ||
+ | opacity: 1; | ||
+ | } | ||
+ | } | ||
+ | |||
+ | .colorNegative{ | ||
+ | -webkit-animation: colorNegative 2s linear; | ||
+ | -webkit-animation-fill-mode: forwards; | ||
+ | } | ||
+ | |||
+ | @keyframes colorNegative{ | ||
+ | 0%{ | ||
+ | fill: white; | ||
+ | } | ||
+ | |||
+ | 100%{ | ||
+ | fill: rgb(0,144,239); | ||
+ | } | ||
+ | } /* Because CSS is such a wonderful language, it is imperative to have the colorNegative definitions AFTER the visible one; otherwise the visible overwrites the colorNegative and the circles expand at the end, but don't change color.*/ | ||
+ | |||
+ | |||
+ | |||
+ | </style> | ||
+ | |||
+ | </head> | ||
+ | <div class="text-center"> | ||
+ | <img src = "https://static.igem.org/mediawiki/2017/thumb/a/af/T--Munich--Logo_Final.svg/739px-T--Munich--Logo_Final.svg.png" alt="CascAID"> | ||
+ | </div> | ||
+ | <div class="header-container"><h1 class="text-center text"> | ||
− | + | CascAID stands for Cas13a Controlled Assay for Infectious Diseases. Our goal this year is to create a novel paper-based microfluidic device for the detection of specific RNA sequences. <br> <br> | |
+ | Nowadays, there is a trend among medical practitioners to prescribe antibiotics when bacterial infections are suspected without a laboratory confirmation as a way for speeding up recovery. This has led to an increase in antibiotic-resistant bacteria that makes it difficult to treat infected patients. <br> <br> | ||
+ | Nucleic acid-based detection methods could allow for faster diagnosis. Therefore, we seek to develop a method that allows to report the presence of a specific pathogen within hours. For this reason, we will use the CRISPR effector Cas13a, which is able to target specific single-stranded RNA. This system allows for the simple and fast design of new sequence targets, being an ideal tool for detecting fast mutating pathogens. In the long term, we see our device as an easy-to-use and fast diagnostic tool in developing countries as well as an instrument in developed countries for discerning between bacterial and viral infections, that could help reducing antibiotics prescription. | ||
+ | </h1> </div> | ||
− | |||
− | |||
− | |||
</html> | </html> |
Revision as of 07:59, 8 July 2017