layout.scss 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  1. #app {
  2. display: flex;
  3. flex-direction: column;
  4. height: 100vh;
  5. }
  6. #header {
  7. position: relative;
  8. background: #012a4f;
  9. border-bottom: 1px solid #2c2c2c;
  10. margin-bottom: 10px;
  11. .navbar {
  12. .navbar-brand {
  13. color: #d3d629;
  14. font-size: 1.2rem;
  15. font-family: 'Open-Sans-Extrabold';
  16. font-weight: bolder;
  17. }
  18. .navbar-toggler,
  19. .navbar-toggler-icon {
  20. color: #a8aa2f;
  21. }
  22. #navbarSearch {
  23. margin-top: 7px;
  24. form {
  25. display: flex;
  26. flex-wrap: nowrap;
  27. input[type="search"] {
  28. flex-shrink: 1;
  29. }
  30. button[type="submit"] {
  31. flex-shrink: 0;
  32. flex-basis: auto;
  33. }
  34. }
  35. }
  36. }
  37. #navbarMenu {
  38. max-width: 290px;
  39. background: #0f0f0f;
  40. color: #b7b8ba;
  41. .offcanvas-header {
  42. .offcanvas-title {
  43. font-size: 1.2rem;
  44. font-family: 'Open-Sans-Extrabold';
  45. font-weight: bolder;
  46. }
  47. &:nth-of-type(2) {
  48. padding-top: 0;
  49. .dropdown {
  50. height: inherit;
  51. .dropdown-item {
  52. color: #333;
  53. &:active {
  54. background: none;
  55. }
  56. }
  57. }
  58. }
  59. }
  60. .offcanvas-body {
  61. padding-top: 0;
  62. > nav {
  63. margin-bottom: 30px;
  64. .nav {
  65. .nav-link {
  66. padding-left: 0;
  67. padding-right: 0;
  68. padding-bottom: 2px;
  69. }
  70. }
  71. }
  72. .ad-coupang {
  73. height: auto;
  74. margin-top: auto;
  75. line-height: 0;
  76. small {
  77. font-size: 11px;
  78. color: #b7b8ba;
  79. line-height: 15px;
  80. margin-top: 10px;
  81. display: block;
  82. }
  83. }
  84. table {
  85. width: 100%;
  86. caption {
  87. caption-side: top;
  88. padding: 0 0;
  89. color: #b7b8ba;
  90. }
  91. tr {
  92. th {
  93. text-align: left;
  94. padding: 3px 0;
  95. font-weight: inherit;
  96. }
  97. td {
  98. text-align: right;
  99. padding: 3px 0;
  100. }
  101. }
  102. }
  103. address {
  104. color: #8d8d8d;
  105. font-size: 0.7rem;
  106. line-height: 3rem;
  107. text-align: center;
  108. margin-bottom: 0;
  109. }
  110. }
  111. }
  112. }
  113. #main {
  114. flex-grow: 1;
  115. background: #0f0f0f;
  116. padding: 10px 0;
  117. // 내 정보 네비
  118. .navigate {
  119. ul {
  120. white-space: nowrap;
  121. overflow-x: auto;
  122. overflow-y: hidden;
  123. flex-wrap: inherit !important;
  124. scrollbar-width: none;
  125. &::-webkit-scrollbar {
  126. display: none;
  127. }
  128. li {
  129. a.active {
  130. color: #fff;
  131. }
  132. }
  133. }
  134. }
  135. }
  136. footer {
  137. background: #0f0f0f;
  138. text-align: center;
  139. border-top: 1px solid #3d3d3d;
  140. padding: 15px 16px 0 20px;
  141. small {
  142. font-size: 12px;
  143. color: #bbbbbb;
  144. line-height: 15px;
  145. margin-top: 10px;
  146. display: block;
  147. }
  148. address {
  149. color: #839900;
  150. font-size: 0.7rem;
  151. margin-bottom: 0;
  152. text-align: center;
  153. }
  154. }
  155. // 게시판 에디터 색상
  156. .mce-content-body {
  157. background: #1f1f1f;
  158. color: #c1c1c1;
  159. }
  160. div.pagination {
  161. width: 100%;
  162. > ul {
  163. width: inherit;
  164. display: flex;
  165. flex-direction: row;
  166. flex-wrap: nowrap;
  167. justify-content: space-between;
  168. > li {
  169. width: inherit;
  170. text-align: center;
  171. > a {
  172. height: 100%;
  173. padding-left: 0;
  174. padding-right: 0;
  175. }
  176. }
  177. }
  178. }