Template:MainPage/styles.css: 두 판 사이의 차이
틀 문서
더 많은 작업
내용 삭제됨 내용 추가됨
편집 요약 없음 |
편집 요약 없음 |
||
| (같은 사용자의 중간 판 2개는 보이지 않습니다) | |||
| 10번째 줄: | 10번째 줄: | ||
width: 100%; |
width: 100%; |
||
height: auto; |
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; |
|||
} |
|||
@media (max-width: 768px) { |
|||
.main-row--75-25, |
|||
.main-row--50-50 { |
|||
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; |
|||
} |
|||
.card-button a { |
|||
flex-grow: 1; |
|||
padding: 5px; |
|||
border-radius: var(--border-radius-medium); |
|||
text-decoration: none !important; |
|||
color: var(--color-emphasized); |
|||
background: var(--color-surface-2); |
|||
border: 1px solid var(--border-color-base); |
|||
transition: all 0.3s ease; |
|||
} |
|||
.card-button a:hover { |
|||
background: var(--color-surface-2--hover); |
|||
text-decoration: none !important; |
|||
} |
} |
||
2026년 4월 6일 (월) 18:00 기준 최신판
.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;
}
@media (max-width: 768px) {
.main-row--75-25,
.main-row--50-50 {
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;
}
.card-button a {
flex-grow: 1;
padding: 5px;
border-radius: var(--border-radius-medium);
text-decoration: none !important;
color: var(--color-emphasized);
background: var(--color-surface-2);
border: 1px solid var(--border-color-base);
transition: all 0.3s ease;
}
.card-button a:hover {
background: var(--color-surface-2--hover);
text-decoration: none !important;
}