미디어위키:Common.css

한국학중앙연구원 인문지리학 전공 위키
Aksgeo (토론 | 기여)님의 2026년 3월 2일 (월) 08:28 판
둘러보기로 이동 검색으로 이동

참고: 설정을 저장한 후에 바뀐 점을 확인하기 위해서는 브라우저의 캐시를 새로 고쳐야 합니다.

  • 파이어폭스 / 사파리: Shift 키를 누르면서 새로 고침을 클릭하거나, Ctrl-F5 또는 Ctrl-R을 입력 (Mac에서는 ⌘-R)
  • 구글 크롬: Ctrl-Shift-R키를 입력 (Mac에서는 ⌘-Shift-R)
  • 엣지: Ctrl 키를 누르면서 새로 고침을 클릭하거나, Ctrl-F5를 입력.
/* ============================= */
/* 구성원 페이지 카드형 확장 */
/* ============================= */

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