블랭크 스타일 CSS
평가: +4+x

이건 뭔가요?

이건 블랭크 스타일 CSS입니다. Placeholder McDPlaceholder McDHarryBlankHarryBlank가 나중에 작품에 쓰기 위해 만든 시각 스타일입니다. 다양한 범위의 작품에 간단히 적용하고 갱신할 수 있도록 만들어졌습니다. 사실상 기능은 EstrellaYoshteEstrellaYoshte반그림자 테마의 라이트 버전에 몇 가지 블랭크 스타일 전용 사항을 추가한 것입니다.

아마 분명히 다른 테마, 블랙 하이라이터 테마 대부분과 함께 작동하지 않습니다. 뭔 일이 생기는 지 보고 싶은게 아니라면 하지 마세요.


이용법

이 테마를 이용하려면, 아래 구문을 복사해서 여러분의 페이지 최상단에 넣어주세요.

[[include :scpko:theme:blankstyle]]

이 테마에는 다음 구성요소가 포함되어 있다는 사실에 유의해주세요.

이 테마를 정보-평점 모듈과 함께 이용할 경우 모듈을 [[div]]로 감싸 정보 패널이 페이드인 구성요소 때문에 지연되는 것을 방지해주세요. 이 테마를 한 화면 전체보다 긴 페이지에서 이용한다면, 첫 아니면 두 번째 화면 바깥에 있는 모든 내용물을 [[div]]로 감싸서 화면 밖에서 동시에 로딩될 수 있게 만들어주세요.

이 메타는 PeppersGhostPeppersGhost이미지 블록 페포와 EstrellaYoshte의 중앙정렬 이미지와 이미지 블록에서 코드를 빌려서 더욱 작은 화면에서 더욱 미적으로 보이게 해줍니다. (읽기: 모바일) 또한 에스트렐라의 천재적인 사이드박스 기술을 반그림자 테마에서 빌려왔고. 대부분의 코드는 서류더미 테마에서 파생된 것입니다.


ACS 색상 표

이하의 표는 사용자 지정 색 헤더 셀이 있으며 표를 div로 감싸서 사용할 수 있으며, div들의 이름은 각각 "table1"에서 "table5"입니다.참고로 scp-image-block을 위의 div 중 하나로 감싸면 마찬가지로 캡션이 변합니다. 하나 더 참고로 이건 더 나은 각주이며, 자세한 사용법은 상단의 링크에서 찾을 수 있습니다. 각각 ACS 구성요소 바의 5가지 기본 등급에 대응합니다.

평범한 표입니다.
테스트는 재밌어
초록 표입니다.
테스트는 역시 재밌어
파랑 표입니다.
테스트는 역시 재밌어
노랑 표입니다.
테스트는 역시 재밌어
주황 표입니다.
테스트는 역시 재밌어
빨강 표입니다.
테스트는 역시 재밌어

해리는 여지껏 표를 수동으로 만들고 있었습니다. 얼간이 같으니라고.


소스코드

/* source: http://ah-sandbox.wikidot.com/component:collapsible-sidebar-x1 */
 
#top-bar .open-menu a {
        position: fixed;
        top: 0.5em;
        left: 0.5em;
        z-index: 5;
        font-family: 'Nanum Gothic', san-serif;
        font-size: 30px;
        font-weight: 700;
        width: 30px;
        height: 30px;
        line-height: 0.9em;
        text-align: center;
        border: 0.2em solid #888;
        background-color: #fff;
        border-radius: 3em;
        color: #888;
        pointer-events: auto;
}
 
@media not all and (max-width: 767px) {
 
    #top-bar .mobile-top-bar {
        display: block;
        pointer-events: none;
    }
 
    #top-bar .mobile-top-bar li {
        display: none;
    }
 
    #main-content {
        max-width: 708px;
        margin: 0 auto;
        padding: 0;
        transition: max-width 0.2s ease-in-out;
    }
 
    #side-bar {
        display: block;
        position: fixed;
        top: 0;
        left: -18rem;
        width: 15.25rem;
        height: 100%;
        margin: 0;
        overflow-x: hidden;
        overflow-y: auto;
        z-index: 10;
        padding: 1em 1em 0 1em;
        background-color: rgba(0,0,0,0.1);
        transition: left 0.4s ease-in-out;
 
        scrollbar-width: thin;
    }
 
    #side-bar:target {
        left: 0;
    }
    #side-bar:focus-within:not(:target) {
        left: 0;
    }
 
    #side-bar:target .close-menu {
        display: block;
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        margin-left: 19.75em;
        opacity: 0;
        z-index: -1;
        visibility: visible;
    }
    #side-bar:not(:target) .close-menu { display: none; }
 
    #top-bar .open-menu a:hover {
        text-decoration: none;
    }
 
    /* FIREFOX-SPECIFIC COMPATIBILITY METHOD */
    @supports (-moz-appearance:none) {
    #top-bar .open-menu a {
        pointer-events: none;
    }
    #side-bar:not(:target) .close-menu {
        display: block;
        pointer-events: none;
        user-select: none;
    }
 
    /* This pseudo-element is meant to overlay the regular sidebar button
    so the fixed positioning (top, left, right and/or bottom) has to match */
 
    #side-bar .close-menu::before {
        content: "";
        position: fixed;
        z-index: 5;
        display: block;
 
        top: 0.5em;
        left: 0.5em;
 
        border: 0.2em solid transparent;
        width: 30px;
        height: 30px;
        font-size: 30px;
        line-height: 0.9em;
 
        pointer-events: all;
        cursor: pointer;
    }
    #side-bar:focus-within {
        left: 0;
    }
    #side-bar:focus-within .close-menu::before {
        pointer-events: none;
    }
    }
}

