사용자
NodeulsumNaru(비교)
| r17 vs r18 | ||
|---|---|---|
| ... | ... | |
| 154 | 154 | margin: 20px auto; border-collapse: separate; border-spacing: 0; |
| 155 | 155 | } |
| 156 | 156 | |
| 157 | /* 탭 버튼 (헤더) 디자인 */ | |
| 157 | /* 탭 버튼 (헤더) 디자인 개선 */ | |
| 158 | 158 | table.stel-menu > thead > tr { display: flex; gap: 8px; margin-bottom: -1px; justify-content: center; } |
| 159 | 159 | table.stel-menu > thead > tr > th { |
| 160 | 160 | flex: 1; max-width: 120px; padding: 12px 5px !important; |
| 161 | 161 | cursor: pointer; transition: all 0.2s; |
| 162 | background: | |
| 163 | color: #fff !important; font-weight: bold; border: | |
| 162 | /* 버튼처럼 보이게 배경색과 테두리 강화 */ | |
| 163 | background: #ffaaa5 !important; | |
| 164 | color: #fff !important; font-weight: bold; | |
| 165 | border: 2px solid #ff9a8b !important; | |
| 164 | 166 | border-radius: 15px 15px 0 0; border-bottom: none !important; |
| 167 | text-shadow: 1px 1px 2px rgba(0,0,0,0.2); | |
| 165 | 168 | } |
| 166 | table.stel-menu > thead > tr > th:hover { background: r | |
| 169 | table.stel-menu > thead > tr > th:hover { background: #ff8b8b !important; transform: translateY(-2px); } | |
| 167 | 170 | |
| 168 | /* 화살표 | |
| 171 | /* 정렬 화살표 제거 */ | |
| 169 | 172 | table.stel-menu > thead > tr > th::before, |
| 170 | 173 | table.stel-menu > thead > tr > th::after { display: none !important; } |
| 171 | 174 | |
| 172 | /* 핵심 로직: 첫 번째 행만 | |
| 175 | /* 핵심 로직: 첫 번째 행만 표시 */ | |
| 173 | 176 | table.stel-menu > tbody > tr { display: none; } |
| 174 | 177 | table.stel-menu > tbody > tr:first-child { display: table-row; } |
| 175 | 178 | |
| 176 | /* 컨텐츠 | |
| 179 | /* 0, 1 숫자 숨기기 및 컨텐츠 박스 */ | |
| 177 | 180 | table.stel-menu > tbody > tr > td { |
| 178 | 181 | border: 1px solid rgba(255,255,255,0.4) !important; |
| 179 | 182 | border-radius: 20px; background: #fff; padding: 0 !important; |
| 183 | /* 숫자 숨기기용 설정 */ | |
| 184 | font-size: 0 !important; color: transparent !important; | |
| 180 | 185 | } |
| 181 | 186 | |
| 182 | 187 | .stel-tab-content { |
| 188 | /* 내부 실제 글자 크기 복구 */ | |
| 189 | font-size: 14px !important; color: #000 !important; | |
| 183 | 190 | padding: 20px; text-align: center; |
| 184 | 191 | background: linear-gradient(160deg in oklch, #ffd3b6 0%, #ffaaa5 40%, #d4a5ff 80%, #a29bfe 100%); |
| 185 | 192 | border-radius: 18px; |
| ... | ... |