main.css 2.3 KB

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