/* source: http://ah-sandbox.wikidot.com/component:collapsible-sidebar-x1 */
 
#top-bar .open-menu a {
        position: fixed;
        top: 0.5em;
        left: 0.5em;
        z-index: 5;
        font-family: 'Nanum Gothic', san-serif;
        font-size: 30px;
        font-weight: 700;
        width: 30px;
        height: 30px;
        line-height: 0.9em;
        text-align: center;
        border: 0.2em solid #888;
        background-color: #fff;
        border-radius: 3em;
        color: #888;
        pointer-events: auto;
}
 
@media not all and (max-width: 767px) {
 
    #top-bar .mobile-top-bar {
        display: block;
        pointer-events: none;
    }
 
    #top-bar .mobile-top-bar li {
        display: none;
    }
 
    #main-content {
        max-width: 708px;
        margin: 0 auto;
        padding: 0;
        transition: max-width 0.2s ease-in-out;
    }
 
    #side-bar {
        display: block;
        position: fixed;
        top: 0;
        left: -18rem;
        width: 15.25rem;
        height: 100%;
        margin: 0;
        overflow-x: hidden;
        overflow-y: auto;
        z-index: 10;
        padding: 1em 1em 0 1em;
        background-color: rgba(0,0,0,0.1);
        transition: left 0.4s ease-in-out;
 
        scrollbar-width: thin;
    }
 
    #side-bar:target {
        left: 0;
    }
    #side-bar:focus-within:not(:target) {
        left: 0;
    }
 
    #side-bar:target .close-menu {
        display: block;
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        margin-left: 19.75em;
        opacity: 0;
        z-index: -1;
        visibility: visible;
    }
    #side-bar:not(:target) .close-menu { display: none; }
 
    #top-bar .open-menu a:hover {
        text-decoration: none;
    }
 
    /* FIREFOX-SPECIFIC COMPATIBILITY METHOD */
    @supports (-moz-appearance:none) {
    #top-bar .open-menu a {
        pointer-events: none;
    }
    #side-bar:not(:target) .close-menu {
        display: block;
        pointer-events: none;
        user-select: none;
    }
 
    /* This pseudo-element is meant to overlay the regular sidebar button
    so the fixed positioning (top, left, right and/or bottom) has to match */
 
    #side-bar .close-menu::before {
        content: "";
        position: fixed;
        z-index: 5;
        display: block;
 
        top: 0.5em;
        left: 0.5em;
 
        border: 0.2em solid transparent;
        width: 30px;
        height: 30px;
        font-size: 30px;
        line-height: 0.9em;
 
        pointer-events: all;
        cursor: pointer;
    }
    #side-bar:focus-within {
        left: 0;
    }
    #side-bar:focus-within .close-menu::before {
        pointer-events: none;
    }
    }
}
/*
    BLANKSTYLE CSS
    [2021 Wikidot Theme]
    By Placeholder McD and HarryBlank
    Based on:
       Paperstack Theme by EstrellaYoshte
       Penumbra Theme by EstrellaYoshte
*/
@import url('https://fonts.googleapis.com/css?family=Do+Hyeon');
 
#header h1 a::before, #header h2::before {
    font-family: 'Do Hyeon', 'Montserrat', sans-serif !important;
}
 
#header h1 a::before {
  content: var(--header-title, "제43연구격리기지");
}
 
#header h2::before {
  content: var(--header-subtitle, "흔한 관행을 부수다");
}
 
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Do Hyeon', 'Montserrat', sans-serif !important;
}
🈲: SCP 재단의 모든 컨텐츠는 15세 미만의 어린이 혹은 청소년이 시청하기에 부적절합니다.
따로 명시하지 않는 한 이 사이트의 모든 콘텐츠는 크리에이티브 커먼즈 저작자표시-동일조건변경허락 3.0 라이선스를 따릅니다.