| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230 |
- #app {
- display: flex;
- flex-direction: column;
- height: 100vh;
- }
- #header {
- position: relative;
- background: #001620;
- border-bottom: 1px solid #2c2c2c;
- .navbar {
- .navbar-brand {
- color: #d2d2d2;
- font-size: 1.2rem;
- font-family: 'Open-Sans-Extrabold';
- font-weight: bolder;
- }
- .navbar-toggler,
- .navbar-toggler-icon {
- color: #a8aa2f;
- }
- #navbarSearch {
- margin-top: 7px;
- form {
- display: flex;
- flex-wrap: nowrap;
- input[type="search"] {
- flex-shrink: 1;
- }
- button[type="submit"] {
- flex-shrink: 0;
- flex-basis: auto;
- }
- }
- }
- }
- #navbarMenu {
- max-width: 290px;
- .offcanvas-header {
- .offcanvas-title {
- font-size: 1.2rem;
- font-family: 'Open-Sans-Extrabold';
- font-weight: bolder;
- }
- &:nth-of-type(2) {
- padding-top: 0;
- .dropdown {
- height: inherit;
- .dropdown-item {
- color: #333;
- &:active {
- background: none;
- }
- }
- }
- }
- }
- .offcanvas-body {
- padding-top: 0;
- > nav {
- margin-bottom: 30px;
- .nav {
- .nav-link {
- padding-left: 0;
- padding-right: 0;
- padding-bottom: 2px;
- }
- }
- }
- .ad-coupang {
- height: auto;
- margin-top: auto;
- line-height: 0;
- small {
- font-size: 11px;
- color: #bbbbbb;
- line-height: 15px;
- margin-top: 10px;
- display: block;
- }
- }
- table {
- width: 100%;
- caption {
- caption-side: top;
- padding: 0 0;
- }
- tr {
- th {
- text-align: left;
- padding: 3px 0;
- font-weight: inherit;
- }
- td {
- text-align: right;
- padding: 3px 0;
- }
- }
- }
- address {
- color: #8d8d8d;
- font-size: 0.7rem;
- line-height: 3rem;
- text-align: center;
- margin-bottom: 0;
- }
- }
- }
- }
- #main {
- flex-grow: 1;
- background: #000;
- padding: 10px 0;
- // 내 정보 네비
- .navigate {
- ul {
- white-space: nowrap;
- overflow-x: auto;
- overflow-y: hidden;
- flex-wrap: inherit !important;
- scrollbar-width: none;
- &::-webkit-scrollbar {
- display: none;
- }
- li {
- a.active {
- color: #fff;
- }
- }
- }
- }
- }
- #footer {
- border-top: 1px solid #2c2c2c;
- background: #070707;
- > div {
- ul {
- padding: 0;
- margin: 0;
- list-style: none;
- li {
- display: inline-block;
- vertical-align: middle;
- }
- @media (max-width: 576px) {
- & li {
- display: block;
- margin-bottom: 9px;
- &.divider {
- display: none;
- }
- }
- }
- }
- }
- a {
- img {
- width: 100%;
- max-width: 120px;
- }
- }
- address {
- color: #839900;
- font-size: 0.7rem;
- margin-bottom: 0;
- }
- }
- // 게시판 에디터 색상
- .mce-content-body {
- background: #1f1f1f;
- color: #c1c1c1;
- }
- div.pagination {
- width: 100%;
- > ul {
- width: inherit;
- display: flex;
- flex-direction: row;
- flex-wrap: nowrap;
- justify-content: space-between;
- > li {
- width: inherit;
- text-align: center;
- > a {
- height: 100%;
- padding-left: 0;
- padding-right: 0;
- }
- }
- }
- }
|