Last active
November 7, 2016 20:01
-
-
Save jonmccon/85ecdc600f2f523e64ec58c6d96f3097 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Webfont: https://fonts.google.com/specimen/Roboto */ | |
/* Material Checkbox icons: https://material.io/icons/#ic_check_box & https://material.io/icons/#ic_check_box_outline_blank */ | |
/* Material Star icons: https://material.io/icons/#ic_star & https://material.io/icons/#ic_star_border */ | |
.basestyling { | |
font-family: Roboto; | |
font-size: 15px; | |
line-height: 1.2; | |
color: #4a4a4a; | |
} | |
.backgroundCard { | |
width: 470px; | |
border-radius: 2px; | |
background-color: #ffffff; | |
box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.13), 0 0 4px 0 rgba(0, 0, 0, 0.2); | |
} | |
.bg-inset { | |
width: 470px; | |
background-color: #f2f2f2; | |
} | |
.question { | |
width: 470px; | |
height: 60px; | |
border-bottom: solid 1px #eaeaea; | |
} | |
.patient-Button-selected { | |
width: 96px; | |
height: 28px; | |
border-radius: 3px; | |
background-color: #4a90e2; | |
} | |
.selected-Text { | |
font-size: 15px; | |
font-weight: bold; | |
line-height: 1.2; | |
text-align: center; | |
color: #ffffff; | |
} | |
.non-patient-Button-unselected { | |
width: 122px; | |
height: 28px; | |
border-radius: 3px; | |
border: solid 1px #9b9b9b; | |
} | |
.non-selected-Text { | |
font-size: 15px; | |
line-height: 1.2; | |
text-align: center; | |
color: #9b9b9b; | |
} | |
.what-didnt-go-well { | |
font-size: 15px; | |
font-weight: bold; | |
color: #4a4a4a; | |
} | |
.star { | |
width: 21px; | |
height: 19px; | |
background-color: #f5a623; | |
} | |
.checkbox-inactive { | |
width: 14px; | |
height: 14px; | |
background-color: #4a4a4a; | |
} | |
.checkbox-active { | |
width: 14px; | |
height: 14px; | |
background-color: #4a90e2; | |
} | |
.submit-button-active { | |
width: 470px; | |
height: 42px; | |
border-radius: 3px; | |
background-color: #4a90e2; | |
} | |
/* All caps button text */ | |
.submit-button-text { | |
font-family: Roboto; | |
font-size: 15px; | |
font-weight: bold; | |
text-align: center; | |
color: #211e4d; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment