|
|
| (같은 사용자의 중간 판 415개는 보이지 않습니다) |
| 1번째 줄: |
1번째 줄: |
| /* HTML Tag */
| |
| * {
| |
| outline: none;
| |
| }
| |
|
| |
| input:hover,
| |
| button:hover,
| |
| select:hover {
| |
| transition: 0.3s;
| |
| }
| |
|
| |
| html, body {
| |
| overflow-x: hidden;
| |
| overflow-y: overlay;
| |
| }
| |
|
| |
| body::-webkit-scrollbar {
| |
| display: none;
| |
| }
| |
|
| |
| body::-webkit-scrollbar {
| |
| width: 12px;
| |
| transition: 250ms;
| |
| }
| |
|
| |
| body::-webkit-scrollbar-thumb {
| |
| background: #adb5bdb6;
| |
| border-radius: 20px;
| |
| border: 3px solid transparent;
| |
| background-clip: padding-box;
| |
| transition: 250ms;
| |
| }
| |
|
| |
| body::-webkit-scrollbar-track {
| |
| background: transparent;
| |
| transition: 250ms;
| |
| }
| |
|
| |
| html {
| |
| font-size: 16px;
| |
| }
| |
|
| |
| body {
| |
| font-size: 15px;
| |
| font-weight: 400;
| |
| color: #212529;
| |
| }
| |
|
| |
| body,
| |
| h1,
| |
| h2,
| |
| h3,
| |
| h4,
| |
| h5,
| |
| h6 {
| |
| font-family: "Pretendard", "Apple SD Gothic Neo", "Spoqa Han Sans", "SpoqaHanSans",
| |
| "Noto Sans KR", "Noto Sans", "Noto Sans CJK KR", "NanumBarunGothic",
| |
| "Nanum Gothic", "KoPub Dotum", "Malgun Gothic", sans-serif;
| |
| margin: 0;
| |
| }
| |
|
| |
| h1,
| |
| h2,
| |
| h3,
| |
| h4,
| |
| h5,
| |
| h6,
| |
| b {
| |
| font-family: "Pretendard", "Apple SD Gothic Neo", "Spoqa Han Sans", "SpoqaHanSans",
| |
| "Noto Sans KR", "Noto Sans", "Noto Sans CJK KR", "NanumBarunGothic",
| |
| "Nanum Gothic", "KoPub Dotum", "Malgun Gothic", sans-serif;
| |
| }
| |
|
| |
| input[type="password"] {
| |
| font-family: sans-serif;
| |
| }
| |
|
| |
| h1 {
| |
| font-size: 2em;
| |
| }
| |
|
| |
| h2 {
| |
| font-size: 1.8em;
| |
| }
| |
|
| |
| h3 {
| |
| font-size: 1.6em;
| |
| }
| |
|
| |
| h4 {
| |
| font-size: 1.5em;
| |
| }
| |
|
| |
| h5 {
| |
| font-size: 1.3em;
| |
| }
| |
|
| |
| h6 {
| |
| font-size: 1.1em;
| |
| }
| |
|
| |
| ol,
| |
| ul,
| |
| p {
| |
| margin: 0;
| |
| padding: 0;
| |
| }
| |
|
| |
| p {
| |
| margin-bottom: 1rem;
| |
| }
| |
|
| |
| ol,
| |
| .mw-content-ltr ol,
| |
| .mw-content-rtl .mw-content-ltr ol {
| |
| margin: 0;
| |
| margin-left: 2.2rem;
| |
| margin-right: 1rem;
| |
| list-style-image: none;
| |
| }
| |
|
| |
| pre {
| |
| display: block;
| |
| color: #333;
| |
| word-break: break-all;
| |
| word-wrap: break-word;
| |
| background-color: #f5f8fa;
| |
| border: 1px solid #e1e8ed;
| |
| border-radius: 0.5rem;
| |
| padding: 0.8rem;
| |
| }
| |
|
| |
| a:focus {
| |
| outline: 0;
| |
| }
| |
|
| |
| p {
| |
| overflow-wrap: break-word;
| |
| }
| |
|
| |
| ul {
| |
| list-style-image: url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%23373a3c%22%2F%3E%0A%3C%2Fsvg%3E%0A);
| |
| }
| |
|
| |
| img {
| |
| max-width: 100%;
| |
| height: auto;
| |
| margin: 0;
| |
| }
| |
|
| |
| th[rowspan],
| |
| td[rowspan] {
| |
| position: relative;
| |
| }
| |
|
| |
| th[rowspan]:after,
| |
| td[rowspan]:after {
| |
| content: "";
| |
| position: absolute;
| |
| top: 0;
| |
| right: -1px;
| |
| width: 1px;
| |
| height: 100%;
| |
| /*background: #e0e0e0;*/
| |
| }
| |
|
| |
| input[type="search"] {
| |
| -webkit-appearance: none;
| |
| appearance: none;
| |
| /* Removes some iOS CSS Settings */
| |
| }
| |
|
| |
| textarea {
| |
| width: 100%;
| |
| border: 1px solid #e1e8ed;
| |
| padding: 0.5rem;
| |
| }
| |
|
| |
| hr {
| |
| border-top: 1px solid #e1e8ed;
| |
| }
| |
|
| |
| html input[type="button"]:hover,
| |
| html input[type="submit"]:hover,
| |
| button:hover {
| |
| background-color: #466DFA;
| |
| }
| |
|
| |
| label {
| |
| vertical-align: middle;
| |
| word-break: keep-all;
| |
| }
| |
|
| |
| del,
| |
| s,
| |
| strike {
| |
| color: #808080;
| |
| }
| |
| /* HTML Tag End */
| |
|
| |
| /* Content width, alian center */
| |
| .Liberty .nav-wrapper .navbar,
| |
| .Liberty .content-wrapper {
| |
| max-width: 1300px;
| |
| }
| |
| /* Content width, alian center End */
| |
|
| |
| /* Background Color */
| |
| .Liberty {
| |
| background-color: #f5f6f7;
| |
| }
| |
| /* Background Color End*/
| |
|
| |
| /* Nav */
| |
| .nav-wrapper {
| |
| padding-bottom: 3px !important;
| |
| padding-top: 3px !important;
| |
| box-shadow: none !important;
| |
| background: linear-gradient(to right, #005bfe, #466dfa);
| |
| }
| |
|
| |
| @media (max-width: 889.6px) {
| |
| .nav-wrapper {
| |
| background: #005bfe;
| |
| }
| |
| }
| |
|
| |
| .navbar {
| |
| padding-right: 0px !important;
| |
| padding-left: 0px !important;
| |
|
| |
| }
| |
|
| |
| @media (max-width: 1300px) {
| |
| .navbar {
| |
| padding-right: 8px !important;
| |
| padding-left: 8px !important;
| |
| }
| |
| }
| |
|
| |
|
| |
| .content-wrapper {
| |
| margin-top: 68px !important;
| |
| }
| |
|
| |
|
| |
| @media (max-width: 889.6px) {
| |
| .content-wrapper {
| |
| margin-top: 89.2px !important;
| |
| }
| |
| }
| |
|
| |
| .Liberty .nav-wrapper .navbar .form-inline {
| |
| padding: 0.4rem 0;
| |
| float: right;
| |
| }
| |
|
| |
| .Liberty .nav-wrapper .navbar .form-inline .form-control {
| |
| font-size: 0.8rem;
| |
| height: 2rem;
| |
| width: 16rem;
| |
| padding: 0.2rem 1rem;
| |
| border-color: #FFF;
| |
| border-radius: 0;
| |
| border-radius: 99rem;
| |
| }
| |
|
| |
| .Liberty .nav-wrapper .navbar .form-inline .btn {
| |
| height: 2.2rem;
| |
| color: #4f5b63;
| |
| padding: 0.2rem 0.4rem;
| |
| line-height: 22px;
| |
| }
| |
|
| |
| .Liberty .nav-wrapper .navbar .form-inline .btn:hover,
| |
| .Liberty .nav-wrapper .navbar .form-inline .btn:focus {
| |
| color: #fff;
| |
| outline: 0;
| |
| }
| |
|
| |
| .Liberty .nav-wrapper .navbar .form-inline .btn .fa,
| |
| .Liberty .nav-wrapper .navbar .form-inline .btn .fas,
| |
| .Liberty .nav-wrapper .navbar .form-inline .btn .far {
| |
| width: 0.9rem;
| |
| }
| |
|
| |
| .Liberty .nav-wrapper .navbar .navbar-login {
| |
| float: right;
| |
| padding-left: 0.8rem;
| |
| }
| |
|
| |
| .Liberty .nav-wrapper .navbar .navbar-login .fa,
| |
| .Liberty .nav-wrapper .navbar .navbar-login .fas,
| |
| .Liberty .nav-wrapper .navbar .navbar-login .far {
| |
| color: #fff;
| |
| padding: 0.7rem 0;
| |
| font-size: 1.5rem;
| |
| line-height: 1.4rem;
| |
| }
| |
|
| |
| .input-group-btn {
| |
| display: none !important;
| |
| }
| |
|
| |
| @media (max-width: 889.6px) {
| |
| .Liberty .nav-wrapper .navbar .form-inline {
| |
| padding-top: 0px !important;
| |
| }
| |
| }
| |
|
| |
| .Liberty .nav-wrapper .navbar .navbar-login .profile-img {
| |
| width: 2rem;
| |
| height: 2rem;
| |
| border-radius: 9999rem;
| |
| margin: 0;
| |
| border: none;
| |
| }
| |
|
| |
| .dropdown-menu {
| |
| margin-top: 3px !important;
| |
| }
| |
|
| |
| .Liberty .nav-wrapper,
| |
| .Liberty .nav-wrapper .navbar .form-inline .btn:hover,
| |
| .Liberty .nav-wrapper .navbar .form-inline .btn:focus,
| |
| .Liberty .content-wrapper .liberty-sidebar .live-recent-wrapper .live-recent .live-recent-header .nav .nav-item .nav-link.active::before,
| |
| .Liberty .content-wrapper .liberty-sidebar .live-recent-wrapper .live-recent .live-recent-header .nav .nav-item .nav-link:hover::before,
| |
| .Liberty .content-wrapper .liberty-sidebar .live-recent-wrapper .live-recent .live-recent-header .nav .nav-item .nav-link:focus::before,
| |
| .Liberty .content-wrapper .liberty-sidebar .live-recent-wrapper .live-recent .live-recent-header .nav .nav-item .nav-link:active::before,
| |
| .Liberty .content-wrapper .liberty-sidebar .live-recent-wrapper .live-recent .live-recent-footer .label,
| |
| .Liberty .content-wrapper .liberty-content .liberty-content-header .content-tools .tools-btn:hover,
| |
| .Liberty .content-wrapper .liberty-content .liberty-content-header .content-tools .tools-btn:focus,
| |
| .Liberty .content-wrapper .liberty-content .liberty-content-header .content-tools .tools-btn:active {
| |
| background-color: #005BFE;
| |
| }
| |
|
| |
| .Liberty .nav-wrapper .navbar .form-inline .btn:hover,
| |
| .Liberty .nav-wrapper .navbar .form-inline .btn:focus {
| |
| border-color: #317afe;
| |
| }
| |
|
| |
| .Liberty .content-wrapper .liberty-sidebar .live-recent-wrapper .live-recent .live-recent-header .nav .nav-item .nav-link.active::before,
| |
| .Liberty .content-wrapper .liberty-sidebar .live-recent-wrapper .live-recent .live-recent-header .nav .nav-item .nav-link:hover::before,
| |
| .Liberty .content-wrapper .liberty-sidebar .live-recent-wrapper .live-recent .live-recent-header .nav .nav-item .nav-link:focus::before,
| |
| .Liberty .content-wrapper .liberty-sidebar .live-recent-wrapper .live-recent .live-recent-header .nav .nav-item .nav-link:active::before {
| |
| border-bottom: 2px solid #005BFE;
| |
| }
| |
|
| |
| .Liberty .content-wrapper .liberty-sidebar .live-recent-wrapper .live-recent .live-recent-footer .label:hover,
| |
| .Liberty .nav-wrapper .navbar .navbar-nav .nav-item .nav-link:hover,
| |
| .Liberty .nav-wrapper .navbar .navbar-nav .nav-item .nav-link:focus {
| |
| background-color: #317afe;
| |
| border-radius: 8px;
| |
| }
| |
|
| |
| .dropdown-menu .dropdown-item:hover {
| |
| background-color: #005bfe;
| |
| border-radius: 0px;
| |
| }
| |
|
| |
| .Liberty .content-wrapper #liberty-bottombtn,
| |
| .Liberty .content-wrapper #liberty-bottombtn:hover {
| |
| background-color: #005BFE;
| |
| }
| |
|
| |
| /* Nav End */
| |
|
| |
| /* Content */
| |
|
| |
| .liberty-content {
| |
| padding-bottom: 0px !important;
| |
| margin-bottom: 30px !important;
| |
| }
| |
|
| |
|
| .liberty-content-header { | | .liberty-content-header { |
| padding-top: 30px !important;
| | border-bottom: 0.8px !important; |
| padding-right: 24px !important;
| |
| padding-left: 24px !important;
| |
| background: #FFF !important;
| |
| border-bottom: 0px !important; | |
| }
| |
| | |
| .liberty-content-main {
| |
| padding-right: 24px !important;
| |
| padding-left: 24px !important;
| |
| }
| |
| | |
| .liberty-footer {
| |
| padding-right: 24px !important;
| |
| padding-left: 24px !important;
| |
| background: #FFF !important;
| |
| }
| |
| | |
| .content-tools {
| |
| padding-top: 0px !important;
| |
| padding-right: 0px !important;
| |
| }
| |
| | |
| .title {
| |
| font-size: 18px;
| |
| padding: 0px !important;
| |
| }
| |
| | |
| .alert {
| |
| margin-top: 0px !important;
| |
| margin-right: 0px !important;
| |
| margin-left: 0px !important;
| |
| margin-bottom: 40px !important;
| |
| border: 0px !important;
| |
| box-shadow: 0px 4px 20px rgba(0,0,0,.05);
| |
| }
| |
| | |
| .alert-info {
| |
| color: #0b3574;
| |
| background-color: #cee2fd;
| |
| border-color: #7eaaed
| |
| }
| |
| .alert-info hr {
| |
| border-top-color: #7eaaed
| |
| }
| |
| .alert-info .alert-link {
| |
| color: #0b3574
| |
| }
| |
| | |
| .contentSub #mw-content-subtitle .subpages {
| |
| display: none;
| |
| }
| |
| | |
| | |
| .contentSub #mw-content-subtitle #mw-redirectedfrom {
| |
| margin-right: 0.5rem;
| |
| }
| |
| | |
| .liberty-content-header #mw-content-subtitle:has(.mw-revision) + .footer-info {
| |
| display: none;
| |
| }
| |
| | |
| .contentSub #mw-content-subtitle:has(.mw-redirectedfrom),
| |
| .contentSub #mw-content-subtitle:has(.mw-revision) {
| |
| padding: .5rem .75rem;
| |
| background-color: #cee2fd;
| |
| border: 1px solid #7eaaed;
| |
| border-radius: 0.5rem;
| |
| }
| |
| | |
| .contentSub:not(:has(#mw-content-subtitle *)),
| |
| .contentSub:has(#mw-content-subtitle .mw-history-subtitle),
| |
| .contentSub:has(#mw-content-subtitle .subpages) {
| |
| display: none;
| |
| }
| |
| | |
| .contentSub:has(#mw-content-subtitle .mw-redirectedfrom) {
| |
| display: block;
| |
| }
| |
| | |
| .liberty-content-header:has(.mw-revision) .footer-info {
| |
| display: none;
| |
| }
| |
| | |
| .contentSub .mw-revision {
| |
| display: flex;
| |
| gap: 1rem;
| |
| }
| |
| | |
| .contentSub .mw-revision #mw-revision-info .mw-usertoollinks {
| |
| font-size: 75%;
| |
| margin-right: 4px;
| |
| }
| |
| | |
| .contentSub .mw-revision #mw-revision-info .comment {
| |
| display: none;
| |
| }
| |
| | |
| | |
| h2 span.mw-headline a[href="#toc"],
| |
| h3 span.mw-headline a[href="#toc"],
| |
| h4 span.mw-headline a[href="#toc"] {
| |
| margin-right: 3px !important;
| |
| }
| |
| | |
| h2 span.mw-editsection,
| |
| h3 span.mw-editsection,
| |
| h4 span.mw-editsection {
| |
| float: right !important; /* 오른쪽 배열 */
| |
| font-size: 12px !important; /* 글자 크기 작게 */
| |
| font-weight: bold !important; /* 볼드체 */
| |
| color: #337ab7 !important; /* 파란색 글씨 */
| |
| margin-left: 10px !important; /* 왼쪽 여백을 주어 글자가 다른 요소와 겹치지 않도록 함 */
| |
| }
| |
| | |
| h2, h3, h4 {
| |
| margin-top: 32.4px !important;
| |
| margin-bottom: 10px !important;
| |
| }
| |
| | |
| h2 span.mw-headline {
| |
| font-size: 27px !important;
| |
| font-weight: bold !important; /* 볼드체 */
| |
| }
| |
| | |
| h3 span.mw-headline,
| |
| h4 span.mw-headline {
| |
| font-size: 27px !important;
| |
| font-weight: bold !important; /* 볼드체 */
| |
| } | | } |