index.scss 908 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. .story {
  2. position: absolute;
  3. inset: 0;
  4. background: url("@/assets/images/bg-min.jpg") no-repeat center / cover;
  5. &-back {
  6. position: fixed;
  7. top: 34px;
  8. left: 34px;
  9. width: 76px;
  10. height: 76px;
  11. background: url("@/assets/images/back.png") no-repeat center / contain;
  12. z-index: 10;
  13. }
  14. &-menu {
  15. position: absolute;
  16. top: 0;
  17. left: 0;
  18. bottom: 0;
  19. width: 658px;
  20. background: url("./images/menu-bg-min.png") no-repeat center / cover;
  21. ul {
  22. margin: 24px 0 0 16px;
  23. display: flex;
  24. flex-direction: column;
  25. gap: 10px;
  26. width: 538px;
  27. li {
  28. padding: 0 60px;
  29. height: 86px;
  30. line-height: 86px;
  31. font-size: 36px;
  32. color: white;
  33. background: rgba(61, 1, 12, 0.6);
  34. }
  35. }
  36. }
  37. &-title {
  38. margin: 152px 0 0 35px;
  39. width: 603px;
  40. }
  41. }