_header.sass 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. .header
  2. position: absolute
  3. top: 0
  4. left: 0
  5. display: flex
  6. width: 100%
  7. height: 70px
  8. align-items: center
  9. justify-content: space-between
  10. z-index: 10
  11. &--logo
  12. display: flex
  13. align-items: center
  14. text-decoration: none
  15. color: $white
  16. p
  17. margin: 0 0 0 10px
  18. font-size: 16px
  19. font-weight: 700
  20. text-transform: uppercase
  21. &--nav-toggle
  22. display: flex
  23. width: 50px
  24. height: 50px
  25. flex-direction: column
  26. align-items: center
  27. justify-content: center
  28. cursor: pointer
  29. span,
  30. &::before,
  31. &::after
  32. content: ""
  33. position: relative
  34. width: 16px
  35. height: 2px
  36. background-color: $white
  37. &::before
  38. bottom: 5px
  39. width: 23px
  40. &::after
  41. top: 5px
  42. width: 23px
  43. &--cta
  44. position: absolute
  45. top: 50%
  46. left: 50%
  47. transform: translate(-50%, -50%)
  48. padding: 0 20px
  49. line-height: 30px
  50. text-decoration: none
  51. color: $white
  52. font-weight: 700
  53. text-transform: uppercase
  54. background-color: $highlight
  55. border: none
  56. opacity: 0
  57. visibility: hidden
  58. transition: opacity .4s ease-in-out, visibility 0s .4s
  59. &:focus
  60. outline: none
  61. &.is-active
  62. opacity: 1
  63. visibility: visible
  64. transition: opacity .4s ease-in-out .4s
  65. @media (max-width: 767px)
  66. display: none