참고: 설정을 저장한 후에 바뀐 점을 확인하기 위해서는 브라우저의 캐시를 새로 고쳐야 합니다.
- 파이어폭스 / 사파리: Shift 키를 누르면서 새로 고침을 클릭하거나, Ctrl-F5 또는 Ctrl-R을 입력 (Mac에서는 ⌘-R)
- 구글 크롬: Ctrl-Shift-R키를 입력 (Mac에서는 ⌘-Shift-R)
- 인터넷 익스플로러 / 엣지: Ctrl 키를 누르면서 새로 고침을 클릭하거나, Ctrl-F5를 입력.
- 오페라: Ctrl-F5를 입력.
/* 메인 컨테이너 스타일 */
.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;
font-family: 'Noto Sans', sans-serif;
}
/* 헤더 스타일 */
.main-header {
font-size: 2.5em;
font-weight: 700;
color: #2d3748;
margin-bottom: 20px;
text-align: center;
}
/* 알림바 스타일 */
.alert-bar {
background-color: #007aff;
color: white;
padding: 15px;
border-radius: 8px;
font-size: 1.1em;
margin-bottom: 30px;
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;
}
/* 리스트 스타일 */
.section-content ul {
list-style: none;
padding: 0;
}
.section-content ul li {
font-size: 1.1em;
margin-bottom: 10px;
}
.section-content ul li a {
color: #007aff;
text-decoration: none;
}
.section-content ul li a:hover {
text-decoration: underline;
}
/* 테이블 스타일 */
table.wikitable {
width: 50%;
margin: 20px auto;
float: left;
text-align: center;
border-collapse: collapse;
border-radius: 8px;
overflow: hidden;
}
table.wikitable th, table.wikitable td {
padding: 10px;
border: 1px solid #ccc;
}
/* float 스타일 초기화 */
.clear {
clear: both;
}