Common.css
North Korea Humanities
참고: 설정을 저장한 후에 바뀐 점을 확인하기 위해서는 브라우저의 캐시를 새로 고쳐야 합니다.
- 파이어폭스 / 사파리: Shift 키를 누르면서 새로 고침을 클릭하거나, Ctrl-F5 또는 Ctrl-R을 입력 (Mac에서는 ⌘-R)
- 구글 크롬: Ctrl-Shift-R키를 입력 (Mac에서는 ⌘-Shift-R)
- 인터넷 익스플로러: Ctrl 키를 누르면서 새로 고침을 클릭하거나, Ctrl-F5를 입력.
- 오페라: 메뉴 → 설정(맥의 경우 오페라 → 환경 설정)으로 이동한 다음 개인 정보 보호 및 보안 → 검색 데이터 지우기 → 캐시한 영상 및 파일을 누름.
/* 이 CSS 설정은 모든 스킨에 적용됩니다 */
cite {
box-shadow: inset 0 -20px 0 #FAFAFA;
}
@import url('/index.php?title=MediaWiki:Custom.css&action=raw&maxage=0&uncache=1');
/*241123 이청원 자료실 제작 by. JisunKim*/
/* 헤더 스타일 */
header {
background-color: #4CAF50;
color: white;
padding: 2rem 0;
}
header h1 {
text-align: center;
font-size: 2rem;
}
header p {
text-align: center;
font-size: 1.2rem;
margin-top: 1rem;
}
/* 메인 컨텐츠 스타일 */
main {
padding: 2rem;
}
/* 그리드 레이아웃 */
.grid-container {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 1.5rem;
justify-content: center;
}
/* 카드 스타일 */
.card {
background-color: white;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease-in-out;
}
.card:hover {
transform: translateY(-10px);
}
.card-img {
width: 100%;
height: 200px;
object-fit: cover;
}
.card-body {
padding: 1rem;
}
.card-title {
font-size: 1.5rem;
margin-bottom: 1rem;
color: #333;
}
.card-description {
font-size: 1rem;
color: #555;
margin-bottom: 1.5rem;
}
.card-link {
text-decoration: none;
background-color: #007bff;
color: white;
padding: 0.5rem 1rem;
border-radius: 5px;
text-align: center;
display: inline-block;
}
.card-link:hover {
background-color: #0056b3;
}