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;
|
2017-04-07 17:02:17 -07:00
|
|
|
line-height: 1.1em;
|
2017-04-01 22:38:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.section__content ul,
|
|
|
|
.section__content ol {
|
|
|
|
margin-left: 2em;
|
|
|
|
list-style-position: inside;
|
2017-04-05 00:24:28 -07:00
|
|
|
padding-top: 0.5em;
|
2017-04-01 22:38:00 -07:00
|
|
|
}
|
|
|
|
|
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-04-07 01:40:29 -07:00
|
|
|
.section--odd {
|
2017-03-13 12:35:41 -07:00
|
|
|
color: white;
|
|
|
|
background-color: black;
|
2017-03-11 20:11:20 -08:00
|
|
|
}
|
|
|
|
|
2017-04-05 00:24:28 -07:00
|
|
|
.section--hero {
|
|
|
|
color: white;
|
|
|
|
background-color: grey;
|
|
|
|
}
|
|
|
|
|
2017-04-07 01:40:29 -07:00
|
|
|
.section--odd .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-04-07 01:40:29 -07:00
|
|
|
/* modal */
|
|
|
|
|
|
|
|
.section--modal {
|
2017-04-08 14:24:15 -07:00
|
|
|
display: none;
|
2017-04-07 01:40:29 -07:00
|
|
|
color: white;
|
|
|
|
justify-content: center;
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
|
|
}
|
|
|
|
|
|
|
|
.section__container--modal {
|
|
|
|
margin: 0.5em;
|
|
|
|
margin-top: 2em;
|
|
|
|
background-color: black;
|
|
|
|
color: white;
|
|
|
|
max-height: 85%;
|
|
|
|
border-radius: 1em;
|
|
|
|
width: auto;
|
|
|
|
padding-bottom: 1em;
|
2017-04-07 17:02:17 -07:00
|
|
|
border-style: solid;
|
|
|
|
border-width: medium;
|
2017-04-07 01:40:29 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.section__headline--modal {
|
|
|
|
padding-top: 0.5em;
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
padding-right: 1.2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.section__headline--modal > h1 {
|
|
|
|
font-size: 1.2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.section__headline--modal > a[modal-close] {
|
|
|
|
position: absolute;
|
|
|
|
font-size: 1em;
|
|
|
|
top: 0.4em;
|
|
|
|
right: 0.4em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.section__content--modal {
|
|
|
|
overflow-y: auto;
|
|
|
|
position: relative;
|
|
|
|
align-items: flex-start;
|
2017-04-08 14:24:15 -07:00
|
|
|
font-size: 0.9em;
|
2017-04-07 01:40:29 -07:00
|
|
|
padding: 1em;
|
|
|
|
}
|
|
|
|
|
2017-04-10 15:15:14 -07:00
|
|
|
/*fix for fucking google chrome pushing up overflow content */
|
2017-04-08 15:47:13 -07:00
|
|
|
.section__content--modal * {
|
|
|
|
flex-shrink: 0;
|
|
|
|
}
|
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-size: cover;
|
|
|
|
background-position: center;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2017-04-08 14:24:15 -07:00
|
|
|
width: 100vw;
|
2017-03-04 08:12:31 -08:00
|
|
|
}
|
|
|
|
|
2017-04-05 00:24:28 -07:00
|
|
|
#hero .section-content--hero {
|
2017-03-13 12:35:41 -07:00
|
|
|
text-align: center;
|
2017-04-07 01:40:29 -07:00
|
|
|
line-height: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*mobile first*/
|
|
|
|
#hero h1,
|
|
|
|
#hero h2,
|
|
|
|
#hero h3,
|
|
|
|
#hero h4,
|
|
|
|
#hero h5,
|
|
|
|
#hero h6 {
|
|
|
|
line-height: 1;
|
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-04-12 12:32:04 -07:00
|
|
|
padding-left: 0.5em;
|
|
|
|
padding-right: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.box--embed::before {
|
|
|
|
content: "";
|
|
|
|
height: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.box--embed::after {
|
|
|
|
content: "";
|
|
|
|
height: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.box--btn-bar {
|
|
|
|
padding-top: 0.5em;
|
2017-04-03 11:39:23 -07:00
|
|
|
padding-bottom: 0.5em;
|
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-04-12 12:32:04 -07:00
|
|
|
.box__caption {
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
|
|
|
.box__title {
|
|
|
|
text-transform: capitalize;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
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;
|
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;
|
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-04-03 11:39:23 -07:00
|
|
|
.btn--circle {
|
|
|
|
border-radius: 50%;
|
|
|
|
padding: 0.5em;
|
|
|
|
}
|
|
|
|
|
2017-04-05 00:24:28 -07:00
|
|
|
.highlight {
|
|
|
|
font-size: 0.7em;
|
|
|
|
align-items: left;
|
|
|
|
color: red;
|
|
|
|
background-color: white;
|
|
|
|
padding: 0.5em;
|
|
|
|
border-color: black;
|
|
|
|
border-width: 3px;
|
|
|
|
border-radius: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.highlight > ul > li::before {
|
|
|
|
font-family: FontAwesome;
|
|
|
|
content: "\f054"; /* chevron-right */
|
|
|
|
padding-right: 1.1em;
|
|
|
|
margin-left: -2em;
|
|
|
|
}
|
|
|
|
|
2017-03-29 19:58:42 -07:00
|
|
|
.box--avatar > a {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
2017-04-12 12:32:04 -07:00
|
|
|
/*may get rid of this after fixing embed shortcode */
|
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-10 15:15:14 -07:00
|
|
|
.box--embed {
|
|
|
|
flex-direction: column;
|
|
|
|
flex-wrap: nowrap;
|
2017-04-12 12:32:04 -07:00
|
|
|
padding-bottom: 0;
|
2017-04-10 15:15:14 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.thumb--yt {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: cover;
|
2017-04-12 12:32:04 -07:00
|
|
|
-webkit-filter: brightness(.8);
|
2017-04-10 15:15:14 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.thumb--yt:hover {
|
2017-04-12 12:32:04 -07:00
|
|
|
-webkit-filter: brightness(1);
|
2017-04-10 15:15:14 -07:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.thumb--yt > .play-button {
|
2017-04-12 12:32:04 -07:00
|
|
|
font-size: 3.5em;
|
|
|
|
color: red;
|
|
|
|
text-shadow: 3px 3px black;
|
2017-04-03 06:59:44 -07:00
|
|
|
}
|
|
|
|
|
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;
|
2017-04-03 11:39:23 -07:00
|
|
|
font-family: Inconsolata;
|
2017-04-07 17:02:17 -07:00
|
|
|
background-color: black;
|
2017-04-03 06:59:44 -07:00
|
|
|
border-radius: 0.2em;
|
|
|
|
color: white;
|
|
|
|
padding-left: 0.2em;
|
|
|
|
padding-right: 0.2em;
|
|
|
|
padding-top: 0.05em;
|
2017-04-07 17:02:17 -07:00
|
|
|
padding-bottom: 0.3em;
|
2017-04-11 14:47:39 -07:00
|
|
|
overflow-x: scroll;
|
2017-04-03 11:39:23 -07:00
|
|
|
}
|
2017-04-03 06:59:44 -07:00
|
|
|
|
2017-04-03 11:39:23 -07:00
|
|
|
code.hljs {
|
2017-04-07 01:40:29 -07:00
|
|
|
font-size: 0.75em;
|
2017-04-03 11:39:23 -07:00
|
|
|
border-radius: 0.2em;
|
2017-04-07 17:02:17 -07:00
|
|
|
background-color: black;
|
2017-04-03 11:39:23 -07:00
|
|
|
color: white;
|
|
|
|
padding: 1em;
|
|
|
|
margin-bottom: 0.7em;
|
|
|
|
width: inherit;
|
|
|
|
max-width: 90vw;
|
2017-04-07 17:02:17 -07:00
|
|
|
border-style: solid;
|
|
|
|
border-width: 3px;
|
|
|
|
border-color: dimgrey;
|
2017-04-03 06:59:44 -07:00
|
|
|
}
|