|
|
1번째 줄: |
1번째 줄: |
| /* 메인 컨테이너 스타일 */
| |
| .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;
| |
| }
| |