메뉴 여닫기
환경 설정 메뉴 여닫기
개인 메뉴 여닫기
로그인하지 않음
지금 편집한다면 당신의 IP 주소가 공개될 수 있습니다.
잔글편집 요약 없음
편집 요약 없음
362번째 줄: 362번째 줄:
}
}


.citizen-section::after{
#citizen-section::after{
   content: "";
   content: "";
   display: block !important;
   display: block !important;
   clear: both !important;
   clear: both !important;
}
}
.citizen-overflow-wrapper {
.citizen-section {
   width: 400px;
   width: 400px;
   float: right;
   float: right;
373번째 줄: 373번째 줄:
}
}
@media screen and (max-width: 768px) {
@media screen and (max-width: 768px) {
   .citizen-overflow-wrapper {
   .citizen-section {
       box-sizing: border-box;  
       box-sizing: border-box;  
       float: none;
       float: none;

2025년 6월 16일 (월) 07:30 판

@import "bootstrap-grid.css";

@font-face {
  font-family: 'Pretendard-Regular';
  src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
}

* {
  font-family: 'Pretendard-Regular' !important;
}

.citizen-body {
  font-size: 0.8rem;
}



.main-title {
  text-align: center;
}

.main-title p:first-child {
  margin: 80px 0 0 0;
}

.main-title h1 {
  font-size: 3.75rem;
  margin: -10px 0 -5px 0;
}

.main-title p:last-child {
  margin: 0 0 -30px 0;
}

.main-title p:last-child em {
  color: rgba(100, 180, 255, 1);
  text-emphasis-style: none;
}



.main-box {
  border: 3px, solid, var(--color-surface-2);
  padding: 0 20px;
}

.main-link {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background-color: #FFF;
  margin: 20px 0;
  padding: 5px 0;
}



.main-banner-box {
  border-bottom: 0 !important;
  border-radius: 10px 10px 0 0 !important;
  margin-bottom: 0 !important;
  padding-left: 20px;
}

.main-banner-image {
  height: 100px;
  color: #FFF;
  text-shadow: -3px 0px #000, 0px 3px #000, 3px 0px #000, 0px -3px #000;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: left;
  align-items: center;
  font-weight: bold;
  z-index: 2;
  background-size: cover;
  background-position: center;
  transition: all 0.2s ease;
  box-sizing: border-box;
  border-radius: 0 0 10px 10px;
  cursor: pointer;
  padding-left: 20px;
  margin-bottom: 10px;
}

.main-banner-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -2;
  transition: transform 0.2s ease;
}

.main-banner-image:hover::after {
  transform: scale(1.1);
}

.main-banner-image::after {
  background-image: url('./images/main/category15.jpg');
}



.main-title-box {
  min-height: 38px;
  background-color: var(--color-surface-2);
  border: 1px solid #BBB;
  border-radius: 10px;
  color: #202122;
  font-weight: bold;
  margin-bottom: 10px;
  padding-top: 8px;
}

.main-title-box a {
  text-decoration-line: none;
  color: #000;
  margin-left: 20px;
}

.main-title-box span {
  margin-left: 20px;
}

.main-title-box p {
  margin: 0 0 0 20px;
}

.blank .main-title-box p {
  margin-bottom: 10px;
}

.main-subtitle-box {
  min-height: 38px;
  background-color: oklch(0.96 0.01 262.29);
  border: 1px solid #CCC;
  border-radius: 10px;
  color: #202122;
  font-weight: bold;
  margin: 10px 20px;
  padding: 8px 10px 0px 20px;
}

.main-subtitle-box:hover {
  background-color: #FFF;
  transition: all 0.2s ease;
}

.main-category {
  margin-bottom: 10px;
}

.main-category .col div a {
  text-decoration-line: none;
  color: #FFF;
  margin-left: 20px;
}

.main-category .col div {
  height: 70px;
  color: #FFF;
  text-shadow: -3px 0px #000, 0px 3px #000, 3px 0px #000, 0px -3px #000;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: left;
  align-items: center;
  font-weight: bold;
  z-index: 2;
  background-size: cover;
  background-position: center;
  transition: all 0.2s ease;
  box-sizing: border-box;
  border-radius: 10px;
  cursor: pointer;
}

.main-category .col div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
  transition: background 0.5s ease;
}

.main-category .col div:hover::before {
  background: rgba(0, 0, 0, 0);
  color: #000;
}

.main-category .col div::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -2;
  transition: transform 0.2s ease;
}

.main-category div div:hover::after {
  transform: scale(1.2);
}

.main-category .col:nth-child(1) div::after {
  background-image: url('./images/main/category01.jpg');
}

.main-category .col:nth-child(2) div::after {
  background-image: url('./images/main/category02.jpg');
}

.main-category .col:nth-child(3) div::after {
  background-image: url('./images/main/category03.jpg');
}

.main-category .col:nth-child(4) div::after {
  background-image: url('./images/main/category04.jpg');
}

.main-category .col:nth-child(5) div::after {
  background-image: url('./images/main/category05.jpg');
}

.main-category .col:nth-child(6) div::after {
  background-image: url('./images/main/category06.jpg');
}

.main-category .col:nth-child(7) div::after {
  background-image: url('./images/main/category07.jpg');
}

.main-category .col:nth-child(8) div::after {
  background-image: url('./images/main/category08.jpg');
}

.main-category .col:nth-child(9) div::after {
  background-image: url('./images/main/category09.jpg');
}

.main-category .col:nth-child(10) div::after {
  background-image: url('./images/main/category10.jpg');
}

.main-category .col:nth-child(11) div::after {
  background-image: url('./images/main/category11.jpg');
}

.main-category .col:nth-child(12) div::after {
  background-image: url('./images/main/category12.jpg');
}

.main-category .col:nth-child(13) div::after {
  background-image: url('./images/main/category13.jpg');
}

.main-category .col:nth-child(14) div::after {
  background-image: url('./images/main/category14.jpg');
}

.main-category .col:nth-child(15) div::after {
  background-image: url('./images/main/category15.jpg');
}



.main-search-box {
  max-width: 600px;
  margin: 50px auto;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

.main-search-box:hover {
  box-shadow: 0 0 15px 5px rgba(100, 180, 255, 0.5);
}

.main-search-box:before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50px;
  background: linear-gradient(45deg, #6e8efb, #a777e3, #6e8efb);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.main-search-box:hover:before {
  opacity: 0.6;
}

.main-search-box .search-icon {
  color: #666;
  font-size: 20px;
  margin-right: 10px;
}

.main-search-box input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 8px 0;
  font-size: 16px;
  color: #333;
  outline: none;
}

.main-search-box .search-slash {
  background-color: #f0f0f0;
  color: #666;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 14px;
  margin-left: 10px;
}

.main-search-img {
  margin-right: 10px;
}

.main-small-logo {
  margin-right: 5px;
}

@media (min-width: 576px) {
  .row .blank, .blank .main-title-box {
    height: 235px !important;
  }
}

@media (min-width: 992px) {
  .row .blank, .blank .main-title-box {
    height: 235px !important;
  }
  .row .blank {
    margin-top: -235px;
  }
}

#citizen-section::after{
  content: "";
  display: block !important;
  clear: both !important;
}
.citizen-section {
  width: 400px;
  float: right;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .citizen-section {
      box-sizing: border-box; 
      float: none;
      width: 100%;
      margin-left: 0;
      margin-bottom: 20px;
  }
}