homepage.less 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. #homepage {
  2. a:not(.btn) {
  3. color: @brand;
  4. border-bottom: 1px solid @text-normal;
  5. &:hover {
  6. text-decoration: none;
  7. color: @text-normal;
  8. }
  9. }
  10. .hero {
  11. padding-top: 100px;
  12. padding-bottom: 25px;
  13. color: @brand;
  14. position: relative;
  15. .hero-image {
  16. width: 220px;
  17. height: 170px;
  18. margin-left: auto;
  19. margin-right: auto;
  20. position: relative;
  21. img {
  22. position: absolute;
  23. }
  24. .sky {
  25. width: 170px;
  26. left: 25px;
  27. top: 25px;
  28. }
  29. .cloud {
  30. .fly-fade();
  31. width: 80px;
  32. &.cloud-1 {
  33. top: 55px;
  34. left: -40px;
  35. opacity: 0;
  36. .animation-delay(3.5s);
  37. }
  38. &.cloud-2 {
  39. top: 45px;
  40. left: -40px;
  41. opacity: 0;
  42. }
  43. }
  44. .ship {
  45. .skid();
  46. width: 160px;
  47. bottom: 50px;
  48. left: 18px;
  49. }
  50. .water {
  51. width: 170px;
  52. bottom: 40px;
  53. left: 25px;
  54. }
  55. }
  56. h1 {
  57. padding-bottom: 50px;
  58. }
  59. .more-info-text {
  60. .bob();
  61. cursor: pointer;
  62. margin-top: 75px;
  63. position: absolute;
  64. width: 100%;
  65. bottom: 25px;
  66. left: 0px;
  67. .text {
  68. font-size: 16px;
  69. text-transform: uppercase;
  70. letter-spacing: 2px;
  71. font-weight: 700;
  72. }
  73. .icon {
  74. font-size: 20px;
  75. }
  76. }
  77. }
  78. .about-wrapper {
  79. background-color: #eef5f9b8;
  80. .about {
  81. padding-top: 75px;
  82. padding-bottom: 50px;
  83. p {
  84. max-width: 800px;
  85. margin-left: auto;
  86. margin-right: auto;
  87. }
  88. }
  89. .features {
  90. padding-top: 25px;
  91. padding-bottom: 100px;
  92. .feature {
  93. .icon {
  94. background-color: @brand;
  95. color: @accent-white;
  96. width: 75px;
  97. height: 75px;
  98. margin-left: auto;
  99. margin-right: auto;
  100. margin-bottom: 25px;
  101. border-radius: 50%;
  102. font-size: 35px;
  103. line-height: 75px;
  104. text-align: center;
  105. }
  106. }
  107. }
  108. }
  109. .setup {
  110. padding-top: 75px;
  111. .step {
  112. margin-top: 75px;
  113. margin-bottom: 75px;
  114. padding-left: 240px;
  115. position: relative;
  116. .step-image {
  117. position: absolute;
  118. left: 0px;
  119. top: 0px;
  120. width: 140px;
  121. img {
  122. width: 100%;
  123. }
  124. }
  125. }
  126. }
  127. .pep-talk {
  128. padding-top: 50px;
  129. padding-bottom: 100px;
  130. p {
  131. max-width: 800px;
  132. margin-left: auto;
  133. margin-right: auto;
  134. }
  135. a {
  136. border-bottom: none;
  137. }
  138. }
  139. &.uninitialized {
  140. height: 100%;
  141. .hero, .about, .features, .setup, .pep-talk {
  142. opacity: 0;
  143. }
  144. }
  145. @media (max-width: 991px) {
  146. .setup {
  147. .step {
  148. padding-left: 0px;
  149. .step-image {
  150. display: none;
  151. }
  152. }
  153. }
  154. }
  155. }