From 587a2959613e3f2788d41cf386aa8415576a7d92 Mon Sep 17 00:00:00 2001 From: Erin Date: Mon, 14 Dec 2015 18:27:28 -0800 Subject: [PATCH] add faq page --- challenge-bot.com/css/main.css | 52 +++++++++++++++ challenge-bot.com/faq.html | 71 ++++++++++++++++++++ challenge-bot.com/people.html | 116 ++++++++++----------------------- 3 files changed, 159 insertions(+), 80 deletions(-) create mode 100644 challenge-bot.com/css/main.css create mode 100644 challenge-bot.com/faq.html diff --git a/challenge-bot.com/css/main.css b/challenge-bot.com/css/main.css new file mode 100644 index 0000000..45cf2ab --- /dev/null +++ b/challenge-bot.com/css/main.css @@ -0,0 +1,52 @@ +body { font-family: monospace; + color: #111111; + width: 80%; + margin: auto auto; + text-align: center; } +h3 { color: #008000; } +h2 { color: #009900; } +h4 { + color: #00aa00; + font-weight: 400; } +a { + color: #00CC00; + text-decoration: none; } +p { + text-align: left; + margin: auto auto; + max-width: 800px; + padding-bottom: 10px; } +.person { + width: 200px; + display: inline-block; + padding-right: 30px; + text-align: center; } +.person .photo { + padding: 0px; + margin: 0px; } +.person .name { + padding: 0px; + margin: 0px; } +.person .position { + padding: 0px; + margin: 0px; } +section { padding: 30px 0px; } +section > h2 { padding-bottom: 30px; } + +/* line behind title + see http://codepen.io/ericrasch/pen/Irlpm */ +section > h2 { + position: relative; + z-index: 1; } +section > h2:before { + border-top: 2px solid #dfdfdf; + content:""; + margin: 0 auto; /* this centers the line to the full width specified */ + position: absolute; /* positioning must be absolute here, and relative positioning must be applied to the parent */ + top: 50%; left: 0; right: 0; bottom: 0; + width: 95%; + z-index: -1; } +section > h2 span { + /* to hide the lines from behind the text, you have to set the background color the same as the container */ + background: #fff; + padding: 0 15px; } \ No newline at end of file diff --git a/challenge-bot.com/faq.html b/challenge-bot.com/faq.html new file mode 100644 index 0000000..c798a21 --- /dev/null +++ b/challenge-bot.com/faq.html @@ -0,0 +1,71 @@ + + + + + + + + + + + +
+

frequently asked questions

+ +
  • +
      +

      Who is the challenge-bot class appropriate for?

      +
    • +
        +

        No experience necessary!

        +
        +

        Challenge-bot is an introduction to robotics class. You don't need any previous experience with programming, electronics, robotics, or building.

        +
        +
      +
        +

        Beginners of any age are welcome.

        +
        +

        We have students of all ages in our classes, from small children to teenagers to professional software developers.

        +

        Many of our sign-ups so far have been elemenary-school age children, often with their parents.

        +

        Very small children who have not yet learned how to read or have trouble holding tools should have someone older with them to help them.

        +
        +
      +
    • +
    +
      +

      Can I take the class with my child/sibling/friend?

      +
      +

      Yes! Students can sign up for the class independently or as a team. Students who sign up as a team pay as if they were one person and get one kit to share and work on together.

      +
      +
    +
      +

      What do I get to keep?

      +
    • +
        +

        The robot is to keep.

        +
        +

        If you purchase a kit, you get to keep everything inside the box. This means that once you put it together, you will have a robot, an alan wrench, and a cable to load code onto the robot.

        +
        +
      +
        +

        The tools are just to use in class.

        +
        +

        While in class, every student enrolled also gets a toolbox to use, which they will return at the end of class. This toolbox includes everything you need to assemble your robot. If you want, you can purchase your own toolbox and take it home with you.

        +

        We also have some fancier tools in class, like a power drill and helping hands for the soldering iron.

        +
        +
      +
    • +
    +
  • +
    + + \ No newline at end of file diff --git a/challenge-bot.com/people.html b/challenge-bot.com/people.html index dac0ed1..c3a81c0 100644 --- a/challenge-bot.com/people.html +++ b/challenge-bot.com/people.html @@ -1,85 +1,41 @@ - - - + + + + - -
    -

    people

    -
    - danny watson -
    -

    danny watson

    -

    founder, instructor

    - -
    - erin bennett -
    -

    erin bennett

    -

    co-founder

    - -
    - shoshana berleant -
    -

    shoshana berleant

    -

    instructor

    - -
    -

    contact us

    - - For more information see our FAQ page, or contact Daniel Watson.
    - +
    +

    people

    +
    + danny watson +
    +

    danny watson

    +

    founder, instructor

    +
    +
    + +
    + erin bennett +
    +

    erin bennett

    +

    co-founder

    +
    +
    + +
    + shoshana berleant +
    +

    shoshana berleant

    +

    instructor

    +
    +
    +
    + +
    +

    contact us

    + + For more information see our FAQ page, or contact Daniel Watson. +
    \ No newline at end of file -- 2.30.2