123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- #homepage {
- a:not(.btn) {
- color: @brand;
- border-bottom: 1px solid @text-normal;
- &:hover {
- text-decoration: none;
- color: @text-normal;
- }
- }
- .hero {
- padding-top: 100px;
- padding-bottom: 25px;
- color: @brand;
- position: relative;
- .hero-image {
- width: 220px;
- height: 170px;
- margin-left: auto;
- margin-right: auto;
- position: relative;
- img {
- position: absolute;
- }
- .sky {
- width: 170px;
- left: 25px;
- top: 25px;
- }
- .cloud {
- .fly-fade();
- width: 80px;
- &.cloud-1 {
- top: 55px;
- left: -40px;
- opacity: 0;
- .animation-delay(3.5s);
- }
- &.cloud-2 {
- top: 45px;
- left: -40px;
- opacity: 0;
- }
- }
- .ship {
- .skid();
- width: 160px;
- bottom: 50px;
- left: 18px;
- }
- .water {
- width: 170px;
- bottom: 40px;
- left: 25px;
- }
- }
- h1 {
- padding-bottom: 50px;
- }
- .more-info-text {
- .bob();
- cursor: pointer;
- margin-top: 75px;
- position: absolute;
- width: 100%;
- bottom: 25px;
- left: 0px;
- .text {
- font-size: 16px;
- text-transform: uppercase;
- letter-spacing: 2px;
- font-weight: 700;
- }
- .icon {
- font-size: 20px;
- }
- }
- }
- .about-wrapper {
- background-color: #eef5f9b8;
- .about {
- padding-top: 75px;
- padding-bottom: 50px;
- p {
- max-width: 800px;
- margin-left: auto;
- margin-right: auto;
- }
- }
- .features {
- padding-top: 25px;
- padding-bottom: 100px;
- .feature {
- .icon {
- background-color: @brand;
- color: @accent-white;
- width: 75px;
- height: 75px;
- margin-left: auto;
- margin-right: auto;
- margin-bottom: 25px;
- border-radius: 50%;
- font-size: 35px;
- line-height: 75px;
- text-align: center;
- }
- }
- }
- }
- .setup {
- padding-top: 75px;
- .step {
- margin-top: 75px;
- margin-bottom: 75px;
- padding-left: 240px;
- position: relative;
- .step-image {
- position: absolute;
- left: 0px;
- top: 0px;
- width: 140px;
- img {
- width: 100%;
- }
- }
- }
- }
- .pep-talk {
- padding-top: 50px;
- padding-bottom: 100px;
- p {
- max-width: 800px;
- margin-left: auto;
- margin-right: auto;
- }
- a {
- border-bottom: none;
- }
- }
- &.uninitialized {
- height: 100%;
- .hero, .about, .features, .setup, .pep-talk {
- opacity: 0;
- }
- }
- @media (max-width: 991px) {
- .setup {
- .step {
- padding-left: 0px;
- .step-image {
- display: none;
- }
- }
- }
- }
- }
|