|
|
| 1번째 줄: |
1번째 줄: |
| /* 이 CSS 설정은 모든 스킨에 적용됩니다 */
| |
| /* 큰 이미지를 반응형 100%로 만드는 클래스 */
| |
| .responsive-big-img img {
| |
| width: 100% !important;
| |
| max-width: 100% !important;
| |
| height: auto !important;
| |
| }
| |
|
| |
|
| /* 폰트 변경 */
| |
| body {
| |
| font-family: "Noto Sans KR", "Noto Sans", sans-serif;
| |
| }
| |
|
| |
| /* 위키 안내 상자 */
| |
| .wiki-notice {
| |
| border: 1px solid #a2a9b1;
| |
| padding: 12px;
| |
| margin: 10px 0;
| |
| }
| |
|
| |
| .wiki-notice-orange {
| |
| border-top: 5px solid #f28c28;
| |
| }
| |
|
| |
| .wiki-notice-red {
| |
| border-top: 5px solid #d33;
| |
| }
| |
|
| |
| .wiki-notice-blue {
| |
| border-top: 5px solid #36c;
| |
| }
| |
|
| |
| .wiki-notice-green {
| |
| border-top: 5px solid #14866d;
| |
| }
| |
|
| |
| /* 유튜브 삽입 사이즈 설정 */
| |
| iframe {
| |
| width: 100%;
| |
| max-width: 800px;
| |
| aspect-ratio: 16 / 9;
| |
| height: auto;
| |
| }
| |
|
| |
| /* 투표 양식 사이즈 지정 */
| |
| .ajaxpoll {
| |
| width: 90% !important;
| |
| max-width: 400px !important;;
| |
| }
| |
|
| |
| /* 패치 내역 테이블 사이즈 변경 */
| |
| .patch-history {
| |
| width:100% !important;
| |
| }
| |
|
| |
| .patch-history tbody {
| |
| display: table;
| |
| width: 100%;
| |
| box-sizing: border-box;
| |
| }
| |
|
| |
| /* 달력 사이즈 설정 */
| |
| .google-calendar {
| |
| width: 100%;
| |
| max-width: 100%;
| |
| }
| |
|
| |
| .google-calendar iframe {
| |
| display: block;
| |
| width: 100%;
| |
| height: 800px;
| |
| border: solid 1px #777;
| |
| }
| |