index.scss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. #banners {
  2. margin: -20px -10px 0 -10px;
  3. min-height: 420px;
  4. max-height: 300px;
  5. --swiper-navigation-color: #fff;
  6. --swiper-pagination-color: #fff;
  7. .swiper-wrapper {
  8. min-height: inherit;
  9. max-height: inherit;
  10. .swiper-slide {
  11. min-height: inherit;
  12. max-height: inherit;
  13. border-bottom: 1px solid #bbb;
  14. background-size: cover;
  15. background-repeat: no-repeat;
  16. .swiper-cover {
  17. min-height: inherit;
  18. max-height: inherit;
  19. color: #F5F5F5;
  20. display: flex;
  21. align-items: center;
  22. justify-content: center;
  23. padding: 5% 12%;
  24. .title {
  25. font-size: 2em;
  26. font-weight: bold;
  27. }
  28. .subtitle {
  29. font-size: 1.2em;
  30. font-weight: 500;
  31. margin-bottom: 10px;
  32. }
  33. img {
  34. width: 100%;
  35. max-width: 220px;
  36. }
  37. }
  38. }
  39. }
  40. }
  41. // 공지사항
  42. #notice,
  43. #review {
  44. a {
  45. text-decoration: none;
  46. &:hover,
  47. &:focus {
  48. text-decoration: underline;
  49. }
  50. }
  51. table {
  52. tr {
  53. td {
  54. span {
  55. font-size: 14px;
  56. color: #000;
  57. padding-right: 5px;
  58. }
  59. a {
  60. font-size: 13px;
  61. }
  62. small {
  63. font-size: 13px;
  64. color: #bbbbbb;
  65. }
  66. }
  67. }
  68. }
  69. }
  70. // 쿠팡 광고
  71. #coupang {
  72. a {
  73. display: block;
  74. }
  75. img {
  76. max-width: 100%;
  77. height: auto;
  78. }
  79. }