미디어위키:Common.css: 두 판 사이의 차이
둘러보기로 이동
검색으로 이동
편집 요약 없음 |
편집 요약 없음 |
||
| (같은 사용자의 중간 판 10개는 보이지 않습니다) | |||
| 4번째 줄: | 4번째 줄: | ||
.main-container { | .main-container { | ||
margin-top: 20px; | |||
} | } | ||
/* 상단 전공 메뉴 */ | /* 상단 전공 메뉴 */ | ||
.dept-nav { | .dept-nav { | ||
display: flex; | |||
justify-content: flex-end; | |||
gap: 10px; | |||
margin-bottom: 20px; | |||
} | } | ||
.dept-nav a { | .dept-nav a { | ||
padding: 8px 16px; | |||
text-decoration: none; | |||
font-size: 14px; | |||
border-radius: 6px; | |||
background: #f2f4f7; | |||
color: #1a2a3a; | |||
transition: 0.2s; | |||
} | } | ||
.dept-nav a.active { | .dept-nav a.active { | ||
background: #1e4b8e; | |||
color: white; | |||
} | } | ||
.dept-nav a:hover { | .dept-nav a:hover { | ||
background: #dce3ec; | |||
} | } | ||
/* HERO */ | /* HERO */ | ||
.hero { | .hero { | ||
position: relative; | |||
height: 360px; | |||
border-radius: 12px; | |||
overflow: hidden; | |||
margin-bottom: 40px; | |||
background: url('/images/aksgeo_banner_2023.jpg') center/cover no-repeat; | |||
} | } | ||
.hero::after { | .hero::after { | ||
content: ""; | |||
position: absolute; | |||
top: 0; | |||
right: 0; | |||
bottom: 0; | |||
left: 0; | |||
background: rgba(0,0,0,0.1); | |||
} | } | ||
.hero-content { | .hero-content { | ||
position: absolute; | |||
bottom: 50px; | |||
right: 60px; | |||
color: white; | |||
z-index: 2; | |||
text-align: right; | |||
} | } | ||
.hero-title { | .hero-title { | ||
font-size: 40px; | |||
font-weight: 700; | |||
margin-bottom: 10px; | |||
color: white; | |||
} | } | ||
.hero-subtitle { | .hero-subtitle { | ||
font-size: 18px; | |||
color: white; | |||
} | } | ||
/* 2단 레이아웃 */ | /* 2단 레이아웃 */ | ||
.content-grid { | .content-grid { | ||
display: grid; | |||
grid-template-columns: 2fr 1fr; | |||
gap: 40px; | |||
} | } | ||
/* 학술 활동 카드 */ | /* 학술 활동 카드 */ | ||
.section-title { | .section-title { | ||
font-size: 22px; | |||
font-weight: 700; | |||
margin-bottom: 20px; | |||
padding-bottom: 10px; | |||
border-bottom: 3px solid #1e4b8e; | |||
display: inline-block; | |||
} | } | ||
.activities-grid { | .activities-grid { | ||
display: grid; | |||
grid-template-columns: repeat(3, 1fr); | |||
gap: 20px; | |||
} | } | ||
.activity-card { | .activity-card { | ||
background: white; | |||
border-radius: 12px; | |||
padding: 24px; | |||
border: 1px solid #dce3ec; | |||
box-shadow: 0 2px 8px rgba(0,0,0,0.06); | |||
transition: 0.3s; | |||
} | } | ||
.activity-card:hover { | .activity-card:hover { | ||
transform: translateY(-4px); | |||
box-shadow: 0 8px 24px rgba(0,0,0,0.1); | |||
} | } | ||
.activity-title { | .activity-title { | ||
font-size: 17px; | |||
font-weight: 600; | |||
margin-bottom: 8px; | |||
} | } | ||
.activity-desc { | .activity-desc { | ||
font-size: 14px; | |||
color: #64748b; | |||
margin-bottom: 12px; | |||
} | } | ||
.activity-button { | .activity-button { | ||
text-decoration: none; | |||
font-weight: 600; | |||
color: #1e4b8e; | |||
} | } | ||
.activity-button:hover { | .activity-button:hover { | ||
text-decoration: underline; | |||
} | } | ||
/* 우측 학과 소개 카드 */ | /* 우측 학과 소개 카드 */ | ||
.intro-card { | .intro-card { | ||
background: white; | |||
border-radius: 12px; | |||
padding: 28px; | |||
border: 1px solid #dce3ec; | |||
box-shadow: 0 2px 8px rgba(0,0,0,0.06); | |||
} | } | ||
.intro-card h3 { | .intro-card h3 { | ||
margin-bottom: 12px; | |||
color: #1e4b8e; | |||
} | } | ||
.intro-card p, | .intro-card p, | ||
.intro-card li { | .intro-card li { | ||
font-size: 14px; | |||
line-height: 1.7; | |||
} | } | ||
/* FOOTER */ | /* FOOTER */ | ||
.dept-footer { | .dept-footer { | ||
margin-top: 60px; | |||
background: #153a6e; | |||
color: white; | |||
padding: 40px; | |||
border-radius: 12px; | |||
} | } | ||
.footer-grid { | .footer-grid { | ||
display: grid; | |||
grid-template-columns: 1fr 1fr; | |||
gap: 40px; | |||
} | } | ||
.dept-footer a { | .dept-footer a { | ||
color: white; | |||
text-decoration: none; | |||
} | } | ||
.dept-footer a:hover { | .dept-footer a:hover { | ||
text-decoration: underline; | |||
} | } | ||
/* ===== 푸터 글자색 강제 흰색 ===== */ | /* ===== 푸터 글자색 강제 흰색 ===== */ | ||
| 182번째 줄: | 186번째 줄: | ||
.dept-footer span, | .dept-footer span, | ||
.dept-footer li { | .dept-footer li { | ||
color: white !important; | |||
} | } | ||
.dept-footer a { | .dept-footer a { | ||
color: white !important; | color: white !important; | ||
} | |||
/* ===== 카드 상단 이미지 추가 ===== */ | |||
.activity-card { | |||
overflow: hidden; | |||
padding: 0; | |||
} | |||
.card-image { | |||
width: 100%; | |||
height: 170px; | |||
overflow: hidden; | |||
} | |||
.card-image img { | |||
width: 100%; | |||
height: 100%; | |||
object-fit: cover; | |||
display: block; | |||
} | |||
.card-body { | |||
padding: 20px 24px 24px 24px; | |||
} | |||
/* ===== 구성원 페이지 전용 ===== */ | |||
.member-section-title { | |||
background: #5d8fbd; | |||
color: white; | |||
padding: 10px 0; | |||
text-align: center; | |||
font-size: 22px; | |||
font-weight: 600; | |||
margin: 60px 0 30px 0; | |||
} | |||
.member-subtitle { | |||
font-size: 18px; | |||
font-weight: 600; | |||
margin: 30px 0 15px 0; | |||
} | |||
.member-grid { | |||
display: grid; | |||
grid-template-columns: repeat(3, 1fr); | |||
gap: 30px; | |||
max-width: 1100px; | |||
margin: 0 auto 30px auto; | |||
} | |||
.member-card { | |||
border: 1px solid #4a89c2; | |||
padding: 15px; | |||
text-align: center; | |||
background: #f9fbfe; | |||
transition: 0.3s; | |||
} | |||
.member-card:hover { | |||
box-shadow: 0 6px 18px rgba(0,0,0,0.15); | |||
transform: translateY(-4px); | |||
} | |||
.member-card img { | |||
width: 150px; | |||
height: 180px; | |||
object-fit: cover; | |||
margin-bottom: 10px; | |||
} | |||
.member-name { | |||
font-weight: 600; | |||
margin-bottom: 5px; | |||
} | |||
.member-email { | |||
font-size: 13px; | |||
color: #444; | |||
} | |||
.member-card a { | |||
text-decoration: none; | |||
color: inherit; | |||
} | |||
/* ============================= */ | |||
/* 구성원 페이지 카드형 확장 */ | |||
/* ============================= */ | |||
.members-wrapper { | |||
max-width: 1200px; | |||
margin: 40px auto; | |||
} | |||
.blue-title { | |||
background: #1e4b8e; | |||
color: white; | |||
text-align: center; | |||
padding: 10px; | |||
font-size: 20px; | |||
font-weight: 600; | |||
margin: 60px 0 30px 0; | |||
border-radius: 6px; | |||
} | |||
.gray-subtitle { | |||
background: #f2f4f7; | |||
padding: 8px 12px; | |||
font-weight: 600; | |||
margin: 30px 0 15px 0; | |||
border-left: 4px solid #1e4b8e; | |||
} | |||
.card-grid { | |||
display: grid; | |||
grid-template-columns: repeat(3, 1fr); | |||
gap: 30px; | |||
margin-bottom: 40px; | |||
} | |||
.profile-card { | |||
display: block; | |||
border: 1px solid #dce3ec; | |||
border-radius: 10px; | |||
text-align: center; | |||
text-decoration: none; | |||
color: #1a2a3a; | |||
overflow: hidden; | |||
transition: 0.3s; | |||
background: white; | |||
} | |||
.profile-card:hover { | |||
transform: translateY(-4px); | |||
box-shadow: 0 8px 24px rgba(0,0,0,0.1); | |||
} | |||
.profile-card img { | |||
width: 100%; | |||
height: 220px; | |||
object-fit: cover; | |||
display: block; | |||
} | |||
.profile-card .name { | |||
padding: 12px; | |||
font-weight: 600; | |||
} | |||
.alumni-box { | |||
border: 1px solid #dce3ec; | |||
padding: 20px; | |||
border-radius: 8px; | |||
background: #fafbfc; | |||
text-align: center; | |||
} | |||
/* ===== 교수진 / 명예교수 좌우 독립 배치 ===== */ | |||
.professor-wrapper { | |||
display: grid; | |||
grid-template-columns: 1fr 1fr; | |||
gap: 60px; | |||
margin-bottom: 60px; | |||
} | |||
.professor-box .blue-title { | |||
margin: 0 0 20px 0; | |||
} | |||
.professor-box .card-grid { | |||
grid-template-columns: repeat(2, 1fr); | |||
} | |||
/* 툴팁 내부 설정 제거 */ | |||
.rt-settings, | |||
.rt-settings *, | |||
.referenceTooltips-settings, | |||
.referenceTooltips-settings *, | |||
.oo-ui-icon-settings { | |||
display: none !important; | |||
} | } | ||
2026년 3월 4일 (수) 09:42 기준 최신판
/* ============================= */
/* 인문지리학 전공 메인 디자인 */
/* ============================= */
.main-container {
margin-top: 20px;
}
/* 상단 전공 메뉴 */
.dept-nav {
display: flex;
justify-content: flex-end;
gap: 10px;
margin-bottom: 20px;
}
.dept-nav a {
padding: 8px 16px;
text-decoration: none;
font-size: 14px;
border-radius: 6px;
background: #f2f4f7;
color: #1a2a3a;
transition: 0.2s;
}
.dept-nav a.active {
background: #1e4b8e;
color: white;
}
.dept-nav a:hover {
background: #dce3ec;
}
/* HERO */
.hero {
position: relative;
height: 360px;
border-radius: 12px;
overflow: hidden;
margin-bottom: 40px;
background: url('/images/aksgeo_banner_2023.jpg') center/cover no-repeat;
}
.hero::after {
content: "";
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: rgba(0,0,0,0.1);
}
.hero-content {
position: absolute;
bottom: 50px;
right: 60px;
color: white;
z-index: 2;
text-align: right;
}
.hero-title {
font-size: 40px;
font-weight: 700;
margin-bottom: 10px;
color: white;
}
.hero-subtitle {
font-size: 18px;
color: white;
}
/* 2단 레이아웃 */
.content-grid {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 40px;
}
/* 학술 활동 카드 */
.section-title {
font-size: 22px;
font-weight: 700;
margin-bottom: 20px;
padding-bottom: 10px;
border-bottom: 3px solid #1e4b8e;
display: inline-block;
}
.activities-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}
.activity-card {
background: white;
border-radius: 12px;
padding: 24px;
border: 1px solid #dce3ec;
box-shadow: 0 2px 8px rgba(0,0,0,0.06);
transition: 0.3s;
}
.activity-card:hover {
transform: translateY(-4px);
box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.activity-title {
font-size: 17px;
font-weight: 600;
margin-bottom: 8px;
}
.activity-desc {
font-size: 14px;
color: #64748b;
margin-bottom: 12px;
}
.activity-button {
text-decoration: none;
font-weight: 600;
color: #1e4b8e;
}
.activity-button:hover {
text-decoration: underline;
}
/* 우측 학과 소개 카드 */
.intro-card {
background: white;
border-radius: 12px;
padding: 28px;
border: 1px solid #dce3ec;
box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.intro-card h3 {
margin-bottom: 12px;
color: #1e4b8e;
}
.intro-card p,
.intro-card li {
font-size: 14px;
line-height: 1.7;
}
/* FOOTER */
.dept-footer {
margin-top: 60px;
background: #153a6e;
color: white;
padding: 40px;
border-radius: 12px;
}
.footer-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
}
.dept-footer a {
color: white;
text-decoration: none;
}
.dept-footer a:hover {
text-decoration: underline;
}
/* ===== 푸터 글자색 강제 흰색 ===== */
.dept-footer,
.dept-footer h3,
.dept-footer p,
.dept-footer div,
.dept-footer span,
.dept-footer li {
color: white !important;
}
.dept-footer a {
color: white !important;
}
/* ===== 카드 상단 이미지 추가 ===== */
.activity-card {
overflow: hidden;
padding: 0;
}
.card-image {
width: 100%;
height: 170px;
overflow: hidden;
}
.card-image img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.card-body {
padding: 20px 24px 24px 24px;
}
/* ===== 구성원 페이지 전용 ===== */
.member-section-title {
background: #5d8fbd;
color: white;
padding: 10px 0;
text-align: center;
font-size: 22px;
font-weight: 600;
margin: 60px 0 30px 0;
}
.member-subtitle {
font-size: 18px;
font-weight: 600;
margin: 30px 0 15px 0;
}
.member-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
max-width: 1100px;
margin: 0 auto 30px auto;
}
.member-card {
border: 1px solid #4a89c2;
padding: 15px;
text-align: center;
background: #f9fbfe;
transition: 0.3s;
}
.member-card:hover {
box-shadow: 0 6px 18px rgba(0,0,0,0.15);
transform: translateY(-4px);
}
.member-card img {
width: 150px;
height: 180px;
object-fit: cover;
margin-bottom: 10px;
}
.member-name {
font-weight: 600;
margin-bottom: 5px;
}
.member-email {
font-size: 13px;
color: #444;
}
.member-card a {
text-decoration: none;
color: inherit;
}
/* ============================= */
/* 구성원 페이지 카드형 확장 */
/* ============================= */
.members-wrapper {
max-width: 1200px;
margin: 40px auto;
}
.blue-title {
background: #1e4b8e;
color: white;
text-align: center;
padding: 10px;
font-size: 20px;
font-weight: 600;
margin: 60px 0 30px 0;
border-radius: 6px;
}
.gray-subtitle {
background: #f2f4f7;
padding: 8px 12px;
font-weight: 600;
margin: 30px 0 15px 0;
border-left: 4px solid #1e4b8e;
}
.card-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
margin-bottom: 40px;
}
.profile-card {
display: block;
border: 1px solid #dce3ec;
border-radius: 10px;
text-align: center;
text-decoration: none;
color: #1a2a3a;
overflow: hidden;
transition: 0.3s;
background: white;
}
.profile-card:hover {
transform: translateY(-4px);
box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.profile-card img {
width: 100%;
height: 220px;
object-fit: cover;
display: block;
}
.profile-card .name {
padding: 12px;
font-weight: 600;
}
.alumni-box {
border: 1px solid #dce3ec;
padding: 20px;
border-radius: 8px;
background: #fafbfc;
text-align: center;
}
/* ===== 교수진 / 명예교수 좌우 독립 배치 ===== */
.professor-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
margin-bottom: 60px;
}
.professor-box .blue-title {
margin: 0 0 20px 0;
}
.professor-box .card-grid {
grid-template-columns: repeat(2, 1fr);
}
/* 툴팁 내부 설정 제거 */
.rt-settings,
.rt-settings *,
.referenceTooltips-settings,
.referenceTooltips-settings *,
.oo-ui-icon-settings {
display: none !important;
}