_intro.sass 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. .intro
  2. position: relative
  3. display: flex
  4. width: 900px
  5. max-width: 75%
  6. height: 100%
  7. flex-direction: column
  8. justify-content: center
  9. margin: 0 auto
  10. @media (max-width: 1180px)
  11. max-width: 100%
  12. &--banner
  13. position: relative
  14. height: 475px
  15. &::before
  16. content: ""
  17. position: absolute
  18. bottom: 20px
  19. left: -15px
  20. right: 0
  21. height: 2px
  22. background-color: $muted-gray
  23. &::after
  24. content: ""
  25. position: absolute
  26. bottom: 18px
  27. left: 0
  28. width: 30px
  29. height: 4px
  30. background-color: $highlight
  31. h1
  32. position: relative
  33. font-size: 68px
  34. font-weight: 900
  35. line-height: 1
  36. z-index: 1
  37. button
  38. position: relative
  39. padding: 5px 17px 5px 12px
  40. font-weight: 700
  41. text-transform: uppercase
  42. background-color: transparent
  43. border: none
  44. .btn-background
  45. position: absolute
  46. top: 0
  47. left: 23px
  48. right: 0
  49. height: 100%
  50. background-color: $highlight
  51. z-index: -1
  52. transition: left .2s ease-in-out
  53. &:hover
  54. .btn-background
  55. left: 0
  56. &:focus
  57. outline: none
  58. svg
  59. position: relative
  60. left: 5px
  61. width: 15px
  62. fill: $white
  63. img
  64. position: absolute
  65. bottom: 21px
  66. right: -12px
  67. &--options
  68. display: flex
  69. justify-content: space-between
  70. margin: 0
  71. padding: 0
  72. list-style: none
  73. & > a
  74. max-width: 250px
  75. text-decoration: none
  76. color: $muted-gray
  77. transition: color .2s ease-in-out
  78. &:hover
  79. color: $white
  80. h3
  81. font-size: 16px
  82. text-transform: uppercase
  83. p
  84. margin-bottom: 0
  85. @media (max-width: 900px)
  86. .intro
  87. &--banner
  88. height: 380px
  89. h1
  90. font-size: 55px
  91. img
  92. width: 430px
  93. &--options
  94. & > a
  95. margin-right: 30px
  96. &:last-child
  97. margin-right: 0
  98. @media (max-width: 767px)
  99. .intro
  100. &--banner
  101. height: 305px
  102. h1
  103. font-size: 44px
  104. img
  105. width: 330px
  106. &--options
  107. display: block
  108. & > a
  109. display: block
  110. max-width: 100%
  111. margin: 0 0 30px 0
  112. &:last-child
  113. margin-bottom: 0
  114. @media (max-width: 600px)
  115. .intro
  116. &--banner
  117. height: 360px
  118. h1
  119. font-size: 55px
  120. img
  121. display: none
  122. @media (max-width: 600px) and (max-height: 750px)
  123. .intro
  124. &--banner
  125. height: auto
  126. &::before,
  127. &::after
  128. display: none
  129. h1
  130. margin-top: 0
  131. &--options
  132. display: none