미디어위키:Common.css: 두 판 사이의 차이
둘러보기로 이동
검색으로 이동
편집 요약 없음 |
편집 요약 없음 |
||
| 1번째 줄: | 1번째 줄: | ||
/* ============================= */ | /* ============================= */ | ||
/* | /* 구성원 페이지 카드형 확장 */ | ||
/* ============================= */ | /* ============================= */ | ||
. | .members-wrapper { | ||
max-width: 1200px; | |||
margin: 40px auto; | |||
} | } | ||
.blue-title { | |||
background: #1e4b8e; | |||
. | |||
color: white; | color: white; | ||
text-align: center; | text-align: center; | ||
font-size: | padding: 10px; | ||
font-size: 20px; | |||
font-weight: 600; | font-weight: 600; | ||
margin: 60px 0 30px 0; | margin: 60px 0 30px 0; | ||
border-radius: 6px; | |||
} | } | ||
. | .gray-subtitle { | ||
background: #f2f4f7; | |||
padding: 8px 12px; | |||
font-weight: 600; | font-weight: 600; | ||
margin: 30px 0 15px 0; | margin: 30px 0 15px 0; | ||
border-left: 4px solid #1e4b8e; | |||
} | } | ||
. | .card-grid { | ||
display: grid; | display: grid; | ||
grid-template-columns: repeat(3, 1fr); | grid-template-columns: repeat(3, 1fr); | ||
gap: 30px; | gap: 30px; | ||
margin-bottom: | margin-bottom: 40px; | ||
} | } | ||
. | .profile-card { | ||
border: 1px solid # | display: block; | ||
border: 1px solid #dce3ec; | |||
border-radius: 10px; | |||
text-align: center; | text-align: center; | ||
text-decoration: none; | |||
color: #1a2a3a; | |||
overflow: hidden; | |||
transition: 0.3s; | transition: 0.3s; | ||
background: white; | |||
} | } | ||
. | .profile-card:hover { | ||
transform: translateY(-4px); | transform: translateY(-4px); | ||
box-shadow: 0 8px 24px rgba(0,0,0,0.1); | |||
} | } | ||
. | .profile-card img { | ||
width: | width: 100%; | ||
height: | height: 220px; | ||
object-fit: cover; | object-fit: cover; | ||
display: block; | |||
} | } | ||
. | .profile-card .name { | ||
padding: 12px; | |||
font-weight: 600; | font-weight: 600; | ||
} | } | ||
. | .alumni-box { | ||
border: 1px solid #dce3ec; | |||
padding: 20px; | |||
border-radius: 8px; | |||
background: #fafbfc; | |||
text-align: center; | |||
} | } | ||
2026년 3월 2일 (월) 08:28 판
/* ============================= */
/* 구성원 페이지 카드형 확장 */
/* ============================= */
.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;
}