review.scss 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. // 평점·후기 index
  2. #movieReviewIndex {
  3. h5 {
  4. margin-bottom: 0;
  5. small {
  6. color: #ff0000;
  7. font-style: normal;
  8. font-weight: normal;
  9. }
  10. }
  11. }
  12. // 평점·후기 show
  13. #movieReviewShow {
  14. // 포스터 확대 보기 버튼
  15. #btnMainImgEnlargement {
  16. i {
  17. vertical-align: sub;
  18. }
  19. }
  20. table {
  21. --bs-table-bg: none;
  22. tr {
  23. th {
  24. color: #8f8f8f;
  25. }
  26. td {
  27. color: #f1f1f1;
  28. }
  29. }
  30. }
  31. #movieReviewList {
  32. h5 {
  33. margin-bottom: 0;
  34. small {
  35. color: #ff0000;
  36. font-style: normal;
  37. font-weight: normal;
  38. }
  39. }
  40. }
  41. }
  42. // 평점·후기 목록
  43. #movieReviewList {
  44. padding: 0;
  45. table {
  46. tr {
  47. td {
  48. a {
  49. display: inherit;
  50. text-decoration: none;
  51. &:hover,
  52. &:focus {
  53. text-decoration: underline;
  54. }
  55. img {
  56. clip-path: inset(6px 0 5px 0);
  57. object-fit: cover;
  58. height: auto;
  59. width: 100%;
  60. }
  61. }
  62. .movie-title {
  63. color: #7ee14e;
  64. }
  65. }
  66. }
  67. }
  68. // 목록 표시
  69. dl {
  70. margin-bottom: 5px;
  71. dt {
  72. margin-bottom: 2px;
  73. var {
  74. display: inline-block;
  75. padding-left: 0;
  76. }
  77. sub {
  78. font-size: 15px;
  79. font-weight: 500;
  80. margin-right: 5px;
  81. }
  82. span {
  83. font-weight: 500;
  84. vertical-align: bottom;
  85. }
  86. }
  87. dd {
  88. margin: 0;
  89. p {
  90. overflow: hidden;
  91. word-break: break-word;
  92. margin: 0;
  93. }
  94. ul {
  95. list-style: none;
  96. padding-left: 0;
  97. margin-bottom: 0;
  98. li {
  99. display: inline-block;
  100. margin: 0 10px 0 0;
  101. &:first-child {
  102. margin: 0;
  103. }
  104. button {
  105. em {
  106. font-style: normal;
  107. }
  108. }
  109. }
  110. }
  111. }
  112. }
  113. // 관리
  114. .dropdown {
  115. .dropdown-toggle {
  116. padding: 0;text-decoration: none;
  117. &:hover,
  118. &:focus {text-decoration: underline;}
  119. }
  120. .dropdown-menu {
  121. background: #f1f1f1;
  122. min-width: auto;
  123. margin-left: 20px;
  124. border-radius: 1px;
  125. border-color: #cfcfcf #999 #666 #999;
  126. border-width: 1px 1px 1px 1px;
  127. border-style: solid;
  128. box-shadow: 2px 0 2px rgb(0 0 0 / 10%), 0 4px 4px rgb(0 0 0 / 20%), -2px 2px 2px rgb(0 0 0 / 10%);
  129. -moz-box-shadow: 2px 0 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.2), -2px 2px 2px rgba(0, 0, 0, 0.1);
  130. -webkit-box-shadow: 2px 0 2px rgb(0 0 0 / 10%), 0 4px 4px rgb(0 0 0 / 20%), -2px 2px 2px rgb(0 0 0 / 10%);
  131. .dropdown-item {
  132. color: #000;
  133. line-height: initial;padding: 0.4rem 1.2rem;cursor: pointer;
  134. &:hover,
  135. &:focus,
  136. &:active {background: #eaeaea;color: #000;}
  137. }
  138. }
  139. }
  140. }
  141. // 내 평점·후기 등록/수정
  142. #movieReviewWriteModal {
  143. #rateYo {
  144. dt {
  145. h4 {
  146. font-weight: bold;
  147. color: #f1f1f1;
  148. text-align: center;
  149. padding: 5px 0;
  150. }
  151. }
  152. dd {
  153. #reviewRate {
  154. margin: 0;
  155. padding: 0;
  156. }
  157. #reviewValue {
  158. font-size: 17px;
  159. font-weight: bold;
  160. color: #f1f1f1;
  161. }
  162. }
  163. }
  164. }