미디어위키:Common.css: 두 판 사이의 차이

편집 요약 없음
편집 요약 없음
태그: 되돌려진 기여
1번째 줄: 1번째 줄:
/* 이 CSS 설정은 모든 스킨에 적용됩니다 */
/* 이 CSS 설정은 모든 스킨에 적용됩니다 */
/* 전체적인 스타일 설정 */
body {
    font-family: 'Noto Sans', sans-serif; /* 깔끔한 Sans-serif 글꼴 */
    background-color: #f8f9fb; /* 부드러운 배경색 */
    color: #333; /* 기본 글자색 */
    margin: 0;
    padding: 0;
}
/* 메인 페이지 컨테이너 */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
}
/* 헤더 스타일 */
.main-header {
    font-size: 2.5em;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    text-align: center;
}
/* 섹션 스타일 */
.section {
    margin-bottom: 40px;
}
.section-header {
    font-size: 1.5em;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 15px;
    border-left: 4px solid #007aff; /* 포인트 컬러 */
    padding-left: 10px;
}
.section-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
/* 카드 스타일 */
.card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.card-title {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a202c;
}
.card-description {
    font-size: 0.9em;
    color: #4a5568;
    line-height: 1.6;
}
/* 버튼 스타일 */
button {
    background-color: #007aff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
}
button:hover {
    background-color: #005bb5;
}

2024년 8월 17일 (토) 23:39 판

/* 이 CSS 설정은 모든 스킨에 적용됩니다 */
/* 전체적인 스타일 설정 */
body {
    font-family: 'Noto Sans', sans-serif; /* 깔끔한 Sans-serif 글꼴 */
    background-color: #f8f9fb; /* 부드러운 배경색 */
    color: #333; /* 기본 글자색 */
    margin: 0;
    padding: 0;
}

/* 메인 페이지 컨테이너 */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
}

/* 헤더 스타일 */
.main-header {
    font-size: 2.5em;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    text-align: center;
}

/* 섹션 스타일 */
.section {
    margin-bottom: 40px;
}

.section-header {
    font-size: 1.5em;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 15px;
    border-left: 4px solid #007aff; /* 포인트 컬러 */
    padding-left: 10px;
}

.section-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* 카드 스타일 */
.card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a202c;
}

.card-description {
    font-size: 0.9em;
    color: #4a5568;
    line-height: 1.6;
}

/* 버튼 스타일 */
button {
    background-color: #007aff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #005bb5;
}