2017-03-13 12:35:41 -07:00
|
|
|
/* resets */
|
|
|
|
|
2017-03-10 22:59:27 -08:00
|
|
|
*,
|
2017-03-13 12:35:41 -07:00
|
|
|
*::after,
|
|
|
|
*::before {
|
|
|
|
box-sizing: border-box;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
2017-03-10 22:59:27 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* regions */
|
2017-03-29 19:58:42 -07:00
|
|
|
|
2017-03-13 12:35:41 -07:00
|
|
|
body {
|
2017-03-10 22:59:27 -08:00
|
|
|
display: flex;
|
|
|
|
color: black;
|
|
|
|
background-color: white;
|
2017-03-13 12:35:41 -07:00
|
|
|
align-items: center;
|
|
|
|
font-family: 'Roboto', sans-serif;
|
|
|
|
font-size: 1.4rem;
|
|
|
|
flex-direction: column;
|
|
|
|
/* 14px default before jquery scalling */
|
2017-03-10 22:59:27 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
.section {
|
|
|
|
display: flex;
|
2017-03-12 11:05:18 -07:00
|
|
|
padding-top: 1em;
|
|
|
|
padding-bottom: 1em;
|
2017-03-13 12:35:41 -07:00
|
|
|
align-items: center;
|
|
|
|
flex-direction: column;
|
2017-03-10 22:59:27 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* mobile first column */
|
2017-03-29 19:58:42 -07:00
|
|
|
|
2017-03-10 22:59:27 -08:00
|
|
|
.section__container {
|
2017-03-13 12:35:41 -07:00
|
|
|
display: flex;
|
|
|
|
width: 95%;
|
|
|
|
align-items: center;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
#footer {
|
|
|
|
min-height: 300px;
|
2017-03-10 22:59:27 -08:00
|
|
|
}
|
|
|
|
|
2017-03-13 12:35:41 -07:00
|
|
|
/* Typography */
|
2017-03-29 19:58:42 -07:00
|
|
|
|
2017-03-13 12:35:41 -07:00
|
|
|
body {
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
2017-03-10 22:59:27 -08:00
|
|
|
|
2017-03-13 12:35:41 -07:00
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6 {
|
|
|
|
/* display: block; */
|
|
|
|
text-align: center;
|
|
|
|
font-weight: bold;
|
|
|
|
line-height: 1.45;
|
|
|
|
}
|
2017-03-10 22:59:27 -08:00
|
|
|
|
2017-03-13 12:35:41 -07:00
|
|
|
h1 {
|
|
|
|
font-size: 2em;
|
|
|
|
}
|
2017-03-10 22:59:27 -08:00
|
|
|
|
2017-03-13 12:35:41 -07:00
|
|
|
h2 {
|
|
|
|
font-size: 1.5em;
|
|
|
|
}
|
2017-03-10 22:59:27 -08:00
|
|
|
|
2017-03-13 12:35:41 -07:00
|
|
|
h3 {
|
|
|
|
font-size: 1.17em;
|
2017-03-10 22:59:27 -08:00
|
|
|
}
|
|
|
|
|
2017-03-13 12:35:41 -07:00
|
|
|
h4 {
|
|
|
|
font-size: 1em;
|
|
|
|
}
|
2017-03-10 22:59:27 -08:00
|
|
|
|
2017-03-13 12:35:41 -07:00
|
|
|
h5 {
|
|
|
|
font-size: 0.83em;
|
2017-03-10 22:59:27 -08:00
|
|
|
}
|
|
|
|
|
2017-03-13 12:35:41 -07:00
|
|
|
h6 {
|
|
|
|
font-size: 0.67em;
|
|
|
|
}
|
2017-03-10 22:59:27 -08:00
|
|
|
|
2017-03-13 12:35:41 -07:00
|
|
|
p {
|
|
|
|
text-align: left;
|
|
|
|
font-size: 1em;
|
|
|
|
line-height: 1.2;
|
2017-03-29 21:32:01 -07:00
|
|
|
margin-bottom: 1em;
|
2017-03-13 12:35:41 -07:00
|
|
|
}
|
2017-03-10 22:59:27 -08:00
|
|
|
|
2017-04-01 22:38:00 -07:00
|
|
|
/* using ::before for list numbers and icons */
|
2017-03-13 12:35:41 -07:00
|
|
|
nav,
|
2017-04-01 22:38:00 -07:00
|
|
|
ul,
|
|
|
|
ol {
|
2017-03-13 12:35:41 -07:00
|
|
|
list-style: none;
|
|
|
|
}
|
2017-03-10 22:59:27 -08:00
|
|
|
|
2017-03-29 19:58:42 -07:00
|
|
|
a,
|
|
|
|
.clickable {
|
2017-03-13 12:35:41 -07:00
|
|
|
color: inherit;
|
2017-03-14 00:07:16 -07:00
|
|
|
opacity: 0.8;
|
2017-03-13 12:35:41 -07:00
|
|
|
outline: 0;
|
|
|
|
text-decoration: none;
|
|
|
|
cursor: pointer;
|
2017-04-01 19:59:26 -07:00
|
|
|
font-weight: bold;
|
2017-03-10 22:59:27 -08:00
|
|
|
}
|
|
|
|
|
2017-03-29 19:58:42 -07:00
|
|
|
a:hover,
|
|
|
|
.clickable:hover {
|
2017-03-13 12:35:41 -07:00
|
|
|
opacity: 1;
|
2017-03-10 22:59:27 -08:00
|
|
|
}
|
|
|
|
|
2017-03-11 20:11:20 -08:00
|
|
|
.btn {
|
2017-03-14 00:07:16 -07:00
|
|
|
padding: 0.3em;
|
2017-03-13 12:35:41 -07:00
|
|
|
color: white;
|
|
|
|
background-color: black;
|
2017-03-14 00:07:16 -07:00
|
|
|
border: 4px solid grey;
|
|
|
|
border-radius: 10px;
|
2017-03-13 12:35:41 -07:00
|
|
|
text-transform: uppercase;
|
|
|
|
font-weight: bold;
|
|
|
|
cursor: pointer;
|
2017-03-10 22:59:27 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
2017-03-13 12:35:41 -07:00
|
|
|
max-width: 100%;
|
2017-03-10 22:59:27 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
figure {
|
2017-03-13 12:35:41 -07:00
|
|
|
display: block;
|
|
|
|
padding: 1em;
|
2017-03-10 22:59:27 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
figcaption {
|
2017-03-13 12:35:41 -07:00
|
|
|
display: block;
|
|
|
|
margin: 1em 0;
|
|
|
|
text-align: center;
|
|
|
|
font-style: italic;
|
|
|
|
orphans: 2;
|
2017-03-10 22:59:27 -08:00
|
|
|
}
|
|
|
|
|
2017-03-13 12:35:41 -07:00
|
|
|
/* divider */
|
2017-03-29 19:58:42 -07:00
|
|
|
|
2017-03-10 22:59:27 -08:00
|
|
|
hr {
|
2017-03-13 12:35:41 -07:00
|
|
|
width: 50%;
|
|
|
|
height: 0;
|
|
|
|
margin: 4px auto;
|
|
|
|
border-top-color: white;
|
|
|
|
border-bottom-color: rgba(0, 0, 0, 0.2);
|
|
|
|
border-width: 2px;
|
|
|
|
border-style: solid;
|
2017-03-10 22:59:27 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
.flex-col-center {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2017-03-13 12:35:41 -07:00
|
|
|
flex-direction: column;
|
2017-03-10 22:59:27 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
.flex-col-left {
|
|
|
|
display: flex;
|
|
|
|
align-items: flex-start;
|
2017-03-13 12:35:41 -07:00
|
|
|
flex-direction: column;
|
2017-03-10 22:59:27 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
.flex-row {
|
2017-03-13 12:35:41 -07:00
|
|
|
display: flex;
|
|
|
|
align-content: center;
|
|
|
|
flex-direction: row;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: flex-start;
|
2017-03-10 22:59:27 -08:00
|
|
|
}
|
2017-03-29 19:58:42 -07:00
|
|
|
|
2017-04-01 19:59:26 -07:00
|
|
|
.text-center p {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.text-left p {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.text-right p {
|
|
|
|
text-align: right;
|
|
|
|
}
|
2017-04-03 11:39:23 -07:00
|
|
|
|
|
|
|
/* keeps in the DOM but moves from the page */
|
|
|
|
.invisible {
|
|
|
|
position: absolute;
|
|
|
|
left: -999em;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*keeps in the same location and maintains it's layout space even though hidden*/
|
|
|
|
.hide {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*completely removes from DOM */
|
|
|
|
.remove {
|
|
|
|
display: none;
|
|
|
|
}
|