Template:MainPage/styles.css: 두 판 사이의 차이
틀 문서
더 많은 작업
내용 삭제됨 내용 추가됨
편집 요약 없음 태그: 수동 되돌리기 |
편집 요약 없음 |
||
| 227번째 줄: | 227번째 줄: | ||
.card-button a:hover { |
.card-button a:hover { |
||
text-decoration: none !important; |
text-decoration: none !important; |
||
} |
|||
/* 로드맵 CTA 카드 — ZETA 프리즘 색 그라데이션, 카드 전체 클릭 */ |
|||
.roadmap-card { |
|||
padding: 0; |
|||
border: 0; |
|||
overflow: hidden; |
|||
background: linear-gradient(135deg, #be3a3a 0%, #7a35c4 52%, #3a7bd5 100%); |
|||
} |
|||
.roadmap-card > a { |
|||
display: flex; |
|||
flex: 1 1 auto; |
|||
flex-direction: column; |
|||
gap: 6px; |
|||
align-items: center; |
|||
justify-content: center; |
|||
height: 100%; |
|||
min-height: 140px; |
|||
padding: 20px; |
|||
color: #fff !important; |
|||
text-align: center; |
|||
text-decoration: none !important; |
|||
} |
|||
.roadmap-card__title { |
|||
font-size: 1.45em; |
|||
font-weight: bold; |
|||
} |
|||
.roadmap-card__title::after { |
|||
content: " →"; |
|||
display: inline-block; |
|||
transition: transform 220ms ease; |
|||
} |
|||
.roadmap-card > a:hover .roadmap-card__title::after { |
|||
transform: translateX(4px); |
|||
} |
|||
.roadmap-card img { |
|||
transition: transform 220ms ease; |
|||
} |
|||
.roadmap-card > a:hover img { |
|||
transform: scale(1.08); |
|||
} |
} |
||
2026년 6월 16일 (화) 13:02 판
.main-header {
margin: 0;
}
.fullwidth-banner {
margin-bottom: 15px;
}
.fullwidth-banner img {
width: 100%;
height: auto;
}
#home-nav {
margin-bottom: 15px;
}
.main-row {
display: grid;
grid-auto-rows: minmax(3rem, auto);
gap: 0.5rem;
margin-bottom: 8px;
}
.main-row--75-25 {
grid-template-columns: 4fr 2fr;
}
.main-row--50-50 {
grid-template-columns: 1fr 1fr;
}
.main-row--3col {
grid-template-columns: 1fr 1fr 1fr;
align-items: stretch;
}
.main-row--3col > .main-card {
grid-row: auto;
}
@media (max-width: 768px) {
.main-row--75-25,
.main-row--50-50,
.main-row--3col {
grid-template-columns: 1fr;
}
}
.main-card {
background: var(--color-surface-1);
border: 1px solid var(--border-color-base);
border-radius: 8px;
position: relative;
display: flex;
flex-direction: column;
}
.main-card--row3 { grid-row: span 3; }
.main-card--row6 { grid-row: span 6; }
.main-card__title {
position: relative;
padding: 8px;
border-bottom: 1px solid var(--border-color-base);
font-size: 1em;
font-weight: bold;
margin-bottom: 10px;
color: var(--color-emphasized);
}
.main-card__content {
padding: 8px;
height: 100%;
}
.update-header {
padding: 8px;
border-bottom: 1px solid var(--border-color-base);
padding-bottom: 5px;
margin-bottom: 10px;
display: flex;
justify-content: space-between;
align-items: center;
color: var(--color-emphasized);
}
.update-header__label {
font-size: 1em;
font-weight: bold;
}
.update-header__version {
font-size: 0.90em;
}
.update-list {
position: relative;
padding: 8px;
}
.update-list__item {
position: relative;
margin-bottom: 10px;
}
.update-list__content {
background: var(--color-surface-2);
padding: 4px 6px;
border-radius: 8px;
border: 1px solid rgba(255, 255, 255, 0.06);
}
.update-list__date {
font-size: 16px;
font-weight: 600;
color: var(--color-emphasized);
}
.update-list__desc {
font-size: 14px;
}
.main-card__overlay {
display: flex;
flex-direction: column;
justify-content: flex-end;
height: 100%;
width: 100%;
position: absolute;
top: 0;
pointer-events: none;
padding-left: 8px;
padding-bottom: 8px;
}
.main-card__overlay-badge {
position: absolute;
top: 0;
right: 0;
margin: 6px;
padding: 4px 12px;
font-size: 0.75rem;
font-weight: 600;
letter-spacing: 1px;
text-transform: uppercase;
color: #cfd8e3;
background: rgba(0, 0, 0, 0.45);
border: 1px solid rgba(255, 255, 255, 0.15);
border-radius: 6px;
backdrop-filter: blur(6px);
}
.main-card__overlay-title {
font-size: 1.1rem;
font-weight: 600;
color: var(--color-emphasized);
}
.main-card__overlay-subtitle {
font-size: 0.9rem;
color: var(--color-subtle);
letter-spacing: 0.3px;
}
.home-stats {
display: flex;
flex-wrap: wrap;
height: 100%;
justify-content: center;
align-items: center;
line-height: 1.3;
gap: 10px;
}
.home-stats__item {
display: flex;
flex-direction: column;
align-items: center;
width: calc(50% - 10px);
}
.home-stats__label {
color: var(--color-base--subtle);
white-space: nowrap;
}
.home-stats__data {
color: var(--color-base--emphasized);
font-weight: 500;
font-size: 20px;
white-space: nowrap;
}
.card-button-grid {
display: grid;
grid-gap: 5px;
text-align: center;
}
.card-button {
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
border-radius: var(--border-radius-medium);
background: var(--color-surface-2);
border: 1px solid var(--border-color-base);
transition: all 0.3s ease;
}
.card-button:hover {
background: var(--color-surface-2--hover);
}
.card-button img {
flex: 0 0 auto;
width: 20px;
height: 20px;
}
.card-button a {
padding: 5px 2px;
text-decoration: none !important;
color: var(--color-emphasized);
}
.card-button a:hover {
text-decoration: none !important;
}
/* 로드맵 CTA 카드 — ZETA 프리즘 색 그라데이션, 카드 전체 클릭 */
.roadmap-card {
padding: 0;
border: 0;
overflow: hidden;
background: linear-gradient(135deg, #be3a3a 0%, #7a35c4 52%, #3a7bd5 100%);
}
.roadmap-card > a {
display: flex;
flex: 1 1 auto;
flex-direction: column;
gap: 6px;
align-items: center;
justify-content: center;
height: 100%;
min-height: 140px;
padding: 20px;
color: #fff !important;
text-align: center;
text-decoration: none !important;
}
.roadmap-card__title {
font-size: 1.45em;
font-weight: bold;
}
.roadmap-card__title::after {
content: " →";
display: inline-block;
transition: transform 220ms ease;
}
.roadmap-card > a:hover .roadmap-card__title::after {
transform: translateX(4px);
}
.roadmap-card img {
transition: transform 220ms ease;
}
.roadmap-card > a:hover img {
transform: scale(1.08);
}