참고: 설정을 저장한 후에 바뀐 점을 확인하기 위해서는 브라우저의 캐시를 새로 고쳐야 합니다.
- 파이어폭스 / 사파리: Shift 키를 누르면서 새로 고침을 클릭하거나, Ctrl-F5 또는 Ctrl-R을 입력 (Mac에서는 ⌘-R)
- 구글 크롬: Ctrl-Shift-R키를 입력 (Mac에서는 ⌘-Shift-R)
- 인터넷 익스플로러 / 엣지: Ctrl 키를 누르면서 새로 고침을 클릭하거나, Ctrl-F5를 입력.
- 오페라: Ctrl-F5를 입력.
/* 이 CSS 설정은 모든 스킨에 적용됩니다 */
/* 전체적인 스타일 설정 */
body {
font-family: 'Noto Sans', sans-serif; /* 깔끔한 Sans-serif 글꼴 */
background-color: #f8f9fb; /* 부드러운 배경색 */
color: #333; /* 기본 글자색 */
margin: 0;
padding: 0;
}
/* 메인 페이지 컨테이너 */
.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;
}
/* 헤더 스타일 */
.main-header {
font-size: 2.5em;
font-weight: 700;
color: #2d3748;
margin-bottom: 20px;
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;
}
/* 카드 스타일 */
.card {
background-color: #ffffff;
padding: 20px;
border-radius: 12px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.03);
transition: transform 0.3s, box-shadow 0.3s;
text-align: center;
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.card-title {
font-size: 1.2em;
font-weight: 600;
margin-bottom: 10px;
color: #1a202c;
}
.card-description {
font-size: 0.9em;
color: #4a5568;
line-height: 1.6;
}
/* 버튼 스타일 */
button {
background-color: #007aff;
color: white;
padding: 10px 20px;
border: none;
border-radius: 8px;
font-size: 1em;
cursor: pointer;
transition: background-color 0.3s;
}
button:hover {
background-color: #005bb5;
}