Template:MainPage/styles.css: 두 판 사이의 차이
틀 문서
더 많은 작업
내용 삭제됨 내용 추가됨
편집 요약 없음 태그: 수동 되돌리기 |
편집 요약 없음 |
||
| (같은 사용자의 중간 판 6개는 보이지 않습니다) | |||
| 200번째 줄: | 200번째 줄: | ||
.card-button { |
.card-button { |
||
display: flex; |
display: flex; |
||
align-items: center; |
|||
justify-content: center; |
|||
| ⚫ | |||
| ⚫ | |||
| ⚫ | |||
| ⚫ | |||
| ⚫ | |||
} |
|||
.card-button:hover { |
|||
| ⚫ | |||
} |
|||
.card-button img { |
|||
flex: 0 0 auto; |
|||
width: 20px; |
|||
height: 20px; |
|||
} |
} |
||
.card-button a { |
.card-button a { |
||
padding: 5px 2px; |
|||
| ⚫ | |||
| ⚫ | |||
text-decoration: none !important; |
text-decoration: none !important; |
||
color: var(--color-emphasized); |
color: var(--color-emphasized); |
||
| ⚫ | |||
| ⚫ | |||
| ⚫ | |||
} |
} |
||
.card-button a:hover { |
.card-button a:hover { |
||
| ⚫ | |||
text-decoration: none !important; |
text-decoration: none !important; |
||
} |
|||
/* 로드맵 카드 썸네일 — 최신 영상 카드와 동일 구조, 클릭 시 외부 로드맵 */ |
|||
.roadmap-thumb a { |
|||
display: block; |
|||
overflow: hidden; |
|||
border-radius: 6px; |
|||
} |
|||
.roadmap-thumb img { |
|||
display: block; |
|||
width: 100%; |
|||
height: auto; |
|||
transition: transform 300ms ease; |
|||
} |
|||
.roadmap-thumb a:hover img { |
|||
transform: scale(1.03); |
|||
} |
|||
.roadmap-thumb a.external::after { |
|||
display: none !important; |
|||
} |
} |
||
2026년 6월 16일 (화) 13:11 기준 최신판
.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;
}
/* 로드맵 카드 썸네일 — 최신 영상 카드와 동일 구조, 클릭 시 외부 로드맵 */
.roadmap-thumb a {
display: block;
overflow: hidden;
border-radius: 6px;
}
.roadmap-thumb img {
display: block;
width: 100%;
height: auto;
transition: transform 300ms ease;
}
.roadmap-thumb a:hover img {
transform: scale(1.03);
}
.roadmap-thumb a.external::after {
display: none !important;
}