app.scss 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317
  1. // Font
  2. @import "../common/font.scss";
  3. // Variables
  4. @import '../variables';
  5. // Bootstrap
  6. @import 'bootstrap/scss/bootstrap';
  7. // Jquery-ui
  8. @import 'jquery-ui/themes/base/all.css';
  9. @import 'jquery-ui/themes/base/datepicker.css';
  10. // Rateyo
  11. @import 'rateyo/lib/cjs/rateyo.min.css';
  12. // Common
  13. @import '../common/reset';
  14. // Swiper slide
  15. @import 'swiper/swiper-bundle.min.css';
  16. @import 'swiper/swiper.min.css';
  17. // photoswipe.com
  18. @import 'photoswipe/dist/photoswipe.css';
  19. // 메인 페이지
  20. //@import 'main/index.scss';
  21. // 회원 정보 상세
  22. @import 'account/profile.scss';
  23. // 비밀번호 재설정, 변경 처리
  24. @import 'account/certify.scss';
  25. // 회원 정보 수정
  26. @import 'account/modify.scss';
  27. // 비밀번호 변경, 정기적 변경
  28. @import 'account/passwords.scss';
  29. // 회원탈퇴
  30. @import 'account/leave.scss';
  31. // 로그인 기록
  32. @import 'account/loginLog.scss';
  33. // 작성 게시글
  34. @import 'account/post.scss';
  35. // 작성 댓글
  36. @import 'account/comment.scss';
  37. // 게시판 목록, 사진/동영상, 공지사항, 검색
  38. @import 'board/index.scss';
  39. // 게시판 작성/수정
  40. @import 'board/write.scss';
  41. // 최근 게시글
  42. @import 'board/latest.scss';
  43. // 게시글 보기
  44. @import 'board/view.scss';
  45. // 댓글
  46. @import 'board/comment.scss';
  47. #app {
  48. display: flex;
  49. flex-direction: column;
  50. height: 100vh;
  51. }
  52. #header {
  53. position: relative;
  54. background: #001620;
  55. border-bottom: 1px solid #2c2c2c;
  56. .navbar {
  57. .navbar-brand {
  58. color: #d2d2d2;
  59. font-size: 1.2rem;
  60. font-family: 'Open-Sans-Extrabold';
  61. font-weight: bolder;
  62. }
  63. .navbar-toggler {
  64. color: #d6d6d6;
  65. }
  66. #navbarSearch {
  67. margin-top: 7px;
  68. form {
  69. display: flex;
  70. flex-wrap: nowrap;
  71. input[type="search"] {
  72. flex-shrink: 1;
  73. }
  74. button[type="submit"] {
  75. flex-shrink: 0;
  76. flex-basis: auto;
  77. }
  78. }
  79. }
  80. }
  81. #navbarMenu {
  82. max-width: 60%;
  83. .offcanvas-header {
  84. .offcanvas-title {
  85. font-size: 1.2rem;
  86. font-family: 'Open-Sans-Extrabold';
  87. font-weight: bolder;
  88. }
  89. &:nth-of-type(2) {
  90. padding-top: 0;
  91. .dropdown {
  92. height: inherit;
  93. .dropdown-item {
  94. color: #333;
  95. &:active {
  96. background: none;
  97. }
  98. }
  99. }
  100. }
  101. }
  102. .offcanvas-body {
  103. padding-top: 0;
  104. p {
  105. margin-bottom: 0;
  106. a {
  107. display: block;
  108. padding: 8px 0;
  109. line-height: 24px;
  110. &:hover,
  111. &:focus {
  112. color: #ffffff;
  113. }
  114. }
  115. }
  116. ul {
  117. margin-bottom: 15px;
  118. li {
  119. &.active {
  120. a {
  121. font-weight: bold;
  122. color: #b1b1b1;
  123. }
  124. }
  125. a {
  126. line-height: 24px;
  127. padding-left: 0;
  128. padding-right: 0;
  129. &:hover,
  130. &:focus {
  131. color: #ffffff;
  132. }
  133. }
  134. }
  135. }
  136. .coupang {
  137. padding: 15px 0 15px 0;
  138. height: auto;
  139. margin-top: auto;
  140. small {
  141. font-size: 11px;
  142. color: #bbbbbb;
  143. }
  144. }
  145. table {
  146. width: 100%;
  147. caption {
  148. caption-side: top;
  149. padding: 0 0;
  150. }
  151. tr {
  152. th {
  153. text-align: left;
  154. padding: 3px 0;
  155. font-weight: inherit;
  156. }
  157. td {
  158. text-align: right;
  159. padding: 3px 0;
  160. }
  161. }
  162. }
  163. address {
  164. color: #8d8d8d;
  165. font-size: 0.7rem;
  166. line-height: 3rem;
  167. text-align: center;
  168. margin-bottom: 0;
  169. }
  170. }
  171. }
  172. }
  173. #main {
  174. flex-grow: 1;
  175. background: #000;
  176. // 내 정보 네비
  177. .navigate {
  178. ul {
  179. white-space: nowrap;
  180. overflow-x: auto;
  181. overflow-y: hidden;
  182. flex-wrap: inherit !important;
  183. scrollbar-width: none;
  184. &::-webkit-scrollbar {
  185. display: none;
  186. }
  187. li {
  188. a.active {
  189. color: #fff;
  190. }
  191. }
  192. }
  193. }
  194. }
  195. #footer {
  196. border-top: 1px solid #2c2c2c;
  197. background: #070707;
  198. > div {
  199. ul {
  200. padding: 0;
  201. margin: 0;
  202. list-style: none;
  203. li {
  204. display: inline-block;
  205. vertical-align: middle;
  206. }
  207. @include media-breakpoint-down(sm) {
  208. & li {
  209. display: block;
  210. margin-bottom: 9px;
  211. &.divider {
  212. display: none;
  213. }
  214. }
  215. }
  216. }
  217. }
  218. a {
  219. img {
  220. width: 100%;
  221. max-width: 120px;
  222. }
  223. }
  224. address {
  225. color: #839900;
  226. font-size: 0.7rem;
  227. margin-bottom: 0;
  228. }
  229. }
  230. // 문서
  231. #document {
  232. padding: calc(var(--bs-gutter-x) * .5);
  233. h6 {
  234. font-weight: bold;
  235. margin-bottom: 0;
  236. }
  237. blockquote {
  238. text-align: justify;
  239. img {
  240. max-width: 100%;
  241. height: 100%;
  242. }
  243. }
  244. }
  245. // 게시판 에디터 색상
  246. .mce-content-body {
  247. background: #1f1f1f;
  248. color: #c1c1c1;
  249. }