| @@ -0,0 +1,369 @@ | ||
| /*! | ||
| * Start Bootstrap - Grayscale Bootstrap Theme (http://startbootstrap.com) | ||
| * Code licensed under the Apache License v2.0. | ||
| * For details, see http://www.apache.org/licenses/LICENSE-2.0. | ||
| */ | ||
|
|
||
| body { | ||
| width: 100%; | ||
| height: 100%; | ||
| font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; | ||
| color: #000; | ||
| background-color: #fff; | ||
| } | ||
|
|
||
| html { | ||
| width: 100%; | ||
| height: 100%; | ||
| } | ||
|
|
||
| h1, | ||
| h2, | ||
| h3, | ||
| h4, | ||
| h5, | ||
| h6 { | ||
| margin: 0 0 35px; | ||
| text-transform: uppercase; | ||
| font-family: Helvetica,Arial,sans-serif; | ||
| font-weight: 600; | ||
| letter-spacing: 1px; | ||
| } | ||
|
|
||
| p { | ||
| margin: 0 0 25px; | ||
| font-size: 18px; | ||
| line-height: 1.5; | ||
| } | ||
|
|
||
| @media(min-width:768px) { | ||
| p { | ||
| margin: 0 0 35px; | ||
| font-size: 20px; | ||
| line-height: 1.6; | ||
| } | ||
| } | ||
|
|
||
| a { | ||
| color: #333399; | ||
| -webkit-transition: all .2s ease-in-out; | ||
| -moz-transition: all .2s ease-in-out; | ||
| transition: all .2s ease-in-out; | ||
| } | ||
|
|
||
| a:hover, | ||
| a:focus { | ||
| text-decoration: none; | ||
| color: #9999CC; | ||
| } | ||
|
|
||
| .light { | ||
| font-weight: 400; | ||
| } | ||
|
|
||
| .navbar-custom { | ||
| margin-bottom: 0; | ||
| border-bottom: 1px solid rgba(255,255,255,.3); | ||
| //text-transform: uppercase; | ||
| font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif; | ||
| background-color: #000; | ||
| } | ||
|
|
||
| .navbar-custom .navbar-brand { | ||
| font-weight: 700; | ||
| } | ||
|
|
||
| .navbar-custom .navbar-brand:focus { | ||
| outline: 0; | ||
| } | ||
|
|
||
| .navbar-custom .navbar-brand .navbar-toggle { | ||
| padding: 4px 6px; | ||
| font-size: 16px; | ||
| color: #fff; | ||
| } | ||
|
|
||
| .navbar-custom .navbar-brand .navbar-toggle:focus, | ||
| .navbar-custom .navbar-brand .navbar-toggle:active { | ||
| outline: 0; | ||
| } | ||
|
|
||
| .navbar-custom a { | ||
| color: #fff; | ||
| } | ||
|
|
||
| .navbar-custom .nav li a { | ||
| -webkit-transition: background .3s ease-in-out; | ||
| -moz-transition: background .3s ease-in-out; | ||
| transition: background .3s ease-in-out; | ||
| } | ||
|
|
||
| .navbar-custom .nav li a:hover { | ||
| outline: 0; | ||
| color: rgba(255,255,255,.8); | ||
| background-color: transparent; | ||
| } | ||
|
|
||
| .navbar-custom .nav li a:focus, | ||
| .navbar-custom .nav li a:active { | ||
| outline: 0; | ||
| background-color: transparent; | ||
| } | ||
|
|
||
| .navbar-custom .nav li.active { | ||
| outline: 0; | ||
| } | ||
|
|
||
| .navbar-custom .nav li.active a { | ||
| background-color: rgba(255,255,255,.3); | ||
| } | ||
|
|
||
| .navbar-custom .nav li.active a:hover { | ||
| color: #fff; | ||
| } | ||
|
|
||
| @media(min-width:768px) { | ||
| .navbar-custom { | ||
| padding: 20px 0; | ||
| border-bottom: 0; | ||
| letter-spacing: 1px; | ||
| background: 0 0; | ||
| -webkit-transition: background .5s ease-in-out,padding .5s ease-in-out; | ||
| -moz-transition: background .5s ease-in-out,padding .5s ease-in-out; | ||
| transition: background .5s ease-in-out,padding .5s ease-in-out; | ||
| } | ||
|
|
||
| .navbar-custom.top-nav-collapse { | ||
| padding: 0; | ||
| border-bottom: 1px solid rgba(255,255,255,.3); | ||
| background: #000; | ||
| } | ||
| } | ||
|
|
||
| .intro { | ||
| display: table; | ||
| width: 100%; | ||
| height: auto; | ||
| padding: 100px 0; | ||
| text-align: center; | ||
| color: white; | ||
| background: url(../img/intro-bg.jpg) no-repeat bottom center scroll; | ||
| background: #000 scroll; | ||
| background-color: #000; | ||
| -webkit-background-size: cover; | ||
| -moz-background-size: cover; | ||
| background-size: cover; | ||
| -o-background-size: cover; | ||
| } | ||
|
|
||
| .intro .intro-body { | ||
| display: table-cell; | ||
| vertical-align: middle; | ||
| } | ||
|
|
||
| .intro .intro-body .brand-heading { | ||
| font-size: 40px; | ||
| } | ||
|
|
||
| .intro .intro-body .intro-text { | ||
| font-size: 18px; | ||
| } | ||
|
|
||
| @media(min-width:768px) { | ||
| .intro { | ||
| height: 100%; | ||
| padding: 0; | ||
| } | ||
|
|
||
| .intro .intro-body .brand-heading { | ||
| font-size: 100px; | ||
| } | ||
|
|
||
| .intro .intro-body .intro-text { | ||
| font-size: 26px; | ||
| } | ||
| } | ||
|
|
||
| .btn-circle { | ||
| width: 70px; | ||
| height: 70px; | ||
| margin-top: 15px; | ||
| padding: 7px 16px; | ||
| border: 2px solid #fff; | ||
| border-radius: 100%!important; | ||
| font-size: 40px; | ||
| color: #fff; | ||
| background: 0 0; | ||
| -webkit-transition: background .3s ease-in-out; | ||
| -moz-transition: background .3s ease-in-out; | ||
| transition: background .3s ease-in-out; | ||
| } | ||
|
|
||
| .btn-circle:hover, | ||
| .btn-circle:focus { | ||
| outline: 0; | ||
| color: #fff; | ||
| background: rgba(255,255,255,.1); | ||
| } | ||
|
|
||
| .btn-circle i.animated { | ||
| -webkit-transition-property: -webkit-transform; | ||
| -webkit-transition-duration: 1s; | ||
| -moz-transition-property: -moz-transform; | ||
| -moz-transition-duration: 1s; | ||
| } | ||
|
|
||
| .btn-circle:hover i.animated { | ||
| -webkit-animation-name: pulse; | ||
| -moz-animation-name: pulse; | ||
| -webkit-animation-duration: 1.5s; | ||
| -moz-animation-duration: 1.5s; | ||
| -webkit-animation-iteration-count: infinite; | ||
| -moz-animation-iteration-count: infinite; | ||
| -webkit-animation-timing-function: linear; | ||
| -moz-animation-timing-function: linear; | ||
| } | ||
|
|
||
| @-webkit-keyframes pulse { | ||
| 0% { | ||
| -webkit-transform: scale(1); | ||
| transform: scale(1); | ||
| } | ||
|
|
||
| 50% { | ||
| -webkit-transform: scale(1.2); | ||
| transform: scale(1.2); | ||
| } | ||
|
|
||
| 100% { | ||
| -webkit-transform: scale(1); | ||
| transform: scale(1); | ||
| } | ||
| } | ||
|
|
||
| @-moz-keyframes pulse { | ||
| 0% { | ||
| -moz-transform: scale(1); | ||
| transform: scale(1); | ||
| } | ||
|
|
||
| 50% { | ||
| -moz-transform: scale(1.2); | ||
| transform: scale(1.2); | ||
| } | ||
|
|
||
| 100% { | ||
| -moz-transform: scale(1); | ||
| transform: scale(1); | ||
| } | ||
| } | ||
|
|
||
| .content-section { | ||
| padding-top: 100px; | ||
| } | ||
|
|
||
| .download-section { | ||
| width: 100%; | ||
| padding: 50px 0; | ||
| color: #fff; | ||
| background: url(../img/downloads-bg.jpg) no-repeat center center scroll; | ||
| background-color: #000; | ||
| -webkit-background-size: cover; | ||
| -moz-background-size: cover; | ||
| background-size: cover; | ||
| -o-background-size: cover; | ||
| } | ||
|
|
||
| .footer-section { | ||
| width: 100%; | ||
| padding: 10px; | ||
| margin: 0; | ||
| color: #fff; | ||
| background: url(../img/downloads-bg.jpg) no-repeat center center scroll; | ||
| background-color: #000; | ||
| -webkit-background-size: cover; | ||
| -moz-background-size: cover; | ||
| background-size: cover; | ||
| -o-background-size: cover; | ||
| } | ||
|
|
||
| #map { | ||
| width: 100%; | ||
| height: 200px; | ||
| margin-top: 100px; | ||
| // -webkit-filter: grayscale(1); | ||
| } | ||
|
|
||
| @media(min-width:767px) { | ||
| .content-section { | ||
| padding-top: 250px; | ||
| } | ||
|
|
||
| .download-section { | ||
| padding: 100px 0; | ||
| } | ||
|
|
||
| #map { | ||
| height: 400px; | ||
| margin-top: 250px; | ||
| } | ||
| } | ||
|
|
||
| .btn { | ||
| border-radius: 0; | ||
| text-transform: uppercase; | ||
| font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif; | ||
| font-weight: 400; | ||
| -webkit-transition: all .3s ease-in-out; | ||
| -moz-transition: all .3s ease-in-out; | ||
| transition: all .3s ease-in-out; | ||
| } | ||
|
|
||
| .btn-default { | ||
| border: 1px solid #105268; | ||
| color: #fff; | ||
| background-color: #105268; | ||
| } | ||
|
|
||
| .btn-default:hover, | ||
| .btn-default:focus { | ||
| border: 1px solid #66CEF1; | ||
| outline: 0; | ||
| color: #000; | ||
| background-color: #66CEF1; | ||
| } | ||
|
|
||
| ul.banner-social-buttons { | ||
| margin-top: 0; | ||
| } | ||
|
|
||
| @media(max-width:1199px) { | ||
| ul.banner-social-buttons { | ||
| margin-top: 15px; | ||
| } | ||
| } | ||
|
|
||
| @media(max-width:767px) { | ||
| ul.banner-social-buttons li { | ||
| display: block; | ||
| margin-bottom: 20px; | ||
| padding: 0; | ||
| } | ||
|
|
||
| ul.banner-social-buttons li:last-child { | ||
| margin-bottom: 0; | ||
| } | ||
| } | ||
|
|
||
| footer { | ||
| padding: 10px 0 0 0; | ||
| width: 100%; | ||
| color: #000; | ||
| background-color: #fff; | ||
| } | ||
|
|
||
| footer p { | ||
| margin: 0; | ||
| font-size: 15px; | ||
| font-family: "Trebuchet MS", Helvetica, sans-serif; | ||
| } |
| @@ -0,0 +1,80 @@ | ||
| /* ============================================================================================== | ||
| This copyright notice must be kept untouched in the stylesheet at all times. | ||
| The original version of this stylesheet and the associated (x)html | ||
| is available at http://www.script-tutorials.com/night-sky-with-twinkling-stars/ | ||
| Copyright (c) Script Tutorials. All rights reserved. | ||
| This stylesheet and the associated (x)html may be modified in any way to fit your requirements. | ||
| ================================================================================================= */ | ||
|
|
||
|
|
||
| @keyframes move-twink-back { | ||
| from {background-position:0 0;} | ||
| to {background-position:-10000px 5000px;} | ||
| } | ||
| @-webkit-keyframes move-twink-back { | ||
| from {background-position:0 0;} | ||
| to {background-position:-10000px 5000px;} | ||
| } | ||
| @-moz-keyframes move-twink-back { | ||
| from {background-position:0 0;} | ||
| to {background-position:-10000px 5000px;} | ||
| } | ||
| @-ms-keyframes move-twink-back { | ||
| from {background-position:0 0;} | ||
| to {background-position:-10000px 5000px;} | ||
| } | ||
|
|
||
| @keyframes move-clouds-back { | ||
| from {background-position:0 0;} | ||
| to {background-position:10000px 0;} | ||
| } | ||
| @-webkit-keyframes move-clouds-back { | ||
| from {background-position:0 0;} | ||
| to {background-position:10000px 0;} | ||
| } | ||
| @-moz-keyframes move-clouds-back { | ||
| from {background-position:0 0;} | ||
| to {background-position:10000px 0;} | ||
| } | ||
| @-ms-keyframes move-clouds-back { | ||
| from {background-position: 0;} | ||
| to {background-position:10000px 0;} | ||
| } | ||
|
|
||
| .stars, .twinkling, .clouds { | ||
| position:absolute; | ||
| top:0; | ||
| left:0; | ||
| right:0; | ||
| bottom:0; | ||
| width:100%; | ||
| height:100%; | ||
| display:block; | ||
| } | ||
|
|
||
| .stars { | ||
| background:#000 url(images/stars.png) repeat top center; | ||
| z-index:0; | ||
| } | ||
|
|
||
| .twinkling{ | ||
| background:transparent url(images/twinkling.png) repeat top center; | ||
| z-index:1; | ||
|
|
||
| -moz-animation:move-twink-back 200s linear infinite; | ||
| -ms-animation:move-twink-back 200s linear infinite; | ||
| -o-animation:move-twink-back 200s linear infinite; | ||
| -webkit-animation:move-twink-back 200s linear infinite; | ||
| animation:move-twink-back 200s linear infinite; | ||
| } | ||
|
|
||
| .clouds{ | ||
| background:transparent url(images/clouds.png) repeat top center; | ||
| z-index:3; | ||
|
|
||
| -moz-animation:move-clouds-back 200s linear infinite; | ||
| -ms-animation:move-clouds-back 200s linear infinite; | ||
| -o-animation:move-clouds-back 200s linear infinite; | ||
| -webkit-animation:move-clouds-back 200s linear infinite; | ||
| animation:move-clouds-back 200s linear infinite; | ||
| } |
| @@ -0,0 +1,79 @@ | ||
| /* ============================================================================================== | ||
| This copyright notice must be kept untouched in the stylesheet at all times. | ||
| The original version of this stylesheet and the associated (x)html | ||
| is available at http://www.script-tutorials.com/night-sky-with-twinkling-stars/ | ||
| Copyright (c) Script Tutorials. All rights reserved. | ||
| This stylesheet and the associated (x)html may be modified in any way to fit your requirements. | ||
| ================================================================================================= */ | ||
|
|
||
| @keyframes move-twink-back { | ||
| from {background-position:0 0;} | ||
| to {background-position:-10000px 5000px;} | ||
| } | ||
| @-webkit-keyframes move-twink-back { | ||
| from {background-position:0 0;} | ||
| to {background-position:-10000px 5000px;} | ||
| } | ||
| @-moz-keyframes move-twink-back { | ||
| from {background-position:0 0;} | ||
| to {background-position:-10000px 5000px;} | ||
| } | ||
| @-ms-keyframes move-twink-back { | ||
| from {background-position:0 0;} | ||
| to {background-position:-10000px 5000px;} | ||
| } | ||
|
|
||
| @keyframes move-clouds-back { | ||
| from {background-position:0 0;} | ||
| to {background-position:10000px 0;} | ||
| } | ||
| @-webkit-keyframes move-clouds-back { | ||
| from {background-position:0 0;} | ||
| to {background-position:10000px 0;} | ||
| } | ||
| @-moz-keyframes move-clouds-back { | ||
| from {background-position:0 0;} | ||
| to {background-position:10000px 0;} | ||
| } | ||
| @-ms-keyframes move-clouds-back { | ||
| from {background-position: 0;} | ||
| to {background-position:10000px 0;} | ||
| } | ||
|
|
||
| .stars, .twinkling, .clouds { | ||
| position:absolute; | ||
| top:0; | ||
| left:0; | ||
| right:0; | ||
| bottom:0; | ||
| width:100%; | ||
| height:100%; | ||
| display:block; | ||
| } | ||
|
|
||
| .stars { | ||
| background:#000 url(images/stars.png) repeat top center; | ||
| z-index:0; | ||
| } | ||
|
|
||
| .twinkling{ | ||
| background:transparent url(images/twinkling.png) repeat top center; | ||
| z-index:1; | ||
|
|
||
| -moz-animation:move-twink-back 200s linear infinite; | ||
| -ms-animation:move-twink-back 200s linear infinite; | ||
| -o-animation:move-twink-back 200s linear infinite; | ||
| -webkit-animation:move-twink-back 200s linear infinite; | ||
| animation:move-twink-back 200s linear infinite; | ||
| } | ||
|
|
||
| .clouds{ | ||
| background:transparent url(images/clouds2.png) repeat top center; | ||
| z-index:3; | ||
|
|
||
| -moz-animation:move-clouds-back 200s linear infinite; | ||
| -ms-animation:move-clouds-back 200s linear infinite; | ||
| -o-animation:move-clouds-back 200s linear infinite; | ||
| -webkit-animation:move-clouds-back 200s linear infinite; | ||
| animation:move-clouds-back 200s linear infinite; | ||
| } |
| @@ -0,0 +1,107 @@ | ||
| /* ============================================================================================== | ||
| This copyright notice must be kept untouched in the stylesheet at all times. | ||
| The original version of this stylesheet and the associated (x)html | ||
| is available at http://www.script-tutorials.com/night-sky-with-twinkling-stars/ | ||
| Copyright (c) Script Tutorials. All rights reserved. | ||
| This stylesheet and the associated (x)html may be modified in any way to fit your requirements. | ||
| ================================================================================================= */ | ||
| * { | ||
| margin: 0; | ||
| padding: 0; | ||
| } | ||
| header { | ||
| background-color:rgba(33, 33, 33, 0.9); | ||
| color:#ffffff; | ||
| display:block; | ||
| font: 14px/1.3 Arial,sans-serif; | ||
| height:50px; | ||
| position:relative; | ||
| z-index:5; | ||
| } | ||
| h2{ | ||
| margin-top: 30px; | ||
| text-align: center; | ||
| } | ||
| header h2{ | ||
| font-size: 22px; | ||
| margin: 0 auto; | ||
| padding: 10px 0; | ||
| width: 80%; | ||
| text-align: center; | ||
| } | ||
| header a, a:visited { | ||
| text-decoration:none; | ||
| color:#fcfcfc; | ||
| } | ||
|
|
||
| @keyframes move-twink-back { | ||
| from {background-position:0 0;} | ||
| to {background-position:-10000px 5000px;} | ||
| } | ||
| @-webkit-keyframes move-twink-back { | ||
| from {background-position:0 0;} | ||
| to {background-position:-10000px 5000px;} | ||
| } | ||
| @-moz-keyframes move-twink-back { | ||
| from {background-position:0 0;} | ||
| to {background-position:-10000px 5000px;} | ||
| } | ||
| @-ms-keyframes move-twink-back { | ||
| from {background-position:0 0;} | ||
| to {background-position:-10000px 5000px;} | ||
| } | ||
|
|
||
| @keyframes move-clouds-back { | ||
| from {background-position:0 0;} | ||
| to {background-position:10000px 0;} | ||
| } | ||
| @-webkit-keyframes move-clouds-back { | ||
| from {background-position:0 0;} | ||
| to {background-position:10000px 0;} | ||
| } | ||
| @-moz-keyframes move-clouds-back { | ||
| from {background-position:0 0;} | ||
| to {background-position:10000px 0;} | ||
| } | ||
| @-ms-keyframes move-clouds-back { | ||
| from {background-position: 0;} | ||
| to {background-position:10000px 0;} | ||
| } | ||
|
|
||
| .stars, .twinkling, .clouds { | ||
| position:absolute; | ||
| top:0; | ||
| left:0; | ||
| right:0; | ||
| bottom:0; | ||
| width:100%; | ||
| height:100%; | ||
| display:block; | ||
| } | ||
|
|
||
| .stars { | ||
| background:#000 url(images/stars.png) repeat top center; | ||
| z-index:0; | ||
| } | ||
|
|
||
| .twinkling{ | ||
| background:transparent url(images/twinkling.png) repeat top center; | ||
| z-index:1; | ||
|
|
||
| -moz-animation:move-twink-back 200s linear infinite; | ||
| -ms-animation:move-twink-back 200s linear infinite; | ||
| -o-animation:move-twink-back 200s linear infinite; | ||
| -webkit-animation:move-twink-back 200s linear infinite; | ||
| animation:move-twink-back 200s linear infinite; | ||
| } | ||
|
|
||
| .clouds{ | ||
| background:transparent url(images/clouds3.png) repeat top center; | ||
| z-index:3; | ||
|
|
||
| -moz-animation:move-clouds-back 200s linear infinite; | ||
| -ms-animation:move-clouds-back 200s linear infinite; | ||
| -o-animation:move-clouds-back 200s linear infinite; | ||
| -webkit-animation:move-clouds-back 200s linear infinite; | ||
| animation:move-clouds-back 200s linear infinite; | ||
| } |
| @@ -0,0 +1,107 @@ | ||
| /* ============================================================================================== | ||
| This copyright notice must be kept untouched in the stylesheet at all times. | ||
| The original version of this stylesheet and the associated (x)html | ||
| is available at http://www.script-tutorials.com/night-sky-with-twinkling-stars/ | ||
| Copyright (c) Script Tutorials. All rights reserved. | ||
| This stylesheet and the associated (x)html may be modified in any way to fit your requirements. | ||
| ================================================================================================= */ | ||
| * { | ||
| margin: 0; | ||
| padding: 0; | ||
| } | ||
| header { | ||
| background-color:rgba(33, 33, 33, 0.9); | ||
| color:#ffffff; | ||
| display:block; | ||
| font: 14px/1.3 Arial,sans-serif; | ||
| height:50px; | ||
| position:relative; | ||
| z-index:5; | ||
| } | ||
| h2{ | ||
| margin-top: 30px; | ||
| text-align: center; | ||
| } | ||
| header h2{ | ||
| font-size: 22px; | ||
| margin: 0 auto; | ||
| padding: 10px 0; | ||
| width: 80%; | ||
| text-align: center; | ||
| } | ||
| header a, a:visited { | ||
| text-decoration:none; | ||
| color:#fcfcfc; | ||
| } | ||
|
|
||
| @keyframes move-twink-back { | ||
| from {background-position:0 0;} | ||
| to {background-position:-10000px 5000px;} | ||
| } | ||
| @-webkit-keyframes move-twink-back { | ||
| from {background-position:0 0;} | ||
| to {background-position:-10000px 5000px;} | ||
| } | ||
| @-moz-keyframes move-twink-back { | ||
| from {background-position:0 0;} | ||
| to {background-position:-10000px 5000px;} | ||
| } | ||
| @-ms-keyframes move-twink-back { | ||
| from {background-position:0 0;} | ||
| to {background-position:-10000px 5000px;} | ||
| } | ||
|
|
||
| @keyframes move-clouds-back { | ||
| from {background-position:0 0;} | ||
| to {background-position:10000px 0;} | ||
| } | ||
| @-webkit-keyframes move-clouds-back { | ||
| from {background-position:0 0;} | ||
| to {background-position:10000px 0;} | ||
| } | ||
| @-moz-keyframes move-clouds-back { | ||
| from {background-position:0 0;} | ||
| to {background-position:10000px 0;} | ||
| } | ||
| @-ms-keyframes move-clouds-back { | ||
| from {background-position: 0;} | ||
| to {background-position:10000px 0;} | ||
| } | ||
|
|
||
| .stars, .twinkling, .clouds { | ||
| position:absolute; | ||
| top:0; | ||
| left:0; | ||
| right:0; | ||
| bottom:0; | ||
| width:100%; | ||
| height:100%; | ||
| display:block; | ||
| } | ||
|
|
||
| .stars { | ||
| background:#000 url(images/stars2.png) repeat top center; | ||
| z-index:0; | ||
| } | ||
|
|
||
| .twinkling{ | ||
| background:transparent url(images/twinkling.png) repeat top center; | ||
| z-index:1; | ||
|
|
||
| -moz-animation:move-twink-back 200s linear infinite; | ||
| -ms-animation:move-twink-back 200s linear infinite; | ||
| -o-animation:move-twink-back 200s linear infinite; | ||
| -webkit-animation:move-twink-back 200s linear infinite; | ||
| animation:move-twink-back 200s linear infinite; | ||
| } | ||
|
|
||
| .clouds{ | ||
| background:transparent url(images/clouds4.png) repeat top center; | ||
| z-index:3; | ||
|
|
||
| -moz-animation:move-clouds-back 200s linear infinite; | ||
| -ms-animation:move-clouds-back 200s linear infinite; | ||
| -o-animation:move-clouds-back 200s linear infinite; | ||
| -webkit-animation:move-clouds-back 200s linear infinite; | ||
| animation:move-clouds-back 200s linear infinite; | ||
| } |
| @@ -0,0 +1,16 @@ | ||
| // Bordered & Pulled | ||
| // ------------------------- | ||
|
|
||
| .@{fa-css-prefix}-border { | ||
| padding: .2em .25em .15em; | ||
| border: solid .08em @fa-border-color; | ||
| border-radius: .1em; | ||
| } | ||
|
|
||
| .pull-right { float: right; } | ||
| .pull-left { float: left; } | ||
|
|
||
| .@{fa-css-prefix} { | ||
| &.pull-left { margin-right: .3em; } | ||
| &.pull-right { margin-left: .3em; } | ||
| } |
| @@ -0,0 +1,11 @@ | ||
| // Base Class Definition | ||
| // ------------------------- | ||
|
|
||
| .@{fa-css-prefix} { | ||
| display: inline-block; | ||
| font: normal normal normal 14px/1 FontAwesome; // shortening font declaration | ||
| font-size: inherit; // can't have font-size inherit on line above, so need to override | ||
| text-rendering: auto; // optimizelegibility throws things off #1094 | ||
| -webkit-font-smoothing: antialiased; | ||
| -moz-osx-font-smoothing: grayscale; | ||
| } |
| @@ -0,0 +1,6 @@ | ||
| // Fixed Width Icons | ||
| // ------------------------- | ||
| .@{fa-css-prefix}-fw { | ||
| width: (18em / 14); | ||
| text-align: center; | ||
| } |
| @@ -0,0 +1,17 @@ | ||
| /*! | ||
| * Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome | ||
| * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) | ||
| */ | ||
|
|
||
| @import "variables.less"; | ||
| @import "mixins.less"; | ||
| @import "path.less"; | ||
| @import "core.less"; | ||
| @import "larger.less"; | ||
| @import "fixed-width.less"; | ||
| @import "list.less"; | ||
| @import "bordered-pulled.less"; | ||
| @import "spinning.less"; | ||
| @import "rotated-flipped.less"; | ||
| @import "stacked.less"; | ||
| @import "icons.less"; |
| @@ -0,0 +1,13 @@ | ||
| // Icon Sizes | ||
| // ------------------------- | ||
|
|
||
| /* makes the font 33% larger relative to the icon container */ | ||
| .@{fa-css-prefix}-lg { | ||
| font-size: (4em / 3); | ||
| line-height: (3em / 4); | ||
| vertical-align: -15%; | ||
| } | ||
| .@{fa-css-prefix}-2x { font-size: 2em; } | ||
| .@{fa-css-prefix}-3x { font-size: 3em; } | ||
| .@{fa-css-prefix}-4x { font-size: 4em; } | ||
| .@{fa-css-prefix}-5x { font-size: 5em; } |
| @@ -0,0 +1,19 @@ | ||
| // List Icons | ||
| // ------------------------- | ||
|
|
||
| .@{fa-css-prefix}-ul { | ||
| padding-left: 0; | ||
| margin-left: @fa-li-width; | ||
| list-style-type: none; | ||
| > li { position: relative; } | ||
| } | ||
| .@{fa-css-prefix}-li { | ||
| position: absolute; | ||
| left: -@fa-li-width; | ||
| width: @fa-li-width; | ||
| top: (2em / 14); | ||
| text-align: center; | ||
| &.@{fa-css-prefix}-lg { | ||
| left: (-@fa-li-width + (4em / 14)); | ||
| } | ||
| } |
| @@ -0,0 +1,25 @@ | ||
| // Mixins | ||
| // -------------------------- | ||
|
|
||
| .fa-icon() { | ||
| display: inline-block; | ||
| font: normal normal normal 14px/1 FontAwesome; // shortening font declaration | ||
| font-size: inherit; // can't have font-size inherit on line above, so need to override | ||
| text-rendering: auto; // optimizelegibility throws things off #1094 | ||
| -webkit-font-smoothing: antialiased; | ||
| -moz-osx-font-smoothing: grayscale; | ||
| } | ||
|
|
||
| .fa-icon-rotate(@degrees, @rotation) { | ||
| filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=@rotation); | ||
| -webkit-transform: rotate(@degrees); | ||
| -ms-transform: rotate(@degrees); | ||
| transform: rotate(@degrees); | ||
| } | ||
|
|
||
| .fa-icon-flip(@horiz, @vert, @rotation) { | ||
| filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=@rotation, mirror=1); | ||
| -webkit-transform: scale(@horiz, @vert); | ||
| -ms-transform: scale(@horiz, @vert); | ||
| transform: scale(@horiz, @vert); | ||
| } |
| @@ -0,0 +1,14 @@ | ||
| /* FONT PATH | ||
| * -------------------------- */ | ||
|
|
||
| @font-face { | ||
| font-family: 'FontAwesome'; | ||
| src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}'); | ||
| src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'), | ||
| url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'), | ||
| url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'), | ||
| url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg'); | ||
| // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts | ||
| font-weight: normal; | ||
| font-style: normal; | ||
| } |
| @@ -0,0 +1,20 @@ | ||
| // Rotated & Flipped Icons | ||
| // ------------------------- | ||
|
|
||
| .@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } | ||
| .@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } | ||
| .@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } | ||
|
|
||
| .@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } | ||
| .@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } | ||
|
|
||
| // Hook for IE8-9 | ||
| // ------------------------- | ||
|
|
||
| :root .@{fa-css-prefix}-rotate-90, | ||
| :root .@{fa-css-prefix}-rotate-180, | ||
| :root .@{fa-css-prefix}-rotate-270, | ||
| :root .@{fa-css-prefix}-flip-horizontal, | ||
| :root .@{fa-css-prefix}-flip-vertical { | ||
| filter: none; | ||
| } |
| @@ -0,0 +1,29 @@ | ||
| // Spinning Icons | ||
| // -------------------------- | ||
|
|
||
| .@{fa-css-prefix}-spin { | ||
| -webkit-animation: fa-spin 2s infinite linear; | ||
| animation: fa-spin 2s infinite linear; | ||
| } | ||
|
|
||
| @-webkit-keyframes fa-spin { | ||
| 0% { | ||
| -webkit-transform: rotate(0deg); | ||
| transform: rotate(0deg); | ||
| } | ||
| 100% { | ||
| -webkit-transform: rotate(359deg); | ||
| transform: rotate(359deg); | ||
| } | ||
| } | ||
|
|
||
| @keyframes fa-spin { | ||
| 0% { | ||
| -webkit-transform: rotate(0deg); | ||
| transform: rotate(0deg); | ||
| } | ||
| 100% { | ||
| -webkit-transform: rotate(359deg); | ||
| transform: rotate(359deg); | ||
| } | ||
| } |
| @@ -0,0 +1,20 @@ | ||
| // Stacked Icons | ||
| // ------------------------- | ||
|
|
||
| .@{fa-css-prefix}-stack { | ||
| position: relative; | ||
| display: inline-block; | ||
| width: 2em; | ||
| height: 2em; | ||
| line-height: 2em; | ||
| vertical-align: middle; | ||
| } | ||
| .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { | ||
| position: absolute; | ||
| left: 0; | ||
| width: 100%; | ||
| text-align: center; | ||
| } | ||
| .@{fa-css-prefix}-stack-1x { line-height: inherit; } | ||
| .@{fa-css-prefix}-stack-2x { font-size: 2em; } | ||
| .@{fa-css-prefix}-inverse { color: @fa-inverse; } |
| @@ -0,0 +1,16 @@ | ||
| // Bordered & Pulled | ||
| // ------------------------- | ||
|
|
||
| .#{$fa-css-prefix}-border { | ||
| padding: .2em .25em .15em; | ||
| border: solid .08em $fa-border-color; | ||
| border-radius: .1em; | ||
| } | ||
|
|
||
| .pull-right { float: right; } | ||
| .pull-left { float: left; } | ||
|
|
||
| .#{$fa-css-prefix} { | ||
| &.pull-left { margin-right: .3em; } | ||
| &.pull-right { margin-left: .3em; } | ||
| } |
| @@ -0,0 +1,11 @@ | ||
| // Base Class Definition | ||
| // ------------------------- | ||
|
|
||
| .#{$fa-css-prefix} { | ||
| display: inline-block; | ||
| font: normal normal normal 14px/1 FontAwesome; // shortening font declaration | ||
| font-size: inherit; // can't have font-size inherit on line above, so need to override | ||
| text-rendering: auto; // optimizelegibility throws things off #1094 | ||
| -webkit-font-smoothing: antialiased; | ||
| -moz-osx-font-smoothing: grayscale; | ||
| } |
| @@ -0,0 +1,6 @@ | ||
| // Fixed Width Icons | ||
| // ------------------------- | ||
| .#{$fa-css-prefix}-fw { | ||
| width: (18em / 14); | ||
| text-align: center; | ||
| } |
| @@ -0,0 +1,13 @@ | ||
| // Icon Sizes | ||
| // ------------------------- | ||
|
|
||
| /* makes the font 33% larger relative to the icon container */ | ||
| .#{$fa-css-prefix}-lg { | ||
| font-size: (4em / 3); | ||
| line-height: (3em / 4); | ||
| vertical-align: -15%; | ||
| } | ||
| .#{$fa-css-prefix}-2x { font-size: 2em; } | ||
| .#{$fa-css-prefix}-3x { font-size: 3em; } | ||
| .#{$fa-css-prefix}-4x { font-size: 4em; } | ||
| .#{$fa-css-prefix}-5x { font-size: 5em; } |
| @@ -0,0 +1,19 @@ | ||
| // List Icons | ||
| // ------------------------- | ||
|
|
||
| .#{$fa-css-prefix}-ul { | ||
| padding-left: 0; | ||
| margin-left: $fa-li-width; | ||
| list-style-type: none; | ||
| > li { position: relative; } | ||
| } | ||
| .#{$fa-css-prefix}-li { | ||
| position: absolute; | ||
| left: -$fa-li-width; | ||
| width: $fa-li-width; | ||
| top: (2em / 14); | ||
| text-align: center; | ||
| &.#{$fa-css-prefix}-lg { | ||
| left: -$fa-li-width + (4em / 14); | ||
| } | ||
| } |
| @@ -0,0 +1,25 @@ | ||
| // Mixins | ||
| // -------------------------- | ||
|
|
||
| @mixin fa-icon() { | ||
| display: inline-block; | ||
| font: normal normal normal 14px/1 FontAwesome; // shortening font declaration | ||
| font-size: inherit; // can't have font-size inherit on line above, so need to override | ||
| text-rendering: auto; // optimizelegibility throws things off #1094 | ||
| -webkit-font-smoothing: antialiased; | ||
| -moz-osx-font-smoothing: grayscale; | ||
| } | ||
|
|
||
| @mixin fa-icon-rotate($degrees, $rotation) { | ||
| filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation}); | ||
| -webkit-transform: rotate($degrees); | ||
| -ms-transform: rotate($degrees); | ||
| transform: rotate($degrees); | ||
| } | ||
|
|
||
| @mixin fa-icon-flip($horiz, $vert, $rotation) { | ||
| filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation}); | ||
| -webkit-transform: scale($horiz, $vert); | ||
| -ms-transform: scale($horiz, $vert); | ||
| transform: scale($horiz, $vert); | ||
| } |
| @@ -0,0 +1,14 @@ | ||
| /* FONT PATH | ||
| * -------------------------- */ | ||
|
|
||
| @font-face { | ||
| font-family: 'FontAwesome'; | ||
| src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}'); | ||
| src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'), | ||
| url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'), | ||
| url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'), | ||
| url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg'); | ||
| //src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts | ||
| font-weight: normal; | ||
| font-style: normal; | ||
| } |
| @@ -0,0 +1,20 @@ | ||
| // Rotated & Flipped Icons | ||
| // ------------------------- | ||
|
|
||
| .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } | ||
| .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } | ||
| .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } | ||
|
|
||
| .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } | ||
| .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } | ||
|
|
||
| // Hook for IE8-9 | ||
| // ------------------------- | ||
|
|
||
| :root .#{$fa-css-prefix}-rotate-90, | ||
| :root .#{$fa-css-prefix}-rotate-180, | ||
| :root .#{$fa-css-prefix}-rotate-270, | ||
| :root .#{$fa-css-prefix}-flip-horizontal, | ||
| :root .#{$fa-css-prefix}-flip-vertical { | ||
| filter: none; | ||
| } |
| @@ -0,0 +1,29 @@ | ||
| // Spinning Icons | ||
| // -------------------------- | ||
|
|
||
| .#{$fa-css-prefix}-spin { | ||
| -webkit-animation: fa-spin 2s infinite linear; | ||
| animation: fa-spin 2s infinite linear; | ||
| } | ||
|
|
||
| @-webkit-keyframes fa-spin { | ||
| 0% { | ||
| -webkit-transform: rotate(0deg); | ||
| transform: rotate(0deg); | ||
| } | ||
| 100% { | ||
| -webkit-transform: rotate(359deg); | ||
| transform: rotate(359deg); | ||
| } | ||
| } | ||
|
|
||
| @keyframes fa-spin { | ||
| 0% { | ||
| -webkit-transform: rotate(0deg); | ||
| transform: rotate(0deg); | ||
| } | ||
| 100% { | ||
| -webkit-transform: rotate(359deg); | ||
| transform: rotate(359deg); | ||
| } | ||
| } |
| @@ -0,0 +1,20 @@ | ||
| // Stacked Icons | ||
| // ------------------------- | ||
|
|
||
| .#{$fa-css-prefix}-stack { | ||
| position: relative; | ||
| display: inline-block; | ||
| width: 2em; | ||
| height: 2em; | ||
| line-height: 2em; | ||
| vertical-align: middle; | ||
| } | ||
| .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { | ||
| position: absolute; | ||
| left: 0; | ||
| width: 100%; | ||
| text-align: center; | ||
| } | ||
| .#{$fa-css-prefix}-stack-1x { line-height: inherit; } | ||
| .#{$fa-css-prefix}-stack-2x { font-size: 2em; } | ||
| .#{$fa-css-prefix}-inverse { color: $fa-inverse; } |
| @@ -0,0 +1,17 @@ | ||
| /*! | ||
| * Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome | ||
| * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) | ||
| */ | ||
|
|
||
| @import "variables"; | ||
| @import "mixins"; | ||
| @import "path"; | ||
| @import "core"; | ||
| @import "larger"; | ||
| @import "fixed-width"; | ||
| @import "list"; | ||
| @import "bordered-pulled"; | ||
| @import "spinning"; | ||
| @import "rotated-flipped"; | ||
| @import "stacked"; | ||
| @import "icons"; |
| @@ -0,0 +1,253 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
|
|
||
| <head> | ||
|
|
||
| <meta charset="utf-8"> | ||
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||
| <meta name="description" content=""> | ||
| <meta name="author" content="<HackCU"> | ||
|
|
||
| <!--<title><HackCU></title>--> | ||
| <title>HackCU</title> | ||
| <link rel="icon" type="image/x-icon" href="img/HackCUicon.ico"> | ||
|
|
||
|
|
||
| <link href="css/bootstrap.min.css" rel="stylesheet"> | ||
| <link href="css/grayscale.css" rel="stylesheet"> | ||
|
|
||
| <!-- Custom Fonts --> | ||
| <link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"> | ||
| <link href="http://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic" rel="stylesheet" type="text/css"> | ||
| <link href="http://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css"> | ||
|
|
||
| <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> | ||
| <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> | ||
| <!--[if lt IE 9]> | ||
| <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> | ||
| <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script> | ||
| <![endif]--> | ||
|
|
||
| </head> | ||
|
|
||
| <body id="page-top" data-spy="scroll" data-target=".navbar-fixed-top"> | ||
|
|
||
|
|
||
| <!---------------- | ||
| Navigation | ||
| -----------------> | ||
| <nav class="navbar navbar-custom navbar-fixed-top" role="navigation"> | ||
| <div class="container"> | ||
| <div class="navbar-header"> | ||
| <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-main-collapse"> | ||
| <i class="fa fa-bars"></i> | ||
| </button> | ||
| <a class="navbar-brand page-scroll" href="#page-top"> | ||
| <i class="fa fa-code"></i> <span class="light">HackCU</span> | ||
| </a> | ||
| </div> | ||
|
|
||
| <!-- Collect the nav links, forms, and other content for toggling --> | ||
| <div class="collapse navbar-collapse navbar-right navbar-main-collapse"> | ||
| <ul class="nav navbar-nav"> | ||
| <!-- Hidden li included to remove active class from about link when scrolled up past about section --> | ||
| <li class="hidden"> | ||
| <a href="#page-top"></a> | ||
| </li> | ||
| <li> | ||
| <a class="page-scroll" href="#about">About</a> | ||
| </li> | ||
| <li> | ||
| <a class="page-scroll" href="#signup">Sign Up</a> | ||
| </li> | ||
| <li> | ||
| <a class="page-scroll" href="#sponsors">Sponsors</a> | ||
| </li> | ||
| <li> | ||
| <a class="page-scroll" href="#schedule">Schedule</a> | ||
| </li> | ||
| <li> | ||
| <a class="page-scroll" href="#contact">Contact</a> | ||
| </li> | ||
| </ul> | ||
| </div> | ||
| </div> | ||
| </nav> | ||
|
|
||
|
|
||
|
|
||
| <!---------------- | ||
| Intro | ||
| -----------------> | ||
|
|
||
| <header class="intro"> | ||
| <div class="intro-body"> | ||
| <div class="container"> | ||
| <div class="row"> | ||
| <div class="col-md-8 col-md-offset-2"> | ||
|
|
||
| <!-- <h1 class="brand-heading">HackCU</h1> --> | ||
| <p class="intro-text">HackCU Boulder, Colorado 2016</p> | ||
| <a href="#about" class="btn btn-circle page-scroll"> | ||
| <i class="fa fa-angle-double-down animated"></i> | ||
| </a> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| </header> | ||
|
|
||
|
|
||
|
|
||
| <!---------------- | ||
| About | ||
| -----------------> | ||
| <section id="about" class="container content-section text-left"> | ||
| <div class="row"> | ||
| <div class="col-lg-8 col-lg-offset-2"> | ||
| <h2>About</h2> | ||
|
|
||
| <p>HackCU 2016 is the yearly 36 hour hackathon at the Idea Forge on the | ||
| beautiful campus of the University of Colorado Boulder. HackCU brings together | ||
| people of all experience levels to give them an opportunity to express their | ||
| creativity, ingenuity, and determination to build something amazing. During | ||
| your time at HackCU, you will have access to tons of free food, coffee, | ||
| free swag from awesome companies, prizes, and of course... stickers. We have | ||
| a goal of bringing together 500 individuals, and we won't be able to reach it | ||
| without you.<br> | ||
|
|
||
| Wondering what a hackathon even is? If you are like me, even the word 'hack' | ||
| in hackathon can be intimidating. HackCU is for people of all experience levels, | ||
| from knowing nothing about a computer to people with 10 years of programming under | ||
| their belt. Anyone and everyone can attend, and we make sure you find your place. | ||
| </p> | ||
|
|
||
| <center><iframe class="embed-responsive-item" src="https://www.youtube.com/watch?v=0uaquGZKx_0"></iframe></center> | ||
| </div> | ||
| </div> | ||
| </section> | ||
|
|
||
|
|
||
|
|
||
| <!---------------- | ||
| Sign Up | ||
| -----------------> | ||
| <section id="signup" class="content-section text-center"> | ||
| <div class="download-section"> | ||
| <div class="container"> | ||
| <div class="col-lg-8 col-lg-offset-2"> | ||
| <h2>2016 Hackathon Sign Up</h2> | ||
| <p>Coming soon...</p> | ||
| <a href="" class="btn btn-default btn-lg">Sign Up - Eventbrite</a> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| </section> | ||
|
|
||
|
|
||
|
|
||
| <!---------------- | ||
| Sponsors | ||
| -----------------> | ||
| <section id="sponsors" class="container content-section text-center"> | ||
| <div class="row"> | ||
| <div class="col-lg-8 col-lg-offset-2"> | ||
| <h2>Sponsors</h2> | ||
| <p>*add block with sponsor logos*</p> | ||
| </div> | ||
| </div> | ||
| </section> | ||
|
|
||
|
|
||
|
|
||
| <!---------------- | ||
| Schedule | ||
| -----------------> | ||
| </section> | ||
| <section id="schedule" class="content-section text-center"> | ||
| <div class="download-section"> | ||
| <div class="container"> | ||
| <div class="col-lg-8 col-lg-offset-2"> | ||
| <h2>Schedule</h2> | ||
| <p>add image of schedule</p> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| </section> | ||
|
|
||
|
|
||
|
|
||
| <!---------------- | ||
| Contact | ||
| -----------------> | ||
| <section id="contact" class="container content-section text-center"> | ||
| <div class="row"> | ||
| <div class="col-lg-8 col-lg-offset-2"> | ||
| <h2>Contact HackCU</h2> | ||
| <p>Feel free to email us for any questions, comments, or just to say hello!</p> | ||
| <p><a href="mailto:">Email Us</a> | ||
| </p> | ||
| <ul class="list-inline banner-social-buttons"> | ||
| <li> | ||
| <a href="https://twitter.com/HackCU" class="btn btn-default btn-lg"><i class="fa fa-twitter fa-fw"></i> <span class="network-name">Twitter</span></a> | ||
| </li> | ||
| <li> | ||
| <a href="https://facebook.com/letsHackCU" class="btn btn-default btn-lg"><i class="fa fa-facebook fa-fw"></i> <span class="network-name">Facebook</span></a> | ||
| </li> | ||
| </ul> | ||
| </div> | ||
| </div> | ||
| </section> | ||
|
|
||
|
|
||
|
|
||
| <!-------------------------- | ||
| Map of Idea Forge | ||
| ---------------------------> | ||
| <div id="map"> | ||
| <center><iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3056.2881335022053!2d-105.26558168494364!3d40.00201108868159!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x876bedb575700325%3A0xa2ea7393cf7c4c6d!2sIdea+Forge%2C+Boulder%2C+CO+80305!5e0!3m2!1sen!2sus!4v1446952580555" width="90%" height="400" frameborder="0" style="border:0" allowfullscreen></iframe> | ||
| </center> | ||
| </div> | ||
|
|
||
|
|
||
|
|
||
| <!---------------- | ||
| Footer | ||
| -----------------> | ||
| <footer> | ||
| <div class="container footer-section text-center"> | ||
| <p>Copyright © HackCU 2015</p> | ||
| </div> | ||
| </footer> | ||
|
|
||
|
|
||
|
|
||
| <!-- jQuery --> | ||
| <script src="js/jquery.js"></script> | ||
|
|
||
| <!-- Bootstrap Core JavaScript --> | ||
| <script src="js/bootstrap.min.js"></script> | ||
|
|
||
| <!-- Plugin JavaScript --> | ||
| <script src="js/jquery.easing.min.js"></script> | ||
|
|
||
| <!-- Google Maps API Key - Use your own API key to enable the map feature. More information on the Google Maps API can be found at https://developers.google.com/maps/ --> | ||
| <!--<script type="text/javascript"> | ||
| var map; | ||
| function initMap() { | ||
| map = new google.maps.Map(document.getElementById('map'), { | ||
| center: {lat: 40.002007, lng: -105.263393}, | ||
| zoom: 8 | ||
| }); | ||
| } | ||
| src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBa4Wp6BTcpyint_Vral03t4FsHHJayNEs=false"></script> --> | ||
|
|
||
|
|
||
| <!-- Custom Theme JavaScript --> | ||
| <script src="js/grayscale.js"></script> | ||
|
|
||
| </body> | ||
|
|
||
| </html> |
| @@ -0,0 +1,178 @@ | ||
| /*! | ||
| * Start Bootstrap - Grayscale Bootstrap Theme (http://startbootstrap.com) | ||
| * Code licensed under the Apache License v2.0. | ||
| * For details, see http://www.apache.org/licenses/LICENSE-2.0. | ||
| */ | ||
|
|
||
| // jQuery to collapse the navbar on scroll | ||
| $(window).scroll(function() { | ||
| if ($(".navbar").offset().top > 50) { | ||
| $(".navbar-fixed-top").addClass("top-nav-collapse"); | ||
| } else { | ||
| $(".navbar-fixed-top").removeClass("top-nav-collapse"); | ||
| } | ||
| }); | ||
|
|
||
| // jQuery for page scrolling feature - requires jQuery Easing plugin | ||
| $(function() { | ||
| $('a.page-scroll').bind('click', function(event) { | ||
| var $anchor = $(this); | ||
| $('html, body').stop().animate({ | ||
| scrollTop: $($anchor.attr('href')).offset().top | ||
| }, 1500, 'easeInOutExpo'); | ||
| event.preventDefault(); | ||
| }); | ||
| }); | ||
|
|
||
| // Closes the Responsive Menu on Menu Item Click | ||
| $('.navbar-collapse ul li a').click(function() { | ||
| $('.navbar-toggle:visible').click(); | ||
| }); | ||
|
|
||
| // Google Maps Scripts | ||
| // When the window has finished loading create our google map below | ||
| google.maps.event.addDomListener(window, 'load', init); | ||
|
|
||
| function init() { | ||
| // Basic options for a simple Google Map | ||
| // For more options see: https://developers.google.com/maps/documentation/javascript/reference#MapOptions | ||
| var mapOptions = { | ||
| // How zoomed in you want the map to start at (always required) | ||
| zoom: 15, | ||
|
|
||
| // The latitude and longitude to center the map (always required) | ||
| center: new google.maps.LatLng(40.6700, -73.9400), // New York | ||
|
|
||
| // Disables the default Google Maps UI components | ||
| disableDefaultUI: true, | ||
| scrollwheel: false, | ||
| draggable: false, | ||
|
|
||
| // How you would like to style the map. | ||
| // This is where you would paste any style found on Snazzy Maps. | ||
| styles: [{ | ||
| "featureType": "water", | ||
| "elementType": "geometry", | ||
| "stylers": [{ | ||
| "color": "#000000" | ||
| }, { | ||
| "lightness": 17 | ||
| }] | ||
| }, { | ||
| "featureType": "landscape", | ||
| "elementType": "geometry", | ||
| "stylers": [{ | ||
| "color": "#000000" | ||
| }, { | ||
| "lightness": 20 | ||
| }] | ||
| }, { | ||
| "featureType": "road.highway", | ||
| "elementType": "geometry.fill", | ||
| "stylers": [{ | ||
| "color": "#000000" | ||
| }, { | ||
| "lightness": 17 | ||
| }] | ||
| }, { | ||
| "featureType": "road.highway", | ||
| "elementType": "geometry.stroke", | ||
| "stylers": [{ | ||
| "color": "#000000" | ||
| }, { | ||
| "lightness": 29 | ||
| }, { | ||
| "weight": 0.2 | ||
| }] | ||
| }, { | ||
| "featureType": "road.arterial", | ||
| "elementType": "geometry", | ||
| "stylers": [{ | ||
| "color": "#000000" | ||
| }, { | ||
| "lightness": 18 | ||
| }] | ||
| }, { | ||
| "featureType": "road.local", | ||
| "elementType": "geometry", | ||
| "stylers": [{ | ||
| "color": "#000000" | ||
| }, { | ||
| "lightness": 16 | ||
| }] | ||
| }, { | ||
| "featureType": "poi", | ||
| "elementType": "geometry", | ||
| "stylers": [{ | ||
| "color": "#000000" | ||
| }, { | ||
| "lightness": 21 | ||
| }] | ||
| }, { | ||
| "elementType": "labels.text.stroke", | ||
| "stylers": [{ | ||
| "visibility": "on" | ||
| }, { | ||
| "color": "#000000" | ||
| }, { | ||
| "lightness": 16 | ||
| }] | ||
| }, { | ||
| "elementType": "labels.text.fill", | ||
| "stylers": [{ | ||
| "saturation": 36 | ||
| }, { | ||
| "color": "#000000" | ||
| }, { | ||
| "lightness": 40 | ||
| }] | ||
| }, { | ||
| "elementType": "labels.icon", | ||
| "stylers": [{ | ||
| "visibility": "off" | ||
| }] | ||
| }, { | ||
| "featureType": "transit", | ||
| "elementType": "geometry", | ||
| "stylers": [{ | ||
| "color": "#000000" | ||
| }, { | ||
| "lightness": 19 | ||
| }] | ||
| }, { | ||
| "featureType": "administrative", | ||
| "elementType": "geometry.fill", | ||
| "stylers": [{ | ||
| "color": "#000000" | ||
| }, { | ||
| "lightness": 20 | ||
| }] | ||
| }, { | ||
| "featureType": "administrative", | ||
| "elementType": "geometry.stroke", | ||
| "stylers": [{ | ||
| "color": "#000000" | ||
| }, { | ||
| "lightness": 17 | ||
| }, { | ||
| "weight": 1.2 | ||
| }] | ||
| }] | ||
| }; | ||
|
|
||
| // Get the HTML DOM element that will contain your map | ||
| // We are using a div with id="map" seen below in the <body> | ||
| var mapElement = document.getElementById('map'); | ||
|
|
||
| // Create the Google Map using out element and options defined above | ||
| var map = new google.maps.Map(mapElement, mapOptions); | ||
|
|
||
| // Custom Map Marker Icon - Customize the map-marker.png file to customize your icon | ||
| var image = 'img/map-marker.png'; | ||
| var myLatLng = new google.maps.LatLng(40.6700, -73.9400); | ||
| var beachMarker = new google.maps.Marker({ | ||
| position: myLatLng, | ||
| map: map, | ||
| icon: image | ||
| }); | ||
| } |
| @@ -0,0 +1,341 @@ | ||
| @import "variables.less"; | ||
| @import "mixins.less"; | ||
|
|
||
| body { | ||
| width: 100%; | ||
| height: 100%; | ||
| font-family: "Lora","Helvetica Neue",Helvetica,Arial,sans-serif; | ||
| color: white; | ||
| background-color: black; | ||
| } | ||
|
|
||
| html { | ||
| width: 100%; | ||
| height: 100%; | ||
| } | ||
|
|
||
| h1, | ||
| h2, | ||
| h3, | ||
| h4, | ||
| h5, | ||
| h6 { | ||
| margin: 0 0 35px; | ||
| text-transform: uppercase; | ||
| font-family: "Montserrat","Helvetica Neue",Helvetica,Arial,sans-serif; | ||
| font-weight: 700; | ||
| letter-spacing: 1px; | ||
| } | ||
|
|
||
| p { | ||
| margin: 0 0 25px; | ||
| font-size: 18px; | ||
| line-height: 1.5; | ||
| @media(min-width:768px) { | ||
| margin: 0 0 35px; | ||
| font-size: 20px; | ||
| line-height: 1.6; | ||
| } | ||
| } | ||
|
|
||
| a { | ||
| color: @primary; | ||
| -webkit-transition: all .2s ease-in-out; | ||
| -moz-transition: all .2s ease-in-out; | ||
| transition: all .2s ease-in-out; | ||
| &:hover, | ||
| &:focus { | ||
| text-decoration: none; | ||
| color: darken(@primary,20%); | ||
| } | ||
| } | ||
|
|
||
| .light { | ||
| font-weight: 400; | ||
| } | ||
|
|
||
| .navbar-custom { | ||
| margin-bottom: 0; | ||
| border-bottom: 1px solid fade(white, 30%); | ||
| text-transform: uppercase; | ||
| font-family: "Montserrat","Helvetica Neue",Helvetica,Arial,sans-serif; | ||
| background-color: black; | ||
| .navbar-brand { | ||
| font-weight: 700; | ||
| &:focus { | ||
| outline: none; | ||
| } | ||
| .navbar-toggle { | ||
| padding: 4px 6px; | ||
| font-size: 16px; | ||
| color: white; | ||
| &:focus, | ||
| &:active { | ||
| outline: none; | ||
| } | ||
| } | ||
| } | ||
| a { | ||
| color: white; | ||
| } | ||
| .nav { | ||
| li { | ||
| a { | ||
| -webkit-transition: background .3s ease-in-out; | ||
| -moz-transition: background .3s ease-in-out; | ||
| transition: background .3s ease-in-out; | ||
| &:hover { | ||
| color: fade(white, 80%); | ||
| outline: none; | ||
| background-color: transparent; | ||
| } | ||
| &:focus, | ||
| &:active { | ||
| outline: none; | ||
| background-color: transparent; | ||
| } | ||
| } | ||
| &.active { | ||
| outline: none; | ||
| a { | ||
| background-color: fade(white, 30%); | ||
| &:hover { | ||
| color: white; | ||
| } | ||
| } | ||
| } | ||
| } | ||
| } | ||
| @media(min-width:768px) { | ||
| padding: 20px 0; | ||
| border-bottom: none; | ||
| letter-spacing: 1px; | ||
| background: transparent; | ||
| -webkit-transition: background .5s ease-in-out,padding .5s ease-in-out; | ||
| -moz-transition: background .5s ease-in-out,padding .5s ease-in-out; | ||
| transition: background .5s ease-in-out,padding .5s ease-in-out; | ||
| &.top-nav-collapse { | ||
| padding: 0; | ||
| background: black; | ||
| border-bottom: 1px solid fade(white, 30%); | ||
| } | ||
| } | ||
| } | ||
|
|
||
| .intro { | ||
| display: table; | ||
| width: 100%; | ||
| height: auto; | ||
| padding: 100px 0; | ||
| text-align: center; | ||
| color: white; | ||
| background: url(../img/intro-bg.jpg) no-repeat bottom center scroll; | ||
| background-color: black; | ||
| -webkit-background-size: cover; | ||
| -moz-background-size: cover; | ||
| background-size: cover; | ||
| -o-background-size: cover; | ||
| .intro-body { | ||
| display: table-cell; | ||
| vertical-align: middle; | ||
| .brand-heading { | ||
| font-size: 40px; | ||
| } | ||
| .intro-text { | ||
| font-size: 18px; | ||
| } | ||
| } | ||
| @media(min-width:768px) { | ||
| height: 100%; | ||
| padding: 0; | ||
| .intro-body { | ||
| .brand-heading { | ||
| font-size: 100px; | ||
| } | ||
| .intro-text { | ||
| font-size: 26px; | ||
| } | ||
| } | ||
| } | ||
| } | ||
|
|
||
| .btn-circle { | ||
| width: 70px; | ||
| height: 70px; | ||
| margin-top: 15px; | ||
| padding: 7px 16px; | ||
| border: 2px solid white; | ||
| border-radius: 100% !important; | ||
| font-size: 40px; | ||
| color: white; | ||
| background: transparent; | ||
| -webkit-transition: background .3s ease-in-out; | ||
| -moz-transition: background .3s ease-in-out; | ||
| transition: background .3s ease-in-out; | ||
| &:hover, | ||
| &:focus { | ||
| outline: none; | ||
| color: white; | ||
| background: fade(white, 10%); | ||
| } | ||
| i.animated { | ||
| -webkit-transition-property: -webkit-transform; | ||
| -webkit-transition-duration: 1s; | ||
| -moz-transition-property: -moz-transform; | ||
| -moz-transition-duration: 1s; | ||
| } | ||
| &:hover { | ||
| i.animated { | ||
| -webkit-animation-name: pulse; | ||
| -moz-animation-name: pulse; | ||
| -webkit-animation-duration: 1.5s; | ||
| -moz-animation-duration: 1.5s; | ||
| -webkit-animation-iteration-count: infinite; | ||
| -moz-animation-iteration-count: infinite; | ||
| -webkit-animation-timing-function: linear; | ||
| -moz-animation-timing-function: linear; | ||
| } | ||
| } | ||
| } | ||
|
|
||
| @-webkit-keyframes pulse { | ||
| 0%{ | ||
| -webkit-transform: scale(1); | ||
| transform: scale(1); | ||
| } | ||
|
|
||
| 50% { | ||
| -webkit-transform: scale(1.2); | ||
| transform: scale(1.2); | ||
| } | ||
|
|
||
| 100% { | ||
| -webkit-transform: scale(1); | ||
| transform: scale(1); | ||
| } | ||
| } | ||
|
|
||
| @-moz-keyframes pulse { | ||
| 0 { | ||
| -moz-transform: scale(1); | ||
| transform: scale(1); | ||
| } | ||
|
|
||
| 50% { | ||
| -moz-transform: scale(1.2); | ||
| transform: scale(1.2); | ||
| } | ||
|
|
||
| 100% { | ||
| -moz-transform: scale(1); | ||
| transform: scale(1); | ||
| } | ||
| } | ||
|
|
||
| .content-section { | ||
| padding-top: 100px; | ||
| } | ||
|
|
||
| .download-section { | ||
| width: 100%; | ||
| padding: 50px 0; | ||
| color: white; | ||
| background: url(../img/downloads-bg.jpg) no-repeat center center scroll; | ||
| background-color: black; | ||
| -webkit-background-size: cover; | ||
| -moz-background-size: cover; | ||
| background-size: cover; | ||
| -o-background-size: cover; | ||
| } | ||
|
|
||
| #map { | ||
| width: 100%; | ||
| height: 200px; | ||
| margin-top: 100px; | ||
| } | ||
|
|
||
| @media(min-width:767px) { | ||
| .content-section { | ||
| padding-top: 250px; | ||
| } | ||
|
|
||
| .download-section { | ||
| padding: 100px 0; | ||
| } | ||
|
|
||
| #map { | ||
| height: 400px; | ||
| margin-top: 250px; | ||
| } | ||
| } | ||
|
|
||
| .btn { | ||
| text-transform: uppercase; | ||
| font-family: "Montserrat","Helvetica Neue",Helvetica,Arial,sans-serif; | ||
| font-weight: 400; | ||
| -webkit-transition: all .3s ease-in-out; | ||
| -moz-transition: all .3s ease-in-out; | ||
| transition: all .3s ease-in-out; | ||
| border-radius: 0; | ||
| } | ||
|
|
||
| .btn-default { | ||
| border: 1px solid @primary; | ||
| color: @primary; | ||
| background-color: transparent; | ||
| &:hover, | ||
| &:focus { | ||
| border: 1px solid @primary; | ||
| outline: none; | ||
| color: black; | ||
| background-color: @primary; | ||
| } | ||
| } | ||
|
|
||
| ul.banner-social-buttons { | ||
| margin-top: 0; | ||
| @media(max-width:1199px) { | ||
| margin-top: 15px; | ||
| } | ||
| @media(max-width:767px) { | ||
| li { | ||
| display: block; | ||
| margin-bottom: 20px; | ||
| padding: 0; | ||
| &:last-child { | ||
| margin-bottom: 0; | ||
| } | ||
| } | ||
| } | ||
| } | ||
|
|
||
| footer { | ||
| padding: 50px 0; | ||
| p { | ||
| margin: 0; | ||
| } | ||
| } | ||
|
|
||
| ::-moz-selection { | ||
| text-shadow: none; | ||
| background: #fcfcfc; | ||
| background: fade(white, 20%); | ||
| } | ||
|
|
||
| ::selection { | ||
| text-shadow: none; | ||
| background: #fcfcfc; | ||
| background: fade(white, 20%); | ||
| } | ||
|
|
||
| img::selection { | ||
| background: transparent; | ||
| } | ||
|
|
||
| img::-moz-selection { | ||
| background: transparent; | ||
| } | ||
|
|
||
| body { | ||
| webkit-tap-highlight-color: fade(white, 20%); | ||
| } |
| @@ -0,0 +1 @@ | ||
| // Mixins |
| @@ -0,0 +1,3 @@ | ||
| // Variables | ||
|
|
||
| @primary: #42DCA3; |
| @@ -0,0 +1,15 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
| <head> | ||
| <title>Stars</title> | ||
| <link href="css/style4.css" rel="stylesheet" type="text/css"> | ||
| </head> | ||
| <body> | ||
| <div class="stars"></div> | ||
| <div class="twinkling"></div> | ||
| <div class="clouds"></div> | ||
| <script src="http://code.jquery.com/jquery-1.11.0.min.js"></script> | ||
|
|
||
| </body> | ||
| </html> | ||
|
|