Difference between revisions of "Team:Queens Canada/Market"

Line 5: Line 5:
 
<style>
 
<style>
 
* {
 
* {
    box-sizing: border-box;
+
  box-sizing: border-box;
 
}
 
}
  
 +
/* Set a background color */
 
body {
 
body {
    background-color: #474e5d;
+
  background-color: #474e5d;
    font-family: Helvetica, sans-serif;
+
  font-family: Helvetica, sans-serif;
 
}
 
}
  
 
/* The actual timeline (the vertical ruler) */
 
/* The actual timeline (the vertical ruler) */
 
.timeline {
 
.timeline {
    position: relative;
+
  position: relative;
    max-width: 1200px;
+
  max-width: 1200px;
    margin: 0 auto;
+
  margin: 0 auto;
 
}
 
}
  
 
/* The actual timeline (the vertical ruler) */
 
/* The actual timeline (the vertical ruler) */
 
.timeline::after {
 
.timeline::after {
    content: '';
+
  content: '';
    position: absolute;
+
  position: absolute;
    width: 6px;
+
  width: 6px;
    background-color: white;
+
  background-color: white;
    top: 0;
+
  top: 0;
    bottom: 0;
+
  bottom: 0;
    left: 50%;
+
  left: 50%;
    margin-left: -3px;
+
  margin-left: -3px;
 
}
 
}
  
 
/* Container around content */
 
/* Container around content */
 
.container {
 
.container {
    padding: 10px 40px;
+
  padding: 10px 40px;
    position: relative;
+
  position: relative;
    background-color: inherit;
+
  background-color: inherit;
    width: 50%;
+
  width: 50%;
 
}
 
}
  
 
/* The circles on the timeline */
 
/* The circles on the timeline */
 
.container::after {
 
.container::after {
    content: '';
+
  content: '';
    position: absolute;
+
  position: absolute;
    width: 25px;
+
  width: 25px;
    height: 25px;
+
  height: 25px;
    right: -17px;
+
  right: -17px;
    background-color: white;
+
  background-color: white;
    border: 4px solid #FF9F55;
+
  border: 4px solid #FF9F55;
    top: 15px;
+
  top: 15px;
    border-radius: 50%;
+
  border-radius: 50%;
    z-index: 1;
+
  z-index: 1;
 
}
 
}
  
 
/* Place the container to the left */
 
/* Place the container to the left */
 
.left {
 
.left {
    left: 0;
+
  left: 0;
 
}
 
}
  
 
/* Place the container to the right */
 
/* Place the container to the right */
 
.right {
 
.right {
    left: 50%;
+
  left: 50%;
 
}
 
}
  
 
/* Add arrows to the left container (pointing right) */
 
/* Add arrows to the left container (pointing right) */
 
.left::before {
 
.left::before {
    content: " ";
+
  content: " ";
    height: 0;
+
  height: 0;
    position: absolute;
+
  position: absolute;
    top: 22px;
+
  top: 22px;
    width: 0;
+
  width: 0;
    z-index: 1;
+
  z-index: 1;
    right: 30px;
+
  right: 30px;
    border: medium solid white;
+
  border: medium solid white;
    border-width: 10px 0 10px 10px;
+
  border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent white;
+
  border-color: transparent transparent transparent white;
 
}
 
}
  
 
/* Add arrows to the right container (pointing left) */
 
/* Add arrows to the right container (pointing left) */
 
.right::before {
 
.right::before {
    content: " ";
+
  content: " ";
    height: 0;
+
  height: 0;
    position: absolute;
+
  position: absolute;
    top: 22px;
+
  top: 22px;
    width: 0;
+
  width: 0;
    z-index: 1;
+
  z-index: 1;
    left: 30px;
+
  left: 30px;
    border: medium solid white;
+
  border: medium solid white;
    border-width: 10px 10px 10px 0;
+
  border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
+
  border-color: transparent white transparent transparent;
 
}
 
}
  
 
/* Fix the circle for containers on the right side */
 
/* Fix the circle for containers on the right side */
 
.right::after {
 
.right::after {
    left: -16px;
+
  left: -16px;
 
}
 
}
  
 
/* The actual content */
 
/* The actual content */
 
.content {
 
.content {
    padding: 20px 30px;
+
  padding: 20px 30px;
    background-color: white;
+
  background-color: white;
    position: relative;
+
  position: relative;
    border-radius: 6px;
+
  border-radius: 6px;
 
}
 
}
  
 
/* Media queries - Responsive timeline on screens less than 600px wide */
 
/* Media queries - Responsive timeline on screens less than 600px wide */
 
@media screen and (max-width: 600px) {
 
@media screen and (max-width: 600px) {
  /* Place the timelime to the left */
+
/* Place the timelime to the left */
 
   .timeline::after {
 
   .timeline::after {
 
     left: 31px;
 
     left: 31px;
 
   }
 
   }
 
+
 
  /* Full-width containers */
+
/* Full-width containers */
 
   .container {
 
   .container {
 
     width: 100%;
 
     width: 100%;
Line 118: Line 119:
 
     padding-right: 25px;
 
     padding-right: 25px;
 
   }
 
   }
 
+
 
  /* Make sure that all arrows are pointing leftwards */
+
/* Make sure that all arrows are pointing leftwards */
 
   .container::before {
 
   .container::before {
 
     left: 60px;
 
     left: 60px;
Line 127: Line 128:
 
   }
 
   }
  
  /* Make sure all circles are at the same spot */
+
/* Make sure all circles are at the same spot */
 
   .left::after, .right::after {
 
   .left::after, .right::after {
 
     left: 15px;
 
     left: 15px;
 
   }
 
   }
 
+
 
  /* Make all right containers behave like the left ones */
+
/* Make all right containers behave like the left ones */
 
   .right {
 
   .right {
 
     left: 0%;
 
     left: 0%;

Revision as of 17:06, 8 August 2018

Heading

Use by parents to monitor child’s stress levels and general well-being

Useful in the early detection of illness & Prevention of Sudden Infant Death Syndrome

Will lead to more anxiety on the parental end

Use by adults for quantitative self care

Difficulty in differentiating between what is normal and what is a cause of concern.

Insurance privacy concerns

QGEM

QGEM

Heading 4

Text.

Heading 5

Text.

Heading 6

Text.

Heading 5

Text.

Heading 6

Text.