Medwatch Screen 4

by sk8wt

HTML

<div class="top-bar">
  <div class="nav-list">
    Medwatch
  </div>
</div>

<div class="container">

  <div class="fda">
    The FDA Safety Information and Adverse Event Reporting Program for Prescription and Over-the-Counter Medications.
  </div>

  <div class="detailed-info">
    Find detailed information on thosands of drugs in our database including drug specs, common reactions, recent issue reports and more.
  </div>

  <div class="med-question">
    Question 4 (of 5): Please describe yourself a little.
  </div>
  <div class="question-explanation">
    This is important because some reactions are tied to age or gender.
  </div>

  <div class="dropdown-menus">


    <select>
      <option value="None">Age</option>
      <option value="child">0-18</option>
      <option value="young-adult">19-29</option>
      <option value="adult">30-60</option>
      <option value="elderly">60+</option>
    </select>

    <select>
      <option value="None">Gender</option>
      <option value="female">Female</option>
      <option value="male">Male</option>
    </select>
  </div>
  
  <button class="button">Go to Next Page</button>
</div>

CSS

.top-bar,
.nav-list {
  font-family: Proxima Nova, helvetica neue, helvetica, sans-serif;
  font-weight: bold;
  font-size: 150%;
  color: #ffffff;
}

.top-bar {
  color: #FFFFFF;
  height: 40px;
  margin-left: 10px;
}

.nav-list {
  list-style-type: none;
  padding: 0;
  display: inline;
  color: #20639B;
}

.container {
  padding: 10px;
}

.fda {
  margin-bottom: 5%;
  font-size: 90%;
}

.detailed-info {
  margin-bottom: 5%;
}

.med-question {
  font-size: 120%;
  font-weight: bold;
}

.question-explanation {
  margin-top: 1%;
  margin-bottom: 2%;
}

.button {
  background-color: #e7e7e7;
  color: black;
  border: none;
  padding: 15px 20px;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  float: right;
}