|
|
2번째 줄: |
2번째 줄: |
| cite { | | cite { |
| box-shadow: inset 0 -20px 0 #FAFAFA; | | box-shadow: inset 0 -20px 0 #FAFAFA; |
− | }
| |
− |
| |
− | /* Accordion 기본 스타일 */
| |
− | .cdx-accordion {
| |
− | background-color: #fff; /* 흰색 배경 */
| |
− | border: 1px solid #ddd; /* 얇은 회색 테두리 */
| |
− | border-radius: 10px; /* 부드러운 둥근 모서리 */
| |
− | margin-bottom: 15px;
| |
− | overflow: hidden;
| |
− | box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 그림자 효과 */
| |
− | }
| |
− |
| |
− | /* 헤더 스타일 */
| |
− | .cdx-accordion__header {
| |
− | background-color: #007BFF; /* 파란색 배경 */
| |
− | color: #fff; /* 흰색 글씨 */
| |
− | padding: 16px 20px; /* 상하좌우 여백 */
| |
− | font-size: 18px; /* 글자 크기 */
| |
− | font-weight: bold; /* 굵은 글씨 */
| |
− | cursor: pointer;
| |
− | display: flex;
| |
− | justify-content: space-between; /* 왼쪽: 제목, 오른쪽: 아이콘 */
| |
− | align-items: center;
| |
− | transition: background-color 0.3s ease, padding 0.2s ease;
| |
− | border: none;
| |
− | width: 100%;
| |
− | border-radius: 10px;
| |
− | }
| |
− |
| |
− | /* 헤더가 hover될 때 색상 변화 */
| |
− | .cdx-accordion__header:hover {
| |
− | background-color: #0056b3; /* 클릭 전 배경 색 변경 */
| |
− | }
| |
− |
| |
− | /* 아코디언 펼침/접힘 아이콘 */
| |
− | .cdx-accordion__header::after {
| |
− | content: "▼"; /* 기본 ▼ 아이콘 */
| |
− | font-size: 18px;
| |
− | transition: transform 0.3s ease; /* 회전 애니메이션 */
| |
− | }
| |
− |
| |
− | /* 펼쳐졌을 때 아이콘 회전 */
| |
− | .cdx-accordion[open] .cdx-accordion__header::after {
| |
− | content: "▲"; /* ▲ 아이콘 */
| |
− | transform: rotate(180deg); /* 아이콘 회전 */
| |
− | }
| |
− |
| |
− | /* 아코디언 내용 스타일 */
| |
− | .cdx-accordion__content {
| |
− | padding: 20px;
| |
− | background-color: #f9f9f9; /* 배경 색 */
| |
− | font-size: 16px; /* 글씨 크기 */
| |
− | line-height: 1.5; /* 줄 간격 */
| |
− | color: #333; /* 기본 텍스트 색 */
| |
− | border-top: 1px solid #eee; /* 아코디언 구분선 */
| |
− | overflow: hidden;
| |
− | max-height: 0; /* 기본적으로 숨기기 */
| |
− | transition: max-height 0.3s ease, padding 0.3s ease; /* 애니메이션 */
| |
− | }
| |
− |
| |
− | /* 내용이 펼쳐졌을 때 */
| |
− | .cdx-accordion[open] .cdx-accordion__content {
| |
− | max-height: 500px; /* 최대 높이 */
| |
− | padding-top: 20px;
| |
− | padding-bottom: 20px;
| |
− | }
| |
− |
| |
− | /* 내부 텍스트 여백 */
| |
− | .cdx-accordion__content p {
| |
− | margin: 10px 0;
| |
− | }
| |
− |
| |
− | /* 아이콘이 있는 링크 스타일 */
| |
− | .cdx-accordion__content a {
| |
− | color: #007BFF;
| |
− | text-decoration: none;
| |
− | font-weight: bold;
| |
− | }
| |
− |
| |
− | .cdx-accordion__content a:hover {
| |
− | color: #0056b3;
| |
| } | | } |