main.scss 2.8 KB

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