add link to faq page
[challenge-bot] / challenge-bot.com / people.html
index f23082d75d62639fa26e310d21c20b9416118229..dac0ed1b0b11beaf21b8851e52059f844e00eed7 100644 (file)
@@ -11,7 +11,9 @@ h2 { color: #009900; }
 h4 {
        color: #00aa00;
        font-weight: 400; }
-a { color: #00CC00; }
+a {
+       color: #00CC00;
+       text-decoration: none; }
 p {
        text-align: left;
        margin: auto auto;
@@ -53,60 +55,8 @@ h2 span {
 
 <script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
 
-<script>
-var linkColor = "#00CC00";
-var hoveredLinkColor = "#1aff1a";
-var textColor = "#111111";
-var h2Colour = "#008000";
-var h3Colour = "#009900";
-var h4Colour = "#00aa00";
-function linkify(element) {
-       var previousImg = $(element).find("img").attr("src");
-       var newImg = previousImg.replace("200", "-link200");
-       $(element).find("img").attr("src", newImg);
-       $(element).find(".name").css("text-decoration", "underline");
-       $(element).find(".text").css("color", linkColor);
-       $(element).find("h2").css("color", linkColor);
-       $(element).find("h3").css("color", linkColor);
-       $(element).find("h4").css("color", hoveredLinkColor); };
-function unlinkify(element) {
-       var previousImg = $(element).find("img").attr("src");
-       var newImg = previousImg.replace("-link200", "200");
-       $(element).find("img").attr("src", newImg);
-       $(element).find(".name").css("text-decoration", "none");
-       $(element).find(".text").css("color", textColor);
-       $(element).find("h2").css("color", h2Colour);
-       $(element).find("h3").css("color", h3Colour);
-       $(element).find("h4").css("color", h4Colour); };
-function fade(element, opacity) {
-       $(element).css("opacity", opacity); };
-function fadeIn(element, ms) {
-       var ms = ms ? ms : 0;
-       setTimeout(function() { fade(element, 1); }, ms); };
-function fadeOut(element, ms) {
-       var ms = ms ? ms : 0;
-       setTimeout(function() { fade(element, 0.5); }, ms );};
-function animatePersonClickiness() {
-       $(".person").hover(
-               function() {
-                       fadeOut($(this).children(".photo"));
-                       linkify($(this)); },
-               function() {
-                       fadeIn($(this).children(".photo"));
-                       unlinkify($(this)); } ); };
-$(document).ready( function() {
-       animatePersonClickiness(); });
-</script>
-
 <body>
 
-<h1>about challenge-bot</h1>
-
-<section>
-       <h2><span>what is challenge-bot?</span></h2>
-
-       <p>The <a href="http://challenge-bot.com">challenge-bot</a> course is an 8-hour long course where we walk you through the process of building your own robot, which you will keep. The goal of this class is to teach you the basics of robotics, get you excited about making stuff, and empower you to go out and create new robotics projects on your own after the class.</p></section>
-
 <section>
        <h2><span>people</span></h2>
        <div class="person">
@@ -130,6 +80,6 @@ $(document).ready( function() {
 <section>
        <h2><span>contact us</span></h2>
 
-       For more information or to sign up for classes, contact <a href="mailto:ozzloy@gmail.com">Daniel Watson</a>.</section>
+       For more information see our <a href="faq.html">FAQ page</a>, or contact <a href="mailto:ozzloy@gmail.com">Daniel Watson</a>.</section>
 
 </body>
\ No newline at end of file