123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429 |
- // Variables
- @primary: #28c3ab;
- @dark: #000;
- @light: #fff;
- // LESS
- body {
- width: 100%;
- height: 100%;
- font-family: "Lora","Helvetica Neue",Helvetica,Arial,sans-serif;
- color: @light;
- background-color: @dark;
- }
- html {
- width: 100%;
- height: 100%;
- }
- // Typhography
- 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:767px) {
- p {
- 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;
- }
- a:hover,
- a:focus {
- text-decoration: none;
- color: darken(@primary, 20%);
- }
- .light {
- font-weight: 400;
- }
- // Navigation
- .navbar {
- margin-bottom: 0;
- border-bottom: 1px solid rgba(255,255,255,0.3);
- text-transform: uppercase;
- font-family: "Montserrat","Helvetica Neue",Helvetica,Arial,sans-serif;
- background-color: @dark;
- }
- .navbar-brand {
- font-weight: 700;
- }
- .navbar-brand:focus {
- outline: none;
- }
- .navbar-custom a {
- color: @light;
- }
- .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,
- .navbar-custom .nav li a:focus,
- .navbar-custom .nav li.active {
- outline: none;
- background-color: rgba(255,255,255,0.2);
- }
- .navbar-toggle {
- padding: 4px 6px;
- font-size: 16px;
- color: @light;
- }
- .navbar-toggle:focus,
- .navbar-toggle:active {
- outline: none;
- }
- @media(min-width:767px) {
- .navbar {
- 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-color: @dark;
- }
- .navbar-custom.top-nav-collapse {
- border-bottom: 1px solid rgba(255,255,255,0.3);
- }
- }
- // Full Page Image Intro Section
- .features-section, .outro, .intro {
- display: table;
- width: 100%;
- height: 100%;
- padding: 100px 0;
- text-align: center;
- color: #fff;
- }
- .intro {
- background: url(images/header.jpg) no-repeat bottom center scroll;
- background-color: #000;
- -webkit-background-size: cover;
- -moz-background-size: cover;
- background-size: cover;
- -o-background-size: cover;
- }
- .features-section {
- background: url('images/bgtr.svg') top right no-repeat,
- url('images/bgbl.svg') bottom left no-repeat,
- url('images/bgbl.svg') bottom left no-repeat,
- url('images/overlay.png'),
- linear-gradient(45deg, #b39c68, #a56365, #412e4c);
- }
- .outro {
- background: url('images/bgtr.svg') top right no-repeat,
- url('images/bgbl.svg') bottom left no-repeat,
- url('images/overlay.png'),
- linear-gradient(45deg, #384955, #655361, #85505f);
- }
- .intro-body {
- display: table-cell;
- vertical-align: middle;
- }
- .brand-heading {
- font-size: 40px;
- }
- .intro-text {
- font-size: 18px;
- }
- @media(min-width:767px) {
- .intro {
- height: 100%;
- padding: 0;
- }
- .brand-heading {
- font-size: 100px;
- }
- .intro-text {
- font-size: 25px;
- }
- }
- .btn-circle {
- width: 70px;
- height: 70px;
- margin-top: 15px;
- padding: 7px 16px;
- border: 2px solid @light;
- border-radius: 35px;
- font-size: 40px;
- color: @light;
- background: transparent;
- -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: none;
- color: @light;
- background: rgba(255,255,255,0.1);
- }
- .page-scroll .btn-circle i.animated {
- -webkit-transition-property: -webkit-transform;
- -webkit-transition-duration: 1s;
- -moz-transition-property: -moz-transform;
- -moz-transition-duration: 1s;
- }
- .page-scroll .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 Sections
- .content-section {
- padding-top: 100px;
- }
- .donate-section {
- width: 100%;
- padding: 50px 0;
- color: @light;
- background-color: @dark;
- }
- .donate-section p.bitcoin-header {
- margin: 0 0 5px;
- }
- @media(min-width:767px) {
- .content-section {
- padding-top: 150px;
- padding-bottom: 50px;
- }
- .donate-section {
- padding: 100px 0;
- }
- }
- // Buttons
- .btn {
- text-transform: uppercase;
- font-family: FontAwesome;
- 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 @primary;
- color: @primary;
- background-color: transparent;
- }
- .btn-default:hover,
- .btn-default:focus {
- border: 1px solid @primary;
- outline: none;
- color: @dark;
- background-color: @primary;
- }
- .btn-huge {
- padding: 25px;
- font-size: 26px;
- }
- .banner-social-buttons {
- position: absolute;
- bottom: 4em;
- left: 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;
- }
- }
- // Highlight Color Customization
- ::-moz-selection {
- text-shadow: none;
- background: #fcfcfc;
- background: rgba(255,255,255,0.2);
- }
- ::selection {
- text-shadow: none;
- background: #fcfcfc;
- background: rgba(255,255,255,0.2);
- }
- img::selection {
- background: transparent;
- }
- img::-moz-selection {
- background: transparent;
- }
- body {
- webkit-tap-highlight-color: rgba(255,255,255,0.2);
- }
- ul.contact,
- ul.integration,
- ul.screencasts,
- ul.features {
- text-align: left;
- font-size: 19px;
- }
- .feature-icon {
- display: inline-block;
- position: relative;
- padding-bottom: 5em;
- margin-bottom: 2.75em;
- cursor: default;
- color: #fff;
- }
- .feature-icon .fa {
- display: inline-block;
- width: 2em;
- height: 2em;
- font-size: 4em;
- border-radius: 100%;
- box-shadow: inset 0 0 0 1px white;
- color: white;
- line-height: 2.1em;
- }
- .feature-icon:before {
- content: '';
- background: white;
- position: absolute;
- bottom: 0;
- left: 50%;
- margin-left: -0.325em;
- width: 0.65em;
- height: 0.65em;
- display: block;
- border-radius: 100%;
- }
- .feature-icon:after {
- content: '';
- position: absolute;
- left: 50%;
- bottom: 0.65em;
- width: 1px;
- height: 4.35em;
- background: white;
- margin-left: -0.5px;
- }
|