main.scss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. #main {
  2. padding: 0;
  3. }
  4. // 영화 배너
  5. #banners {
  6. position: relative;
  7. min-height: 420px;
  8. max-height: 300px;
  9. --swiper-navigation-color: #fff;
  10. --swiper-pagination-color: #fff;
  11. .swiper-wrapper {
  12. min-height: inherit;
  13. max-height: inherit;
  14. .swiper-slide {
  15. min-height: inherit;
  16. max-height: inherit;
  17. border-bottom: 1px solid #333;
  18. background-size: cover;
  19. background-repeat: no-repeat;
  20. .swiper-cover {
  21. min-height: inherit;
  22. max-height: inherit;
  23. color: #F5F5F5;
  24. display: flex;
  25. align-items: center;
  26. justify-content: center;
  27. padding: 5% 12%;
  28. .title {
  29. font-size: 2em;
  30. font-weight: bold;
  31. }
  32. .subtitle {
  33. font-size: 1.2em;
  34. font-weight: 500;
  35. margin-bottom: 10px;
  36. }
  37. img {
  38. width: 100%;
  39. max-width: 220px;
  40. }
  41. }
  42. }
  43. }
  44. }
  45. // 공지사항, 평점.후기
  46. #notice,
  47. #review {
  48. h5 {
  49. margin-bottom: 0;
  50. }
  51. a {
  52. text-decoration: none;
  53. &:hover,
  54. &:focus {
  55. text-decoration: underline;
  56. }
  57. }
  58. table {
  59. tr {
  60. td {
  61. span {
  62. font-size: 14px;
  63. color: #a5a5a5;
  64. padding-right: 5px;
  65. }
  66. a {
  67. font-size: 13px;
  68. &:hover,
  69. &:focus {
  70. text-decoration: underline;
  71. }
  72. }
  73. small {
  74. font-size: 13px;
  75. color: #bbbbbb;
  76. }
  77. }
  78. }
  79. }
  80. }
  81. // 인기 영화
  82. #trending {
  83. .ratio-2x3 {
  84. --bs-aspect-ratio: 150%;
  85. img {
  86. object-fit: cover;
  87. border: 1px solid #4d0404;
  88. &:hover,
  89. &:focus {
  90. -o-transform: scale(1.02);
  91. -webkit-transform: scale(1.02); /* 크롬, 사파리 */
  92. -moz-transform: scale(1.02); /* 파이어폭스 */
  93. -ms-transform: scale(1.02); /* IE */
  94. transform: scale(1.02); /* 오페라 */
  95. }
  96. }
  97. }
  98. var {
  99. padding: 1px 0;
  100. }
  101. }
  102. // 인기 영화 정보
  103. #trendingModal {
  104. .modal-body {
  105. dl {
  106. dt {
  107. color: #fff;
  108. font-weight: bold;
  109. margin-bottom: 15px;
  110. }
  111. dd {
  112. color: #f1f1f1;
  113. }
  114. }
  115. }
  116. }