2014-10-05 12:12:48 -07:00
|
|
|
html, body {
|
2014-09-28 00:45:34 -07:00
|
|
|
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
|
2014-10-05 12:12:48 -07:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2014-09-28 00:45:34 -07:00
|
|
|
|
|
|
|
|
|
|
|
/* ********************************************* */
|
|
|
|
/* *** HEADER ********************************** */
|
|
|
|
/* ********************************************* */
|
|
|
|
|
2014-10-05 12:12:48 -07:00
|
|
|
header {
|
|
|
|
padding: 0 10px;
|
|
|
|
font-size: 12pt;
|
|
|
|
background-color: #404040;
|
|
|
|
}
|
|
|
|
|
|
|
|
header #logo {
|
|
|
|
font-size: 15pt;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav ul {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
list-style-type: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav ul li {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
header a {
|
|
|
|
color: #E0E0E0;
|
|
|
|
display: inline-block;
|
|
|
|
padding: 10px;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
header a:hover {
|
|
|
|
color: #F80;
|
|
|
|
}
|
|
|
|
|
2014-09-28 00:45:34 -07:00
|
|
|
|
|
|
|
|
|
|
|
/* ********************************************* */
|
|
|
|
/* *** PAGES *********************************** */
|
|
|
|
/* ********************************************* */
|
|
|
|
|
2014-10-05 12:12:48 -07:00
|
|
|
.page {
|
2014-09-28 00:45:34 -07:00
|
|
|
min-height: 100vh;
|
|
|
|
border-top: 5px #F80 solid;
|
|
|
|
border-bottom: 5px #F80 solid;
|
2014-10-05 12:12:48 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
|
|
|
padding: 15vh 5%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content h1,h2,h3 {
|
|
|
|
margin-left: -2%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content a {
|
|
|
|
color: #F80;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content a:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
2014-09-28 00:45:34 -07:00
|
|
|
p {
|
|
|
|
font-size: 14pt;
|
|
|
|
color: #333;
|
|
|
|
}
|
2014-10-05 12:12:48 -07:00
|
|
|
|
2014-09-28 00:45:34 -07:00
|
|
|
p + ul {
|
|
|
|
margin-top: 3px;
|
|
|
|
}
|
2014-10-05 12:12:48 -07:00
|
|
|
|
2014-09-28 00:45:34 -07:00
|
|
|
/* ********************************************* */
|
|
|
|
/* *** HOME ************************************ */
|
2014-10-05 12:12:48 -07:00
|
|
|
|
|
|
|
#home {
|
2014-09-28 00:45:34 -07:00
|
|
|
border-top: none;
|
2014-10-05 12:12:48 -07:00
|
|
|
background-color: #fdfdfd;
|
|
|
|
}
|
|
|
|
|
2014-09-28 00:45:34 -07:00
|
|
|
#home #home-image-container {
|
|
|
|
margin: auto;
|
|
|
|
padding-top: 5vh;
|
|
|
|
padding-bottom: 5vh;
|
|
|
|
max-width: 512px;
|
|
|
|
width: 70vw;
|
|
|
|
}
|
|
|
|
|
|
|
|
#home #home-image-container img {
|
|
|
|
max-height: 512px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ********************************************* */
|
|
|
|
/* *** ABOUT *********************************** */
|
|
|
|
|
|
|
|
#about .name-header {
|
2014-09-26 21:51:31 -07:00
|
|
|
text-align: center;
|
2014-09-28 00:45:34 -07:00
|
|
|
margin: 0;
|
2014-09-26 21:51:31 -07:00
|
|
|
}
|
|
|
|
|
2014-09-28 00:45:34 -07:00
|
|
|
#about h1.name-header {
|
|
|
|
margin-top: 15vh;
|
2014-09-26 21:51:31 -07:00
|
|
|
font-size: 10vw;
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
|
2014-09-28 00:45:34 -07:00
|
|
|
#about h2.name-header {
|
2014-09-26 21:51:31 -07:00
|
|
|
font-size: 5vw;
|
|
|
|
color: #333;
|
|
|
|
}
|
|
|
|
|
2014-10-05 12:12:48 -07:00
|
|
|
#about {
|
|
|
|
background-color: #efefef;
|
|
|
|
}
|
|
|
|
|
2014-09-28 00:45:34 -07:00
|
|
|
#about .content h3,p {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#about .content h3 + p {
|
|
|
|
margin-top: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#about .content p + p {
|
|
|
|
margin-top: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ********************************************* */
|
|
|
|
/* *** DOWNLOAD ******************************** */
|
|
|
|
|
2014-10-05 12:12:48 -07:00
|
|
|
#download {
|
|
|
|
background-color: #fdfdfd;
|
|
|
|
}
|
|
|
|
|
2014-09-28 00:45:34 -07:00
|
|
|
|
|
|
|
|
|
|
|
/* ********************************************* */
|
|
|
|
/* *** FOOTER ********************************** */
|
|
|
|
/* ********************************************* */
|
|
|
|
|
2014-10-05 12:12:48 -07:00
|
|
|
footer {
|
|
|
|
padding: 10px;
|
|
|
|
background-color: #efefef;
|
|
|
|
}
|
|
|
|
|
|
|
|
footer .footer-content {
|
|
|
|
margin: 5px auto;
|
|
|
|
text-align: center;
|
|
|
|
max-width: 50%;
|
2014-09-28 00:45:34 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
footer p {
|
2014-10-05 12:12:48 -07:00
|
|
|
font-size: 9pt;
|
|
|
|
}
|