_grid.sass 810 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. .l-viewport
  2. position: relative
  3. width: 100%
  4. height: 100vh
  5. box-shadow: 0 0 45px 5px rgba(0,0,0,.85)
  6. overflow: hidden
  7. .l-wrapper
  8. position: relative
  9. width: 1440px
  10. max-width: 90%
  11. height: 100%
  12. margin: 0 auto
  13. .l-side-nav
  14. position: absolute
  15. left: 0
  16. display: flex
  17. height: 100%
  18. align-items: center
  19. // placed on layout class due to firefox bug
  20. &::before
  21. content: ""
  22. position: absolute
  23. top: 50%
  24. left: 0
  25. transform: translateY(-50%)
  26. width: 2px
  27. height: 70%
  28. max-height: 750px
  29. background-color: #555
  30. opacity: .35
  31. z-index: 10
  32. @media (max-width: 1180px)
  33. display: none
  34. .l-main-content
  35. position: relative
  36. width: 100%
  37. height: 100%
  38. margin: 0
  39. padding: 0
  40. list-style: none
  41. .l-section
  42. position: absolute
  43. width: 100%
  44. height: 100%