main.scss 2.8 KB

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