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 {
|
2014-12-08 00:41:01 -08:00
|
|
|
background-color: #404040;
|
|
|
|
padding: 1vh 15vw;
|
|
|
|
color: #E0E0E0;
|
|
|
|
|
|
|
|
overflow: hidden;
|
2014-10-05 12:12:48 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
header #logo {
|
2014-12-08 00:41:01 -08:00
|
|
|
display: table;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
header #logo .logo-text {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
header #logo p {
|
|
|
|
color: #E0E0E0;
|
|
|
|
display: table;
|
|
|
|
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
header #logo p.title {
|
|
|
|
font-size: 20pt;
|
|
|
|
}
|
|
|
|
|
|
|
|
header #logo p.subtitle {
|
|
|
|
font-size: 12pt;
|
|
|
|
}
|
|
|
|
|
|
|
|
header #logo img {
|
|
|
|
float: left;
|
|
|
|
height: 40pt;
|
|
|
|
margin-bottom: -8pt;
|
|
|
|
margin-right: 10px;
|
2014-10-05 12:12:48 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nav {
|
|
|
|
display: inline-block;
|
2014-12-08 00:41:01 -08:00
|
|
|
float: right;
|
|
|
|
font-size: 12pt;
|
|
|
|
margin-top: 2pt;
|
2014-10-05 12:12:48 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nav ul {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
list-style-type: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav ul li {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
2014-12-08 00:41:01 -08:00
|
|
|
nav a {
|
|
|
|
padding: 14pt 10px;
|
|
|
|
}
|
|
|
|
|
2014-10-05 12:12:48 -07:00
|
|
|
header a {
|
2014-12-08 00:41:01 -08:00
|
|
|
color: #E0E0E0;
|
2014-10-05 12:12:48 -07:00
|
|
|
display: inline-block;
|
|
|
|
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-07 14:59:08 -07:00
|
|
|
overflow: hidden;
|
2014-10-05 12:12:48 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
|
|
|
padding: 15vh 5%;
|
|
|
|
}
|
|
|
|
|
2014-11-17 22:49:31 -08:00
|
|
|
.content h2,h3 {
|
2014-10-05 12:12:48 -07:00
|
|
|
margin-left: -2%;
|
|
|
|
}
|
|
|
|
|
2014-09-28 17:56:06 -07:00
|
|
|
.content h1 {
|
|
|
|
text-align: center;
|
|
|
|
font-size: 32pt;
|
|
|
|
}
|
|
|
|
|
2014-10-05 12:12:48 -07:00
|
|
|
.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-09-29 15:31:43 -07:00
|
|
|
background-color: #fcfcfc;
|
2014-10-05 12:12:48 -07:00
|
|
|
}
|
|
|
|
|
2014-09-28 00:45:34 -07:00
|
|
|
#home #home-image-container {
|
|
|
|
margin: auto;
|
2014-09-28 17:56:06 -07:00
|
|
|
padding-top: 3vh;
|
2014-09-29 22:04:28 -07:00
|
|
|
max-width: 400px;
|
2014-12-06 17:20:36 -08:00
|
|
|
width: 40vw;
|
2014-09-28 00:45:34 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#home #home-image-container img {
|
2014-09-29 22:04:28 -07:00
|
|
|
max-height: 400px;
|
2014-12-05 15:04:27 -08:00
|
|
|
height: 50vh;
|
2014-12-06 17:20:36 -08:00
|
|
|
min-height: 20vw;
|
2014-09-28 00:45:34 -07:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2014-09-28 17:56:06 -07:00
|
|
|
#home .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-28 17:56:06 -07:00
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
text-shadow:
|
|
|
|
-1px -1px 0 #FFF,
|
|
|
|
1px -1px 0 #FFF,
|
|
|
|
-1px 1px 0 #FFF,
|
|
|
|
1px 1px 0 #FFF;
|
2014-09-26 21:51:31 -07:00
|
|
|
}
|
|
|
|
|
2014-09-28 17:56:06 -07:00
|
|
|
#home h1.name-header {
|
2014-09-29 22:04:28 -07:00
|
|
|
margin-top: 0;
|
|
|
|
font-size: 8vw;
|
2014-09-26 21:51:31 -07:00
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
|
2014-09-28 17:56:06 -07:00
|
|
|
#home h2.name-header {
|
|
|
|
margin-bottom: 15vh;
|
2014-09-29 22:04:28 -07:00
|
|
|
font-size: 4vw;
|
2014-09-26 21:51:31 -07:00
|
|
|
color: #333;
|
|
|
|
}
|
|
|
|
|
2014-10-09 21:53:13 -07:00
|
|
|
/* ********************************************* */
|
|
|
|
/* *** IMAGEBAR ******************************** */
|
|
|
|
|
|
|
|
#imagebar {
|
|
|
|
margin: 0;
|
2014-12-01 01:18:31 -08:00
|
|
|
background-color: #F80;
|
2014-10-09 21:53:13 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#imagebar img {
|
|
|
|
margin: auto;
|
|
|
|
width: 24vw;
|
|
|
|
max-width: 400px;
|
2014-12-01 01:18:31 -08:00
|
|
|
border: 2px #FFF solid;
|
2014-10-09 21:53:13 -07:00
|
|
|
border-radius: 0.3vw;
|
|
|
|
}
|
|
|
|
|
2014-09-28 17:56:06 -07:00
|
|
|
/* ********************************************* */
|
|
|
|
/* *** ABOUT *********************************** */
|
|
|
|
|
2014-10-05 12:12:48 -07:00
|
|
|
#about {
|
2014-09-29 15:31:43 -07:00
|
|
|
background-color: #fafafa;
|
2014-10-05 12:12:48 -07:00
|
|
|
}
|
|
|
|
|
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 {
|
2014-09-29 15:31:43 -07:00
|
|
|
background-color: #fcfcfc;
|
2014-11-17 22:49:31 -08:00
|
|
|
text-align: center;
|
2014-10-05 12:12:48 -07:00
|
|
|
}
|
|
|
|
|
2014-11-17 22:49:31 -08:00
|
|
|
#download .content h3 {
|
|
|
|
margin-left: 0;
|
2014-09-29 22:04:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.dl-block h3 {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
img.dl-icon {
|
|
|
|
padding: 40px;
|
|
|
|
margin: 5px;
|
|
|
|
border: 3px black solid;
|
2014-10-09 21:53:13 -07:00
|
|
|
border-radius: 0.3vw;
|
2014-09-29 22:04:28 -07:00
|
|
|
|
|
|
|
width: 4vw;
|
|
|
|
max-width: 64px;
|
|
|
|
min-width: 32px;
|
|
|
|
|
|
|
|
transition: background-color 0.4s ease;
|
|
|
|
background-color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
img.dl-icon:hover {
|
|
|
|
background-color: #f80;
|
|
|
|
}
|
|
|
|
|
2014-11-17 22:49:31 -08:00
|
|
|
p.alert {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
margin: 0;
|
|
|
|
padding: 4vh 0;
|
|
|
|
|
|
|
|
background-color: #F80;
|
|
|
|
color: #FFF;
|
|
|
|
font-size: 18pt;
|
|
|
|
}
|
|
|
|
|
2014-09-28 00:45:34 -07:00
|
|
|
|
|
|
|
|
|
|
|
/* ********************************************* */
|
|
|
|
/* *** FOOTER ********************************** */
|
|
|
|
/* ********************************************* */
|
|
|
|
|
2014-10-05 12:12:48 -07:00
|
|
|
footer {
|
|
|
|
padding: 10px;
|
2014-09-29 15:31:43 -07:00
|
|
|
background-color: #fafafa;
|
2014-10-05 12:12:48 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|