메뉴 여닫기
37
87
11
1.6천
Project ZETA Wiki
환경 설정 메뉴 여닫기
개인 메뉴 여닫기
로그인하지 않음
지금 편집한다면 당신의 IP 주소가 공개될 수 있습니다.

Template:MainPage/styles.css: 두 판 사이의 차이

틀 문서
내용 삭제됨 내용 추가됨
편집 요약 없음
편집 요약 없음
14번째 줄: 14번째 줄:
#home-nav {
#home-nav {
margin-bottom: 15px;
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;
}

.news-title {
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);
}

.news-title-label {
font-size: 1em;
font-weight: bold;
}

.news-title-update {
font-size: 0.90em;
}

.timeline {
position: relative;
padding: 8px;
}

.timeline__item {
position: relative;
margin-bottom: 10px;
}

.timeline__content {
background: var(--color-surface-2);
padding: 4px 6px;
border-radius: 8px;
border: 1px solid rgba(255, 255, 255, 0.06);
}

.timeline__content .timeline__date {
font-size: 16px;
font-weight: 600;
color: var(--color-emphasized);
}

.timeline__content .timeline__desc {
font-size: 14px;
}
}

2026년 4월 6일 (월) 16:16 판

.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;
}

.news-title {
    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);
}

.news-title-label {
    font-size: 1em;
    font-weight: bold;
}

.news-title-update {
    font-size: 0.90em;
}

.timeline {
    position: relative;
    padding: 8px;
}

.timeline__item {
    position: relative;
    margin-bottom: 10px;
}

.timeline__content {
    background: var(--color-surface-2);
    padding: 4px 6px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.timeline__content .timeline__date {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-emphasized);
}

.timeline__content .timeline__desc {
    font-size: 14px;
}