2017-03-10 22:59:27 -08:00
|
|
|
/* sections */
|
2017-03-04 08:12:31 -08:00
|
|
|
|
2017-04-01 19:59:26 -07:00
|
|
|
.section__headline {
|
2017-03-10 22:59:27 -08:00
|
|
|
text-align: center;
|
2017-03-04 08:12:31 -08:00
|
|
|
}
|
|
|
|
|
2017-03-10 22:59:27 -08:00
|
|
|
.section__content {
|
2017-03-13 12:35:41 -07:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
2017-03-04 08:12:31 -08:00
|
|
|
}
|
|
|
|
|
2017-03-11 20:11:20 -08:00
|
|
|
.section__content ul {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: flex-start;
|
2017-03-13 12:35:41 -07:00
|
|
|
max-width: 80%;
|
|
|
|
padding-top: 0.3em;
|
2017-03-11 20:11:20 -08:00
|
|
|
padding-bottom: 1em;
|
2017-03-21 08:32:26 -07:00
|
|
|
padding-left: 0.5em;
|
|
|
|
padding-right: 0.5em;
|
2017-03-11 20:11:20 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
.section__content li {
|
2017-03-13 12:35:41 -07:00
|
|
|
padding-bottom: 0.7em;
|
2017-03-11 20:11:20 -08:00
|
|
|
}
|
|
|
|
|
2017-04-01 22:38:00 -07:00
|
|
|
/* lists in section content */
|
|
|
|
.section__content li {
|
|
|
|
font-size: 1em;
|
|
|
|
list-style-type: none;
|
|
|
|
line-height: 0.9em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.section__content ul,
|
|
|
|
.section__content ol {
|
|
|
|
margin-left: 2em;
|
|
|
|
list-style-position: inside;
|
|
|
|
padding-top: 1em;
|
|
|
|
}
|
|
|
|
|
2017-04-01 19:59:26 -07:00
|
|
|
.section__content ul > li::before {
|
2017-03-13 12:35:41 -07:00
|
|
|
font-family: FontAwesome;
|
|
|
|
content: "\f18e";
|
2017-04-01 22:38:00 -07:00
|
|
|
padding-right: 1.1em;
|
|
|
|
margin-left: -2em;
|
2017-03-11 20:11:20 -08:00
|
|
|
}
|
|
|
|
|
2017-04-01 22:38:00 -07:00
|
|
|
.section__content ol {
|
|
|
|
counter-reset: foo;
|
|
|
|
}
|
|
|
|
|
|
|
|
.section__content ol > li {
|
|
|
|
counter-increment: foo;
|
|
|
|
}
|
|
|
|
|
|
|
|
.section__content ol > li::before {
|
|
|
|
content: counter(foo) ".";
|
|
|
|
padding-right: 0.8em;
|
|
|
|
margin-left: -1.4em;
|
2017-03-11 20:11:20 -08:00
|
|
|
}
|
|
|
|
|
2017-03-10 22:59:27 -08:00
|
|
|
.section--even {
|
2017-03-13 12:35:41 -07:00
|
|
|
color: white;
|
|
|
|
background-color: black;
|
2017-03-11 20:11:20 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
.section--even .btn {
|
2017-03-13 12:35:41 -07:00
|
|
|
color: black;
|
|
|
|
background-color: white;
|
|
|
|
text-transform: uppercase;
|
2017-03-04 20:02:56 -08:00
|
|
|
}
|
|
|
|
|
2017-03-10 22:59:27 -08:00
|
|
|
.section--footer {
|
2017-03-13 12:35:41 -07:00
|
|
|
color: white;
|
|
|
|
background-color: darkgrey;
|
|
|
|
min-height: 4000px;
|
2017-03-04 08:12:31 -08:00
|
|
|
}
|
|
|
|
|
2017-03-13 12:35:41 -07:00
|
|
|
/* ----------------
|
2017-03-10 22:59:27 -08:00
|
|
|
Hero Section
|
2017-03-13 12:35:41 -07:00
|
|
|
---------------- */
|
2017-03-10 22:59:27 -08:00
|
|
|
#hero {
|
2017-03-13 12:35:41 -07:00
|
|
|
background-image: url("../images/hero.jpg");
|
|
|
|
background-size: cover;
|
|
|
|
background-position: center;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2017-03-04 08:12:31 -08:00
|
|
|
}
|
|
|
|
|
2017-03-10 22:59:27 -08:00
|
|
|
#hero .text {
|
2017-03-13 12:35:41 -07:00
|
|
|
text-align: center;
|
|
|
|
color: white;
|
2017-03-04 08:12:31 -08:00
|
|
|
}
|
|
|
|
|
2017-03-13 12:35:41 -07:00
|
|
|
/* ----------------
|
2017-03-10 22:59:27 -08:00
|
|
|
Components/Shortcodes Styling
|
2017-03-13 12:35:41 -07:00
|
|
|
---------------- */
|
2017-03-04 08:12:31 -08:00
|
|
|
|
2017-04-01 19:59:26 -07:00
|
|
|
/* box creates a flexbox wrapper, row default */
|
2017-03-10 22:59:27 -08:00
|
|
|
.box {
|
2017-03-13 12:35:41 -07:00
|
|
|
display: flex;
|
2017-04-01 19:59:26 -07:00
|
|
|
flex-flow: wrap;
|
2017-03-13 12:35:41 -07:00
|
|
|
align-content: center;
|
|
|
|
justify-content: center;
|
2017-03-04 08:12:31 -08:00
|
|
|
}
|
|
|
|
|
2017-03-12 11:05:18 -07:00
|
|
|
.box--column {
|
2017-03-13 12:35:41 -07:00
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
2017-03-12 11:05:18 -07:00
|
|
|
}
|
|
|
|
|
2017-03-14 23:20:52 -07:00
|
|
|
.box--image {
|
|
|
|
max-width: 450px;
|
2017-03-29 19:58:42 -07:00
|
|
|
padding: 0.5em;
|
2017-03-14 23:20:52 -07:00
|
|
|
}
|
|
|
|
|
2017-03-13 12:35:41 -07:00
|
|
|
.box--headline {
|
|
|
|
}
|
2017-03-04 08:12:31 -08:00
|
|
|
|
2017-03-13 12:35:41 -07:00
|
|
|
.box--text {
|
|
|
|
}
|
2017-03-04 08:12:31 -08:00
|
|
|
|
2017-03-10 22:59:27 -08:00
|
|
|
.box--btn {
|
2017-04-01 19:59:26 -07:00
|
|
|
padding: 0.5rem;
|
|
|
|
margin-bottom: 0.5rem;
|
2017-03-04 08:12:31 -08:00
|
|
|
}
|
|
|
|
|
2017-04-01 19:59:26 -07:00
|
|
|
.box--btn-bar > .box--btn {
|
|
|
|
margin-right: 0.2em;
|
|
|
|
margin-bottom: 0.5em;
|
2017-03-29 19:58:42 -07:00
|
|
|
}
|
|
|
|
|
2017-04-01 19:59:26 -07:00
|
|
|
.btn__text {
|
|
|
|
align-self: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn__icon {
|
|
|
|
align-self: center;
|
|
|
|
padding-right: 0.2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn--large .btn__text,
|
|
|
|
.btn--large .btn__icon {
|
|
|
|
font-size: 3rem;
|
|
|
|
}
|
|
|
|
|
2017-03-29 19:58:42 -07:00
|
|
|
.box--avatar > img,
|
|
|
|
img.avatar {
|
|
|
|
object-fit: cover;
|
|
|
|
border-radius: 50%;
|
|
|
|
width: 100px;
|
|
|
|
height: 100px;
|
2017-04-01 19:59:26 -07:00
|
|
|
padding: 0.5em;
|
2017-03-29 19:58:42 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.box--avatar > a {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
2017-03-10 22:59:27 -08:00
|
|
|
.box__embed {
|
2017-03-12 11:05:18 -07:00
|
|
|
width: 100%;
|
2017-03-10 22:59:27 -08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2017-03-12 11:05:18 -07:00
|
|
|
flex-wrap: nowrap;
|
|
|
|
justify-content: center;
|
2017-03-10 22:59:27 -08:00
|
|
|
align-items: center;
|
2017-03-04 08:12:31 -08:00
|
|
|
}
|
|
|
|
|
2017-04-03 06:59:44 -07:00
|
|
|
.box__caption {
|
|
|
|
padding-bottom: .75em;
|
|
|
|
text-transform: capitalize;
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
|
|
|
.box__title {
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-weight: bold;
|
|
|
|
padding-top: 0.75em;
|
|
|
|
}
|
|
|
|
|
2017-03-30 16:09:00 -07:00
|
|
|
.box__embed--disqus {
|
|
|
|
width: 90vw;
|
|
|
|
max-width: 800px;
|
|
|
|
}
|
|
|
|
|
2017-03-29 19:58:42 -07:00
|
|
|
.box__contact-info > * {
|
|
|
|
padding: 0.1em;
|
|
|
|
align-self: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.box__contact-info > * > * {
|
2017-04-01 19:59:26 -07:00
|
|
|
margin: 0.2em;
|
|
|
|
align-self: center;
|
2017-03-29 19:58:42 -07:00
|
|
|
}
|
|
|
|
|
2017-03-14 00:07:16 -07:00
|
|
|
/*turn off default bullets*/
|
2017-03-10 22:59:27 -08:00
|
|
|
.box--gallery {
|
2017-03-14 00:07:16 -07:00
|
|
|
list-style: none;
|
2017-03-04 08:12:31 -08:00
|
|
|
}
|
|
|
|
|
2017-03-14 00:07:16 -07:00
|
|
|
.box--gallery li,
|
|
|
|
.box--gallery__item {
|
|
|
|
padding: 0.2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*turn off fontawesome bullets*/
|
|
|
|
.box--gallery li::before,
|
|
|
|
.box--gallery__item li::before {
|
|
|
|
display: none;
|
2017-03-04 08:12:31 -08:00
|
|
|
}
|
2017-04-03 06:59:44 -07:00
|
|
|
|
|
|
|
code {
|
|
|
|
font-size: 0.8em;
|
|
|
|
background-color: grey;
|
|
|
|
border-radius: 0.2em;
|
|
|
|
color: white;
|
|
|
|
padding-left: 0.2em;
|
|
|
|
padding-right: 0.2em;
|
|
|
|
padding-top: 0.05em;
|
|
|
|
padding-bottom: 0.05em;
|
|
|
|
|
|
|
|
}
|