Difference between revisions of "Team:McMaster"

Line 41: Line 41:
 
       <p style="color:black;">From our members to our sponsors and all those have helped us along the way, nothing would have been accomplished without our team. Thank you, from the bottom of our hearts.</p>
 
       <p style="color:black;">From our members to our sponsors and all those have helped us along the way, nothing would have been accomplished without our team. Thank you, from the bottom of our hearts.</p>
 
     <br style = "clear:both">
 
     <br style = "clear:both">
    </div>
+
    Text
</div>
+
  
 +
Team
 +
 +
classname: myButton
 +
 +
Font Size:
 +
17px
 +
  bold  italic
 +
Size
 +
Vertical Size:
 +
16px
 +
Horizontal Size:
 +
31px
 +
Border
 +
Border Radius:
 +
28px
 +
Border Size:
 +
1px
 +
  Box Shadow
 +
Text Shadow
 +
Vertical Position:
 +
1px
 +
Horizontal Position:
 +
0px
 +
Blur Radius:
 +
0px
 +
<a href="#" class="myButton">Team</a>
  
<script>
+
.myButton {
// Automatic Slideshow - change image every 4 seconds
+
background-color:#44c767;
var myIndex = 0;
+
-moz-border-radius:28px;
carousel();
+
-webkit-border-radius:28px;
 
+
border-radius:28px;
function carousel() {
+
border:1px solid #18ab29;
    var i;
+
display:inline-block;
    var x = document.getElementsByClassName("mySlides");
+
cursor:pointer;
    for (i = 0; i < x.length; i++) {
+
color:#ffffff;
      x[i].style.display = "none";
+
font-family:Arial;
    }
+
font-size:17px;
    myIndex++;
+
padding:16px 31px;
    if (myIndex > x.length) {myIndex = 1}   
+
text-decoration:none;
    x[myIndex-1].style.display = "block";
+
text-shadow:0px 1px 0px #2f6627;
    setTimeout(carousel, 4000);  
+
 
}
 
}
 
+
.myButton:hover {
// Used to toggle the menu on small screens when clicking on the menu button
+
background-color:#5cbf2a;
function myFunction() {
+
    var x = document.getElementById("navDemo");
+
    if (x.className.indexOf("w3-show") == -1) {
+
        x.className += " w3-show";
+
    } else {
+
        x.className = x.className.replace(" w3-show", "");
+
    }
+
 
}
 
}
 +
.myButton:active {
 +
position:relative;
 +
top:1px;
 +
}
 +
    </div>
 +
</div>
 +
  
// When the user clicks anywhere outside of the modal, close it
 
var modal = document.getElementById('ticketModal');
 
window.onclick = function(event) {
 
  if (event.target == modal) {
 
    modal.style.display = "none";
 
  }
 
}
 
</script>
 
 
</html>
 
</html>
 
<p></p>
 
<p></p>
  
 
{{McMaster/Footer}}
 
{{McMaster/Footer}}

Revision as of 20:39, 17 October 2018


Wet Lab

Our project this year was to express human amyloid beta protein variants in E. coli as a system for studying the molecular basis of aggregation. This research will contribute to our understanding of neurodegenerative diseases.


Human Practices

By interviewing physicians, educators, and community members, the Human Practices subteam was able to understand Alzheimer's disease from many different perspectives. We are showcasing what we've learned through an educational video aimed to increase public knowledge and destigmatize those living with Alzheimer's.


Dry Lab

The Dry Lab will be supporting the Wet Lab to develop an algorithm for NGS data analysis and modelling. We will also be collaborating with the Human Practices team to create a NGS video game.


The Team

From our members to our sponsors and all those have helped us along the way, nothing would have been accomplished without our team. Thank you, from the bottom of our hearts.


Text Team classname: myButton Font Size: 17px bold italic Size Vertical Size: 16px Horizontal Size: 31px Border Border Radius: 28px Border Size: 1px Box Shadow Text Shadow Vertical Position: 1px Horizontal Position: 0px Blur Radius: 0px Team .myButton { background-color:#44c767; -moz-border-radius:28px; -webkit-border-radius:28px; border-radius:28px; border:1px solid #18ab29; display:inline-block; cursor:pointer; color:#ffffff; font-family:Arial; font-size:17px; padding:16px 31px; text-decoration:none; text-shadow:0px 1px 0px #2f6627; } .myButton:hover { background-color:#5cbf2a; } .myButton:active { position:relative; top:1px; }