| Sidewinder |
|---|
| Author: |
| Published on 10 Aug 2018 15:27 |
/* 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; } @media (min-width: 768px) { .mobile-top-bar { display: block; } .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!important; position: fixed; top: 0; left: -19em; width: 17em; height: 100%; margin: 0; overflow-y: auto; z-index: 10; padding: 0.3em 0.675em; background-color: rgba(0,0,0,0.1); transition: left 0.5s ease-in-out; } #side-bar:target { display: block; left: 0; width: 17em; margin: 0; z-index: 10; } #side-bar:target .close-menu { display: block; position: fixed; width: 100%; height: 100%; top: 0; left: 0; z-index: -1; } #top-bar .open-menu a:hover { text-decoration: none; } .close-menu { margin-left: 19em; opacity: 0; } }
What this is
A bunch of miscellaneous CSS 'improvements' that I, Croquembouche, use on a bunch of pages because I think it makes them easier to deal with.
The changes this component makes are bunch of really trivial modifications to ease the writing experience and to make documenting components/themes a bit easier (which I do a lot). It doesn't change anything about the page visually for the reader — the changes are for the writer.
I wouldn't expect translations of articles that use this component to also use this component, unless the translator likes it and would want to use it anyway.
This component probably won't conflict with other components or themes, and even if it does, it probably won't matter too much.
Usage
On any wiki:
[[include :scp-wiki:component:croqstyle]]
This component is designed to be used on other components. When using on another component, be sure to add this inside the component's [[iftags]] block, so that users of your component are not forced into also using Croqstyle.
Related components
Other personal styling components (which change just a couple things):
Personal styling themes (which are visual overhauls):
CSS changes
Reasonably-sized footnotes
Stops footnotes from being a million miles wide, so that you can actually read them.
.hovertip { max-width: 400px; }
Monospace edit/code
Makes the edit textbox monospace, and also changes all monospace text to Fira Code, the obviously superior monospace font.
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;700&display=swap'); :root { --mono-font: "Fira Code", Cousine, monospace; } #edit-page-textarea, .code pre, .code p, .code, tt, .page-source { font-family: var(--mono-font); } .code pre * { white-space: pre; } .code *, .pre * { font-feature-settings: unset; }
Teletype backgrounds
Adds a light grey background to <tt> elements ({{text}}), so code snippets stand out more.
tt { background-color: var(--swatch-something-bhl-idk-will-fix-later, #f4f4f4); font-size: 85%; padding: 0.2em 0.4em; margin: 0; border-radius: 6px; }
No more bigfaces
Stops big pictures from appearing when you hover over someone's avatar image, because they're stupid and really annoying and you can just click on them if you want to see the big version.
.avatar-hover { display: none !important; }
Breaky breaky
Any text inside a div with class nobreak has line-wrapping happen between every letter.
.nobreak { word-break: break-all; }
Code colours
Add my terminal's code colours as variables. Maybe I'll change this to a more common terminal theme like Monokai or something at some point, but for now it's just my personal theme, which is derived from Tomorrow Night Eighties.
Also, adding the .terminal class to a fake code block as [[div class="code terminal"]] gives it a sort of pseudo-terminal look with a dark background. Doesn't work with [[code]], because Wikidot inserts a bunch of syntax highlighting that you can't change yourself without a bunch of CSS. Use it for non-[[code]] code snippets only.
Quick tool to colourise a 'standard' Wikidot component usage example with the above vars: link
:root { --c-bg: #393939; --c-syntax: #e0e0e0; --c-comment: #999999; --c-error: #f2777a; --c-value: #f99157; --c-symbol: #ffcc66; --c-string: #99cc99; --c-operator: #66cccc; --c-builtin: #70a7df; --c-keyword: #cc99cc; } .terminal, .terminal > .code { color: var(--c-syntax); background: var(--c-bg); border: 0.4rem solid var(--c-comment); border-radius: 1rem; }
Debug mode
Draw lines around anything inside .debug-mode. The colour of the lines is red but defers to CSS variable --debug-colour.
You can also add div.debug-info.over and div.debug-info.under inside an element to annotate the debug boxes — though you'll need to make sure to leave enough vertical space that the annotation doesn't overlap the thing above or below it.
…like this!
.debug-mode, .debug-mode *, .debug-mode *::before, .debug-mode *::after { outline: 1px solid var(--debug-colour, red); position: relative; } .debug-info { position: absolute; left: 50%; transform: translateX(-50%); font-family: 'Fira Code', monospace; font-size: 1rem; white-space: nowrap; } .debug-info.over { top: -2.5rem; } .debug-info.under { bottom: -2.5rem; } .debug-info p { margin: 0; }
@import url(https://fonts.googleapis.com/css2?family=Architects+Daughter&display=swap); @import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&display=swap); @import url(https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;700&display=swap); /* Flopstyle CSS Theme * [2020 Wikidot Theme] * Created by Lt Flops * Select CSS Styles Are Credited Where Necessary * -- (CC BY-SA 3.0) -- **/ /* -------- SITE HEADER -------- */ a, body, span{ word-break: unset; } #header h1 a, #header h1 a::before{ color: hsl(0, 0%, 93%); text-shadow: none; } #header h1 a{ font-family: "Montserrat", "Arial", sans-serif; font-size: 170%; letter-spacing: 0; } #header h2 span, #header h2 span::before{ color: hsl(60, 62%, 85%); font-family: "Montserrat", "Arial", sans-serif; font-weight: 500; text-shadow: none; } /* -------- TOP-BAR -------- */ #search-top-box, #top-bar, #login-status{ right: 0; } #search-top-box-form input[type="submit"]{ font-size: unset; } #search-top-box-input, #search-top-box-form input[type=submit]{ background: hsl(0, 0%, 20%); border-color: hsl(0, 0%, 60%); border-radius: 0; } #search-top-box-input:hover, #search-top-box-input:focus, #search-top-box-form input[type="submit"]:hover, #search-top-box-form input[type="submit"]:focus{ background-color: hsl(0, 0%, 30%); border-color: hsl(0, 0%, 70%); } #top-bar .open-menu a{ border-radius: unset; border-width: .1em; } /* -------- SIDE-BAR -------- */ #side-bar{ background-color: hsl(0, 0%, 50%); } #side-bar:target{ box-shadow: 0 0 90px 90px hsla(0, 0%, 0%, .3); } #side-bar .side-block{ border-color: hsl(0, 0%, 20%); border-radius: 0; } #side-bar .heading{ color: hsl(0, 0%, 5%); border-bottom: solid 1px hsl(0, 0%, 20%); } /* -------- SIDEBOXES -------- * By EstrellaYoshte * Adapted From 'Penumbra Theme' **/ .flavourText{ margin: auto; margin-bottom: .5em; padding: .25em; border: 1px solid #888; } #page-content .authorbox tr td, #page-content .sidebox tr td, #page-content .authorbox tr th, #page-content .sidebox tr th{ padding: .25em; } #page-content .authorbox tr td, #page-content .authorbox tr th, #page-content .authorbox .flavourText{ width: 15.234em; } .limit{ margin-bottom: -1rem; line-height: 141%; z-index: 5; } .limit br{ display: block; } .anchor{ position: sticky; height: 0; top: 0; z-index: 5; } .authorbox, .sidebox{ position: absolute; width: calc((100vw - 870px) / 2); max-height: calc(100vh - 18rem); margin: 0 8px 0 0; padding: .14rem; box-sizing: border-box; overflow: auto; z-index: 5; } .authorbox{ max-width: calc((100vw - 921.2px) / 2) !important; top: .5em; right: 103.5%; } .sidebox{ top: -1em; left: 103.5%; padding-left: 1em; background: hsl(0, 0%, 100%); border: 1px solid hsl(0, 0%, 73%); border-left: 8px solid var(--accentColor); } /* -------- Sidebox Mobile Optimization Courtesy of Woedenaz -------- */ @media (max-width: 1079px){ .sidebox{ width: auto; max-width: 65vw !important; top: .75rem; right: calc(((100vw - 45.8rem) / 2) * -1); left: initial; padding: 0 .4rem; background-color: var(--accentColor); border: 1px solid hsl(0, 0%, 73%); border-left: 8px solid var(--accentColor); border-radius: 0; overflow: visible; -webkit-clip-path: inset(-.125rem -.25rem 0 calc(100% - 1.275rem)); clip-path: inset(-.125rem -.25rem 0 calc(100% - 1.275rem)); -webkit-transition: color .2s ease-in-out .1s, -webkit-box-shadow .5s ease-in-out .1s, -webkit-clip-path .5s ease-in-out .1s; transition: color .2s ease-in-out .1s, -webkit-box-shadow .5s ease-in-out .1s, -webkit-clip-path .5s ease-in-out .1s; -o-transition: color .2s ease-in-out .1s, box-shadow .5s ease-in-out .1s, clip-path .5s ease-in-out .1s; transition: color .2s ease-in-out .1s, box-shadow .5s ease-in-out .1s, clip-path .5s ease-in-out .1s; transition: color .2s ease-in-out .1s, box-shadow .5s ease-in-out .1s, clip-path .5s ease-in-out .1s, -webkit-box-shadow .5s ease-in-out .1s, -webkit-clip-path .5s ease-in-out .1s; } .sidebox::before, .sidebox::after{ content: " "; position: absolute; right: 0; } .sidebox::before{ width: 0; height: 0; top: calc(50% - .75rem); border-top: .75rem solid transparent; border-bottom: .75rem solid transparent; border-right: .75rem solid var(--accentColor); z-index: 10; transition: border .1s ease-in-out .1s; } .sidebox::after{ width: 100%; max-width: .75rem; height: 100%; max-height: calc(100vh - 18rem); top: 0; background-color: hsl(0, 0%, 100%); z-index: -1; transition: box-shadow .5s ease-in-out .1s, max-width .5s ease-in-out .1s; } .sidebox > *{ opacity: 0; -webkit-transition: opacity .2s ease-in-out .2s; -o-transition: opacity .2s ease-in-out .2s; transition: opacity .2s ease-in-out .2s; } .sidebox:hover{ overflow: visible; -webkit-clip-path: inset(-.125rem -.25rem 0 0); clip-path: inset(-.125rem -.25rem 0 0); -webkit-transition: color .5s ease-in-out .2s, right .5s ease-in-out .1s, -webkit-clip-path .5s ease-in-out .1s, -webkit-box-shadow .5s ease-in-out .1s; transition: color .5s ease-in-out .2s, right .5s ease-in-out .1s, -webkit-clip-path .5s ease-in-out .1s, -webkit-box-shadow .5s ease-in-out .1s; -o-transition: color .5s ease-in-out .2s, right .5s ease-in-out .1s, clip-path .5s ease-in-out .1s, box-shadow .5s ease-in-out .1s; transition: color .5s ease-in-out .2s, right .5s ease-in-out .1s, clip-path .5s ease-in-out .1s, box-shadow .5s ease-in-out .1s; transition: color .5s ease-in-out .2s, right .5s ease-in-out .1s, clip-path .5s ease-in-out .1s, box-shadow .5s ease-in-out .1s, -webkit-clip-path .5s ease-in-out .1s, -webkit-box-shadow .5s ease-in-out .1s; } .sidebox:hover::before{ border-top: 0 solid transparent; border-bottom: 0 solid transparent; } .sidebox:hover::after{ max-width: 100%; right: 0; } .sidebox:hover > *{ opacity: 1; } } @media (max-width:768px){ .sidebox, .sidebox:hover{ right: calc(((100vw - (100% - 3rem)) / 2) * -1 + 1rem); } } @media (max-width: 1079px){ .authorbox{ display: none; visibility: hidden; } } /* -------- GENERAL -------- */ :root{ --accentColor: hsl(0, 100%, 30%); --vivid-lime-green: hsl(112, 77%, 48%); } body{ color: hsl(0, 0%, 5%); word-break: unset; } #search-top-box-input, #search-top-box-input:hover, #search-top-box-input:focus, #search-top-box-form input[type=submit], #search-top-box-form input[type=submit]:hover, #search-top-box-form input[type=submit]:focus, #top-bar ul li ul, #side-bar .side-block, .page-rate-widget-box, .scp-image-block{ box-shadow: none; } /* -------- INFO BAR -------- */ body{ --barColour: hsl(0, 89%, 18%); } .u-faq{ display: none; } .info-container .collapsible-block-content{ padding: 0 .5em 30px; } .info-container .collapsible-block-content .wiki-content-table, .footer-wikiwalk-nav .collapsible-block .wiki-content-table{ width: 90%; } /* -------- INFO PANE -------- */ .creditRate{ margin-right: 0 !important; } .rate-box-with-credit-button{ border-radius: 0 !important; box-shadow: none !important; } .creditButton p a:hover, .creditButtonStandalone p a:hover{ color: var(--vivid-lime-green) !important; } div.credit.first .wiki-content-table { width: 100%; } /* -------- PAGE RATING -------- */ .page-rate-widget-box{ margin-right: 0; } .page-rate-widget-box, .page-rate-widget-box .rate-points{ border-radius: 0; } .page-rate-widget-box .cancel, .page-rate-widget-box .cancel a:hover{ border-radius: 0 !important; } /* -------- FORMATTING | [GENERAL] -------- */ #page-content h1, #page-content h2, #page-content h3, #page-content h4, #page-content h5, #page-content h6{ display: flex; flex-direction: column; justify-content: center; margin-bottom: .57em; text-align: center; word-break: unset; } hr{ height: 0; margin: 1em 0; background-color: transparent; border-top: 1px solid hsl(0, 0%, 67%); } .collapsible-block-link{ font-size: 120%; font-weight: bold; } .info-container .collapsible-block-link{ font-size: 100%; } ol li{ margin: 0 0 1em; } ul{ margin:1em 0; } .footnotes-footer, .bibitems{ padding: 0 0 .5em; } /* -------- IMAGE BLOCK -------- */ .scp-image-block .scp-image-caption{ font-size: 95%; } .scp-image-block.block-right{ margin: 0 0 1em 2em; } /* -------- CUSTOM DIV BLOCKS -------- */ .raisa-header, .pink-header, .oracle-header{ margin-bottom: 1em; padding: 0 .5em; text-align: center; } .raisa-header{ /* ---- RAISA Notice Header ---- */ background: hsl(60, 65%, 85%); border: 1px solid hsl(0, 0%, 60%); } .pink-header{ /* ---- Pretty Header ---- */ background: hsl(350, 100%, 85%); border: 1px solid hsl(0, 4%, 36%); } .pink-header hr{ border-color: hsl(0, 4%, 36%); } .oracle-header{ /* ---- SPC's 'From the Desk of ORACLE' Header ---- */ color: hsl(208, 100%, 97%); background: hsl(208, 67%, 44%); border: 2px solid hsl(0, 0%, 5%); } .oracle-header hr{ border-color: hsl(208, 100%, 97%); } .img-resize img{ /* ---- Header Icons (See Example Formatting) ---- */ float: left; width: auto; height: 8em; margin: .5em; } blockquote, /* ---- Regular Quote Block ---- */ div.blockquote{ background-color: hsl(0, 0%, 96%); border: 3px double hsl(0, 0%, 60%); } .alt-blockquote{ /* ---- Alternative Quote Block ---- */ margin: 1em 0; padding: 0 1em; background-color: hsl(0, 0%, 96%); border: 1px solid hsl(0, 0%, 60%); border-radius: 1em; } .lightweight{ /* ---- Lightweight Quote Block ---- */ margin: 1em 3em; padding: 0 1em; background-color: hsl(0, 0%, 90%); text-align: left; } .card-block{ /* ---- Decorative Quote Block ---- */ margin: 1em 0; padding: .6em 1.2em; background: hsl(220, 15%, 93%); border-left: 8px solid var(--accentColor); border-radius: .48em; } blockquote hr, div.blockquote hr, .alt-blockquote hr, .lightweight hr, .card-block hr{ border-color: hsl(0, 0%, 67%); } .log-header{ /* ---- Interview/Exploration Log Header ---- */ margin-bottom: 1em; padding: 0 1em; background: hsl(0, 0%, 96%); border: 3px dashed hsl(0, 0%, 60%); border-radius: 2em; } .report-box{ /* ---- Report Block ---- */ margin: 1em 0; padding: 0 1em; background-color: hsl(0, 0%, 100%); border: medium solid hsl(0, 0%, 5%); } .report-box hr{ border-color: hsl(0, 0%, 5%); } .realistic-shadow{ /* ---- Better Shadows ---- */ margin: 1em 0 2em 0; box-shadow: 0 1px 1px hsla(0, 0%, 0%, .23), 0 2px 2px hsla(0, 0%, 0%, .18), 0 4px 4px hsla(0, 0%, 0%, .15), 0 8px 8px hsla(0, 0%, 0%, .13); } .report-box.red-tint{ /* ---- Alternative Report Block Variants ---- */ background-color: hsl(360, 91%, 86%); border-color: hsl(360, 62%, 66%); } .report-box.red-tint hr{ border-color: hsl(360, 62%, 66%); } .report-box.orange-tint{ background-color: hsl(30, 91%, 86%); border-color: hsl(30, 62%, 66%); } .report-box.orange-tint hr{ border-color: hsl(30, 62%, 66%); } .report-box.yellow-tint{ background-color: hsl(60, 91%, 86%); border-color: hsl(60, 62%, 66%); } .report-box.yellow-tint hr{ border-color: hsl(60, 62%, 66%); } .report-box.green-tint{ background-color: hsl(120, 91%, 86%); border-color: hsl(120, 62%, 66%); } .report-box.green-tint hr{ border-color: hsl(120, 62%, 66%); } .report-box.cyan-tint{ background-color: hsl(180, 91%, 86%); border-color: hsl(180, 62%, 66%); } .report-box.cyan-tint hr{ border-color: hsl(180, 62%, 66%); } .report-box.blue-tint{ background-color: hsl(240, 91%, 86%); border-color: hsl(240, 62%, 66%); } .report-box.blue-tint hr{ border-color: hsl(240, 62%, 66%); } .report-box.magenta-tint{ background-color: hsl(300, 91%, 86%); border-color: hsl(300, 62%, 66%); } .report-box.magenta-tint hr{ border-color: hsl(300, 62%, 66%); } .report-box.grey-tint{ background-color: hsl(210, 9%, 86%); border-color: hsl(210, 15%, 42%); } .report-box.grey-tint hr{ border-color: hsl(210, 15%, 42%); } div.o5-box{ /* ---- Overseer Document Block ---- */ margin: 1em 6em; padding: 0 1em; background-color: hsl(0, 0%, 75%); border: medium solid hsl(0, 0%, 5%); } div.o5-box hr{ border-color: hsl(0, 0%, 5%); } .faux-source{ /* ---- Mimics "Page Source" Appearance ---- */ margin-bottom: 1em; padding: 0 2em; background-color: hsl(0, 0%, 100%); border: 1px dashed hsl(0, 0%, 67%); font-family: var(--mono-font); } .narration{ /* ---- Mimics the Pages of a Book ---- */ margin: 1em 0; padding: 0 1em; background-color: hsl(0, 0%, 100%); border: 1px solid hsl(0, 0%, 63%); } .warning-notice{ /* ---- Simple Warning Block (Adapted From 'SCP-3143') ---- */ padding: 0 1em; background-color: hsl(0, 0%, 100%); background-image: url(https://scp-wiki.wdfiles.com/local--files/scp-style-resource/scp_trans.png); background-position: center; background-repeat: no-repeat; border: medium solid hsl(0, 0%, 5%); text-align: center; } .warning-notice hr{ border-color: hsl(0, 0%, 5%); } .journal{ /* ---- Journal Block (Adapted From 'SCP-4003') ---- */ margin: 1em 0; padding: .9em; background-image: linear-gradient(to top, hsl(201, 33%, 84%) 0%, hsl(60, 29%, 89%) 8%); background-position: 0 8px; background-size: 100% 1.3rem; border: 1px solid hsl(0, 0%, 80%); border-radius: .9em; font-family: "Architects Daughter", cursive; } .journal p{ margin: 0; font-size: 1.3rem; line-height: 1.3rem; } .sms-message{ /* ---- SMS Message Block ---- */ float: left; clear: left; width: 22.4em; margin: 0 0 1em; padding: 0 1.2em; background: hsl(0, 0%, 75%); border-radius: 2em; font-size: 112.5%; text-align: center; } blockquote .collapsible-block-folded, .alt-blockquote .collapsible-block-folded, .lightweight .collapsible-block-folded, .card-block .collapsible-block-folded, .report-box .collapsible-block-folded, .o5-box .collapsible-block-folded, .narration .collapsible-block-folded, .journal .collapsible-block-folded, div.blockquote .collapsible-block-folded{ /* ---- For Collapsibles Inside Divs | [CLOSED] ---- */ padding: .75em 0; /* -------- */ } blockquote .collapsible-block-unfolded, .alt-blockquote .collapsible-block-unfolded, .lightweight .collapsible-block-unfolded, .card-block .collapsible-block-unfolded, .report-box .collapsible-block-unfolded, .o5-box .collapsible-block-unfolded, .narration .collapsible-block-unfolded, .journal .collapsible-block-unfolded, div.blockquote .collapsible-block-unfolded{ /* ---- For Collapsibles Inside Divs | [OPEN] ---- */ padding-top: .75em; /* -------- */ } /* -------- FORMATTING | [SPECIAL] -------- */ .centered{ /* ---- Center-Aligns Text ---- */ text-align: center; } .justified{ /* ---- Justify-Aligns Text ---- */ text-align: justify; } .indented{ /* ---- Indents Block by ½-inch/2em (Use Within Other Divs) ---- */ text-indent: 2.4em; } .indented .bibcite, .indented .footnoteref, .indented ul, .indented ol, .indented .scp-image-block.block-right, .indented h1, .indented h2, .indented h3, .indented h4, .indented h5, .indented h6, .indented .scene-break, .indented .footnotes-footer, .indented .bibitems{ text-indent: 0; } .rev-red, .rev-green, .rev-blue, .rev-yellow, .terminal-span{ font-weight: bold; } .rev-red{ /* ---- Red Document Revision Text ---- */ color: hsl(360, 100%, 27%); } .rev-green{ /* ---- Green Document Revision Text ---- */ color: hsl(120, 100%, 27%); } .rev-blue{ /* ---- Blue Document Revision Text ---- */ color: hsl(240, 100%, 27%); } .rev-yellow{ /* ---- Yellow Document Revision Text ---- */ color: hsl(40, 100%, 40%); } .terminal-span{ /* ---- Computer Terminal Text ---- */ font-family: var(--mono-font); font-size: 110%; letter-spacing: .3px; } /* ---- Blinking Text Cursor (Adapted From 'Your Very First SCP!') ---- */ .blinkbar{color: black; animation: blink 1.5s infinite;} @keyframes blink{to{opacity: .0;}} @keyframes flicker{0% {opacity: .9890; }5% {opacity: .5842; }10% {opacity: .9865; }20% {opacity: .0412; }20% {opacity: .6255; }25% {opacity: .3157; }30% {opacity: .7328; }35% {opacity: .4654; }40% {opacity: .9128; }45% {opacity: .2449; }50% {opacity: .5485; }55% {opacity: .6438; }60% {opacity: .1180; }65% {opacity: .9085; }70% {opacity: .0266; }75% {opacity: .6795; }80% {opacity: .7812; }85% {opacity: .0117; }90% {opacity: .2239; }95% {opacity: .8897; }100% {opacity: .2260; }} @keyframes overlay-anim{0% {visibility: hidden; }10% {visibility: hidden; }11% {visibility: visible; }50% {visibility: hidden; }100% {visibility: hidden; }} .lite-heading{ /* ---- Special Heading Area (Adapted From 'SCP-4058') ---- */ clear: both; margin: 3.6em auto; } .lite-heading h3{ color: hsl(360, 100%, 27%); } .lite-heading hr{ width: 55%; margin: auto; border-width: medium; } div.image-showcase{ /* ---- Alternative Image Showcase ---- */ width: 25em; margin-bottom: 1em; background: hsl(0, 0%, 100%); border: 3px ridge hsl(0, 0%, 5%); } div.image-showcase.block-center{ margin-right: auto; margin-left: auto; } .scene-break{ /* ---- Fancy Scene/Section Break ---- */ width: 3.5em; margin: 2em 0; } .listPagesNav{ margin-bottom: 5em; } .listPagesNav-prev, /* ---- ListPages Navigation (Adapted from 'SCP-5552') ---- */ .listPagesNav-next{ width: 45%; margin: 0 0 1em; padding: 0 2%; background: hsl(0, 0%, 90%); border: 1px solid hsl(0, 0%, 60%); } .listPagesNav-prev{ float: left; text-align: left; } .listPagesNav-next{ float: right; text-align: right; } .fade-away{ background: linear-gradient(to bottom, hsl(0, 0%, 95%), hsl(0, 0%, 5%)); } .footing::before{ /* ---- Page Footing ---- */ content: " "; position: absolute; bottom: 1px; left: 0; right: 0; border-bottom: 2px solid hsl(0, 0%, 47%); } .footing{ position: relative; bottom: -2px; margin-bottom: 2px; border-bottom: 1px solid hsl(0, 0%, 47%); } .related-flex{ /* ---- Related Articles Box ---- */ display: flex; justify-content: center; } .related{ margin: 1em 0; padding: 0 1em; background-color: hsl(0, 0%, 100%); border: thick solid hsla(0, 0%, 60%, 0.5); text-align: left; } .series-nav{ /* ---- Series Navigation ---- */ margin: .5em 0; background: linear-gradient(to bottom right, hsla(0, 0%, 100%, 1), hsla(0, 0%, 50%, .5)); border: outset 1.5px hsl(0, 0%, 5%); border-radius: 2em; font-size: 85%; font-weight: bold; text-align: center; } /* -------- ADVANCED WARNING HEADER -------- * Adapted From 'SCP-001-JP - indonootoko's Proposal' * See the Example at the Top of the Page **/ .orderwrapper{ position: relative; width: auto; text-align: center; } .council{ position: relative; top: 0; bottom: 0; left: 0; right: 0; width: 295px; height: 295px; margin: auto; background-image: url(https://scp-wiki.wdfiles.com/local--files/scp-style-resource/scp_trans.png); background-position: center; background-repeat: no-repeat; background-size: 295px 295px; } .ordertitle{ position: absolute; top: 27px; left: 0; right: 0; } .ordertitle h1{ color: hsl(0, 0%, 5%); font-size: 220%; line-height: 90%; } .orderdescription{ position: absolute; top: 93px; left: 0; right: 0; width: 100%; } .orderdescription h1{ color: hsl(0, 0%, 5%); font-size: 120%; } .orderdescription p{ color: hsl(0, 0%, 5%); font-size: 90%; } .itemno{ position: absolute; bottom: 18px; left: 0; right: 0; } .itemno h1{ color: hsl(0, 0%, 5%); font-size: 170%; } /* -------- YUI TAB BASE -------- */ .yui-navset .yui-nav a,.yui-navset .yui-navset-top .yui-nav a{background-color:inherit;background-image:inherit}.yui-navset .yui-nav a:hover,.yui-navset .yui-nav a:focus{background:inherit;text-decoration:inherit}.yui-navset .yui-nav .selected a,.yui-navset .yui-nav .selected a:focus,.yui-navset .yui-nav .selected a:hover{color:inherit;background:inherit}.yui-navset .yui-nav,.yui-navset .yui-navset-top .yui-nav{border-color:inherit}.yui-navset li{line-height:inherit} /* -------- YUI TAB CUSTOMIZATION -------- * Adapted From 'Black Highlighter Theme' **/ .yui-navset *{ transition: color 80ms cubic-bezier(.4, 0, .2, 1), background-color 80ms cubic-bezier(.4, 0, .2, 1); } .yui-navset .yui-nav, .yui-navset .yui-navset-top .yui-nav{ display: flex; flex-wrap: wrap; width: calc(100% - .125rem); margin: 0 auto; border-color: hsl(360, 94%, 20%); box-shadow: 0 calc(.0625rem * 5) 0 0 hsl(360, 94%, 20%); } .yui-navset .yui-nav a, /* ---- Link Modifier ---- */ .yui-navset .yui-navset-top .yui-nav a{ color: hsl(0, 0%, 5%); /* ---- Tab Background Colour | [UNSELECTED] ---- */ background-color: hsl(0, 0%, 99%); /* -------- */ background-image: none; border: unset; } .yui-navset .yui-nav a:hover, .yui-navset .yui-nav a:focus{ color: hsl(0, 0%, 96%); /* ---- Tab Background Colour | [HOVER] ---- */ background-color: hsl(360, 100%, 27%); /* -------- */ } .yui-navset .yui-nav li, /* ---- Listitem Modifier ---- */ .yui-navset .yui-navset-top .yui-nav li{ position: relative; display: flex; flex-grow: 2; max-width: 100%; margin: 0; padding: 0; background-color: hsl(0, 0%, 96%); border-color: transparent; box-shadow: 0 0 0 .0625rem hsl(360, 94%, 20%); } .yui-navset .yui-nav li a, .yui-navset-top .yui-nav li a, .yui-navset-bottom .yui-nav li a{ display: flex; align-items: center; justify-content: center; width: 100%; } .yui-navset .yui-nav li em{ border: unset; } .yui-navset .yui-nav a em, .yui-navset .yui-navset-top .yui-nav a em{ padding: .35em .75em; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; } .yui-navset .yui-nav .selected, /* ---- Selection Modifier ---- */ .yui-navset .yui-navset-top .yui-nav .selected{ flex-grow: 2; margin: 0; padding: 0; /* ---- Tab Background Colour | [SELECTED] ---- */ background-color: hsl(360, 94%, 20%); /* -------- */ } .yui-navset .yui-nav .selected a, .yui-navset .yui-nav .selected a em{ border: hsl(360, 94%, 20%); } .yui-navset .yui-nav .selected a{ width: 100%; color: hsl(0, 0%, 96%) !important; background-image: none; } .yui-navset .yui-nav .selected a:focus, .yui-navset .yui-nav .selected a:active{ color: hsl(0, 0%, 96%); background-color: hsl(360, 94%, 20%); } .yui-navset .yui-nav .selected a:hover{ cursor: default; } .yui-navset-left .yui-content{ /* ---- Content Background ---- */ background-color: hsl(0, 0%, 99%); /* -------- */ } .yui-navset .yui-content, .yui-navset .yui-navset-top .yui-content{ padding: .5em; border-color: hsl(0, 0%, 60%); } /* -------- PAGE TAGS -------- */ #main-content .page-tags{ border-top: 1px solid hsl(0, 0%, 73%); } #main-content .page-tags a{ display: inline-block; height: .8125rem; margin: 0 0 .5rem .75rem; padding: .1875rem .3125rem .1875rem 0; color: hsl(0, 0%, 95%); background-color: hsl(0, 0%, 27%); border-bottom-right-radius: .25rem; border-top-right-radius: .25rem; line-height: 13px; line-height: .8125rem; font-size: 11px; font-size: .6875rem; font-weight: normal; } #main-content .page-tags a:before{ width: 0; height: 0; top: -.1875rem; left: -.625rem; padding: 0 .0625rem .1875rem; border-color: transparent hsl(0, 0%, 27%) transparent transparent; border-style: solid; border-width: .5rem .5rem .5rem 0; } #main-content .page-tags a:before, #main-content .page-tags a:after{ content: ""; position: relative; float: left; } #main-content .page-tags a:after{ width: .25rem; height: .25rem; top: .2813rem; left: -.5rem; background-color: hsl(0, 0%, 100%); border-radius: .125rem; } #main-content .page-tags span{ max-width: 100%; border-top: .5rem solid transparent; } /* -------- INTERWIKI -------- */ iframe.scpnet-interwiki-frame{ position: relative; width: 15.734em; height: unset; margin-bottom: .78em; margin-left: 4px; background-color: hsl(0, 0%, 100%); border: 2px solid hsl(0, 0%, 20%); } /* -------- SHOW-CHANGES HIGHLIGHTS -------- */ .inline-diff ins::before{ color: hsl(240, 100%, 93%); } .inline-diff del::before{ color: hsl(0, 100%, 90%); } .inline-diff ins + del::before, .inline-diff del + ins::before{ color: transparent; } .inline-diff br + ins::before, .inline-diff br + del::before, .inline-diff ins:first-of-type::before, .inline-diff del:first-of-type::before{ position: absolute; display: inline-block; left: -1em; content: "\f111"; font: normal normal normal 16px/1 "FontAwesome"; text-rendering: auto; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } /* -------- PRESENTATION -------- */ .templateInfo{ margin: 1em 0; padding: 0 1em; background: hsl(0, 0%, 100%); border: 1px solid hsl(0, 0%, 87%); } /* -------- CROQSTYLE ALTERATIONS -------- */ #edit-page-textarea{ font-family: unset; } tt{ background-color: unset; font-size: unset; padding: unset; margin: unset; border-radius: unset; } /* -------- REDUCED MOTION ACCESSIBILITY -------- */ @media (prefers-reduced-motion: reduce){ *, *::before, *::after{ animation-duration: .001s !important; animation-iteration-count: 1 !important; transition-duration: .001s !important; } } /* -------- MOBILE MEDIA QUERY -------- */ @media (max-width: 479px){ #header h1 a{ font-size: 85%; } div.image-showcase{ width: 90%; } div.o5-box{ margin: 1em 0; } } /* -------- NOTE MEDIA QUERY -------- */ @media (min-width: 480px) and (max-width: 580px){ #header h1 a{ font-size: 100%; } div.image-showcase{ width: 100%; } div.o5-box{ margin: .5em; } } /* -------- MINI TABLET MEDIA QUERY -------- */ @media (min-width: 581px) and (max-width: 767px){ #header h1 a{ font-size: 120%; } } @media (max-width: 767px){ .open-menu a:hover{ box-shadow: none; } } /* -------- TABLET MEDIA QUERY -------- */ @media (min-width: 768px) and (max-width: 979px){ #header h1 a{ font-size: 140%; } }
@import url(https://fonts.googleapis.com/css2?family=Carrois+Gothic&display=swap); /* 'Pataphysics Department Theme * [2018 Wikidot Theme] * Based on Aelanna's Sigma-9 Theme as Edited by Dr Devan * Inspired by Rimple's "Pataphysics Department" * Created by Lt Flops, Logo Designed by TSATPWTCOTTTADC, CSS Spinner by Woedenaz * With Code Help From Stormbreath **/ /* ---- COLOUR VARIABLES ---- */ body{ /* ---- GREY --- */ --very-dark-grey: hsl(0, 0%, 05%); --grey: hsl(0, 0%, 75%); --light-grey: hsl(0, 0%, 88%); --lighter-grey: hsl(0, 0%, 91%); --very-light-grey: hsl(0, 0%, 95%); /* ---- GOLD ---- */ --pure-yellow: hsl(51, 100%, 50%); --strong-orange: hsl(36, 67%, 49%); /* ---- GREEN ---- */ --vivid-lime-green: hsl(112, 77%, 48%); /* ---- BLUE ---- */ --dark-blue: hsl(253, 60%, 33%); /* ---- VIOLET ---- */ --very-dark-violet: hsl(268, 39%, 10%); --very-dark-moderate-violet: hsl(268, 40%, 25%); --dark-violet: hsl(266, 100%, 25%); --very-dark-muted-violet: hsl(268, 33%, 30%); --strong-violet: hsl(268, 100%, 37%); --dark-moderate-violet: hsl(268, 40%, 45%); --mostly-muted-dark-violet: hsl(268, 25%, 50%); /* ---- GRADIENT VIOLET ---- */ --grad-very-dark-muted-violet: hsl(268, 40%, 19%); --grad-dark-moderate-violet: hsl(268, 40%, 33%); /* ---- MAGENTA ---- */ --dark-magenta: hsl(298, 86%, 37%); } /* ---- CONTENT WRAP ---- */ div#container-wrap{ background: url(https://scp-wiki.wdfiles.com/local--files/theme%3Apataphysics/pataphysics-header-updated.png) top left repeat-x !important; } body{ color: hsl(0, 0%, 05%); color: var(--very-dark-grey); background-color: hsl(0, 0%, 95%); background-color: var(--very-light-grey); word-break: unset; } /* ---- LOGO IMAGE | [PRE] ---- */ #header{ background-image: none; } #header #header-extra-div-1, #header #header-extra-div-2, #header #header-extra-div-3{ width: 6.25rem; height: 6.25rem; display: flex; position: absolute; left: .25rem; top: 2rem; } /* 'Pataphysics Department Logo | [ANIMATION] * Logo Designed by TSATPWTCOTTTADC, CSS Spinner by Woedenaz * Released Under CC BY-SA 3.0 **/ #header #header-extra-div-1::before, #header #header-extra-div-2::before, #header #header-extra-div-3::before{ content: ""; width: 6.25rem; height: 6.25rem; position: absolute; background-repeat: no-repeat; background-position: center center; background-size: contain; flex: 1; } #header #header-extra-div-1::before{ z-index: 1; background-image: url("data:image/svg+xml,%3Csvg id='Layer_3' data-name='Layer 3' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 100 100'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bopacity:0.55;fill:url(%23linear-gradient);%7D.cls-2%7Bopacity:0.66;%7D.cls-3%7Bfill:%23fff;%7D%3C/style%3E%3ClinearGradient id='linear-gradient' x1='6.16' y1='32.16' x2='97.17' y2='66.71' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%238b8b8b'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3C/defs%3E%3Ctitle%3Epata_logo_bg%3C/title%3E%3Cpath class='cls-1' d='M50,93.82A43.11,43.11,0,0,1,34.88,91.1a44.63,44.63,0,0,1-7.72-3.77c-1.05-.65-2.49-1.65-3.46-2.39l-3.58,1.31-1.82.67a3.82,3.82,0,0,1-1.42.37c-1.17,0-1.17,0-3.4-3.82L9.54,76.66,2.79,65C1.31,62.4,1,61.81,1.7,60.78a12.07,12.07,0,0,1,1.72-1.67l3.06-2.83.59-.54C7,54.68,6.87,53.85,6.82,53c-.05-1.09-.05-3.59,0-4.62a26.26,26.26,0,0,1,.4-3.6h0c0-.1.07-.35.1-.61a43.11,43.11,0,0,1,26.07-33.3c.11-.64.27-1.56.45-2.62.35-2,.65-3.7.66-3.77l.39-1.74H61.58c2.42,0,3.42,0,3.87,1.48l0,.17c0,.07.22,1,.51,2.25l.35,1.55c.25,1.13.49,2.16.64,2.86a48.34,48.34,0,0,1,4.38,2.19,43.08,43.08,0,0,1,21.5,33.1,42.82,42.82,0,0,1-.11,9.94l.83.7c4.52,3.77,4.52,3.77,4.73,4.25l.35.81-.36.81c0,.11-.14.31-6.88,12-1.67,2.91-3.35,5.8-4.61,8-2.44,4.21-2.48,4.28-3.19,4.51A2.45,2.45,0,0,1,82,87.21L81.29,87l-.16,0-.64-.2-2.71-.84-2-.62a42.77,42.77,0,0,1-6.27,3.89,22.46,22.46,0,0,1-3.24,1.45l-.66.25A42.73,42.73,0,0,1,55.1,93.51,42.08,42.08,0,0,1,50,93.82ZM24.05,80.7a2.37,2.37,0,0,1,1.56.66,42.19,42.19,0,0,0,3.67,2.58,41.09,41.09,0,0,0,7,3.41,39.18,39.18,0,0,0,27.86-.19,9.74,9.74,0,0,1,1.07-.39c.28-.1,1.26-.55,2.48-1.16a38.42,38.42,0,0,0,5.71-3.54L75,80.87l1.29.39.27.09c.28.09,2.06.65,2.33.72s2.74.85,2.93.92l.2.06c2.36-4,9.49-16.39,11.88-20.57-.8-.68-1.9-1.59-2.9-2.42h0l-1.74-1.47a2.48,2.48,0,0,1-.56-2.38,38.28,38.28,0,0,0,.16-9.46,39.15,39.15,0,0,0-19.5-30,42.63,42.63,0,0,0-4.52-2.21,2.39,2.39,0,0,1-1.56-1.6h0c-.07-.3-.26-1.14-.86-3.84L62.1,7.52C62,7.24,62,7,61.92,6.75c-1.75,0-5.36,0-11.92,0H38.17c-.11.62-.24,1.38-.39,2.2-.68,4-.68,4-.88,4.31l-.12.18a2.87,2.87,0,0,1-1.52,1,39.15,39.15,0,0,0-24,30.34,7.85,7.85,0,0,1-.21,1.08c-.05.32-.18,1.52-.25,2.77-.05.89-.05,3.23,0,4.18s.12,1.64.25,2.72l.21,1.78-.91.85L9.19,59.22,6.13,62l-.27.25.4.69L13,74.66c2.08,3.6,3.8,6.57,4.76,8.2l1-.36C23.65,80.7,23.65,80.7,24.05,80.7Zm41.33,6h0ZM11.06,45.87,11,46Z'/%3E%3Cpath class='cls-2' d='M92.06,61.58l-1.59-1.33-.83-.69-.48-.4-.43-.36c-.2-.17-.46-.39-.56-.49L88,58.13l0-.28c.24-1.33.45-2.9.56-4.24a49.09,49.09,0,0,0,0-6A38.71,38.71,0,0,0,68.73,16.83a41.87,41.87,0,0,0-5-2.31c-.75-.29-.79-.32-.82-.43s-.17-.72-.33-1.45c-.34-1.48-1.29-5.55-1.32-5.66s-.6-.07-11.32-.07H38.67l0,.09-.4,2.27c-.52,3-.79,4.5-.83,4.67s-.06.14-.54.31A38.75,38.75,0,0,0,11.69,44.89a36.79,36.79,0,0,0-.42,6.55c0,.77,0,1.67,0,2a32.6,32.6,0,0,0,.46,3.88l.06.3-.28.27c-.15.15-.33.31-.39.36L10,59.39l-.39.35c-.12.11-.41.37-.62.58L8.28,61c-.15.14-.58.55-1,.9l-.83.79-.14.12L12,72.55c3.1,5.37,5.66,9.77,5.68,9.77s.36-.11.74-.25l2.05-.75,2.05-.76a17.06,17.06,0,0,1,1.8-.63l.2,0,.4.34a5,5,0,0,0,.45.37,2.14,2.14,0,0,1,.35.26,39,39,0,0,0,21.76,8.46c.93.07,4.05.07,5,0a38.84,38.84,0,0,0,11.78-2.66,39.67,39.67,0,0,0,6.62-3.39,2.93,2.93,0,0,1,.42-.24,32.77,32.77,0,0,0,3-2.17l.7-.56c.1-.08.11-.08.61.08l.81.24.37.11.28.09.27.08.46.15.63.19c.36.11,2.06.63,2.24.67l.82.25c.37.11.71.2.74.2s2.29-3.87,5.66-9.7c3.07-5.33,5.61-9.72,5.64-9.76S93.66,62.92,92.06,61.58Z'/%3E%3Cpath class='cls-3' d='M92.31,58.52,90.7,57.17c-.07-.07-.07-.09,0-.7a40.13,40.13,0,0,0,.17-9.93A41.17,41.17,0,0,0,70.38,15a48.54,48.54,0,0,0-4.76-2.33,1,1,0,0,1-.36-.2s-.4-1.76-.86-3.81-.86-3.78-.86-3.83S62.83,4.73,50,4.73H36.49l0,.12c0,.06-.31,1.74-.66,3.73s-.64,3.65-.65,3.68a4.59,4.59,0,0,1-.64.3A41.14,41.14,0,0,0,9.3,44.45c-.06.4-.13.78-.15.83a26.39,26.39,0,0,0-.33,3.2c-.05,1-.05,3.38,0,4.4s.13,1.77.26,2.86l.09.77L9,56.66,7.73,57.84,7,58.55l-2.19,2c-.76.7-1.39,1.3-1.41,1.32s.51,1,1.16,2.08l6.75,11.68c3.06,5.3,5.58,9.63,5.61,9.63l.73-.25,1.82-.67C23.11,83,24,82.7,24.05,82.7a1.32,1.32,0,0,1,.29.2,45.39,45.39,0,0,0,3.88,2.74,44.52,44.52,0,0,0,7.36,3.59A41.13,41.13,0,0,0,64.88,89l.84-.31a26.66,26.66,0,0,0,2.88-1.32,39,39,0,0,0,6-3.72l.81-.59.22.06.34.11,2.38.74,2.83.89.54.16.83.26a2.05,2.05,0,0,0,.43.11S96.5,62.06,96.49,62,95.67,61.32,92.31,58.52ZM93.5,62.9s-2.57,4.43-5.64,9.76c-3.37,5.83-5.63,9.7-5.66,9.7s-.37-.09-.74-.2l-.82-.25c-.18,0-1.88-.56-2.24-.67l-.63-.19-.46-.15L77,80.82l-.28-.09-.37-.11-.81-.24c-.5-.16-.51-.16-.61-.08l-.7.56a32.77,32.77,0,0,1-3,2.17,2.93,2.93,0,0,0-.42.24,39.67,39.67,0,0,1-6.62,3.39,38.84,38.84,0,0,1-11.78,2.66c-.93.07-4.05.07-5,0a39,39,0,0,1-21.76-8.46,2.14,2.14,0,0,0-.35-.26,5,5,0,0,1-.45-.37l-.4-.34-.2,0a17.06,17.06,0,0,0-1.8.63l-2.05.76-2.05.75c-.38.14-.71.25-.74.25s-2.58-4.4-5.68-9.77L6.34,62.77l.14-.12.83-.79c.39-.35.82-.76,1-.9L9,60.32c.21-.21.5-.47.62-.58l.39-.35,1.2-1.13c.06,0,.24-.21.39-.36l.28-.27-.06-.3a32.6,32.6,0,0,1-.46-3.88c0-.34,0-1.24,0-2a36.79,36.79,0,0,1,.42-6.55A38.75,38.75,0,0,1,36.88,14.25c.48-.17.5-.18.54-.31s.31-1.7.83-4.67L38.65,7l0-.09H50c10.72,0,11.29,0,11.32.07s1,4.18,1.32,5.66c.16.73.31,1.38.33,1.45s.07.14.82.43a41.87,41.87,0,0,1,5,2.31A38.71,38.71,0,0,1,88.54,47.57a49.09,49.09,0,0,1,0,6c-.11,1.34-.32,2.91-.56,4.24l0,.28.19.18c.1.1.36.32.56.49l.43.36.48.4.83.69,1.59,1.33C93.66,62.92,93.55,62.82,93.5,62.9Z'/%3E%3C/svg%3E"); animation: cont-spin 15s linear infinite; } #header #header-extra-div-2::before{ z-index: 3; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bopacity:0.46;%7D.cls-2%7Bfill:%23231f20;%7D.cls-3%7Bfill:%23fff;%7D%3C/style%3E%3C/defs%3E%3Ctitle%3Epata_logo_mg%3C/title%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg class='cls-1'%3E%3Cpath class='cls-2' d='M50,23.78A26.31,26.31,0,0,1,75.86,45.07L79.79,45l-4.3,7.81-4.62-7.63,3.72-.08A25.07,25.07,0,0,0,50.65,25V35.92h6.43L50,48.16,42.94,35.92h6.42V24.42h0v-.64H50M50,45.6l4.85-8.4h-9.7L50,45.6m25.44,4.65,2.16-3.94-4.49.09,2.33,3.85M50,23.53h-.88V35.67H42.5l.22.38,7.06,12.23.22.38.22-.38,7.06-12.23.22-.38H50.89V25.3A24.7,24.7,0,0,1,74.28,44.85l-3.42.07h-.43l.23.37,4.62,7.63.22.37.21-.38L80,45.11l.21-.38h-.43l-3.73.07A26.64,26.64,0,0,0,50,23.53ZM45.58,37.45h8.84L50,45.1l-4.42-7.65Zm28,9.19,3.63-.07-1.75,3.18-1.88-3.11Z'/%3E%3Cpath class='cls-2' d='M39.26,27,35,34.79,33,31.61a25.06,25.06,0,0,0-5.4,30.76l9.43-5.44-3.22-5.56H48L40.92,63.61,37.71,58l-10,5.75h0l-.56.32-.31-.54a26.32,26.32,0,0,1,5.51-33l-2-3.36L39.26,27m-4.35,5.26,2.16-3.93-4.49.09,2.33,3.84m6,28.82,4.85-8.4h-9.7l4.85,8.4M39.69,26.71h-.43l-8.93.19H29.9l.23.37,1.92,3.18a26.66,26.66,0,0,0-5.4,33.22l.32.54.12.21.22-.12.35-.2.2-.12,9.75-5.62,3.09,5.35.22.38.22-.38L48.2,51.49l.22-.37h-15l.22.37,3.08,5.35-9,5.18A24.7,24.7,0,0,1,33,32l1.77,2.92.22.37.21-.38,4.3-7.82.21-.38ZM33,28.63l3.62-.07L34.9,31.73,33,28.63ZM36.5,52.9h8.83l-4.41,7.65L36.5,52.9Z'/%3E%3Cpath class='cls-2' d='M66.1,51.37l-3.21,5.56,10,5.76h0l.55.32-.31.54A26.33,26.33,0,0,1,41.72,75.31l-1.89,3.45-4.62-7.64,8.92-.18-1.79,3.25a25,25,0,0,0,29.33-10.7L62.25,58,59,63.61,52,51.37H66.1M59,61.05l4.85-8.4h-9.7L59,61.05M39.78,76.2l2.16-3.94-4.49.09,2.33,3.85M66.54,51.12h-15l.22.37,7.06,12.24.22.38.22-.38,3.08-5.35,9,5.2A24.81,24.81,0,0,1,42.7,74.05l1.65-3,.21-.38h-.44l-8.92.18h-.43l.22.37,4.62,7.63.23.38.21-.38,1.79-3.27A26.56,26.56,0,0,0,73.31,63.68l.31-.54.12-.22-.21-.12-.35-.2-.2-.12-9.75-5.64,3.09-5.35.22-.37ZM54.62,52.9h8.84L59,60.55,54.62,52.9ZM37.89,72.6l3.62-.08L39.76,75.7l-1.87-3.1Z'/%3E%3C/g%3E%3Cpath class='cls-3' d='M75.86,45.07A26.31,26.31,0,0,0,50,23.78h-.63v.64h0v11.5H42.94L50,48.16l7.07-12.24H50.64V25A25.07,25.07,0,0,1,74.59,45.09l-3.72.08,4.62,7.63L79.79,45Zm-21-7.87L50,45.6l-4.85-8.4Zm20.59,13L73.11,46.4l4.49-.09Z'/%3E%3Cpath class='cls-3' d='M33.85,51.37l3.22,5.56-9.43,5.44A25.06,25.06,0,0,1,33,31.61L35,34.79,39.26,27l-8.92.19,2,3.36a26.32,26.32,0,0,0-5.51,33l.31.54.56-.32h0l10-5.75,3.21,5.57L48,51.37ZM37.07,28.3l-2.16,3.93-2.33-3.84Zm-1,24.35h9.7l-4.85,8.4Z'/%3E%3Cpath class='cls-3' d='M72.85,62.7h0l-10-5.76,3.21-5.56H52L59,63.61,62.25,58l9.42,5.45a25,25,0,0,1-29.33,10.7l1.79-3.25-8.92.18,4.62,7.64,1.89-3.45A26.32,26.32,0,0,0,73.09,63.56L73.4,63ZM39.78,76.2l-2.33-3.85,4.49-.09ZM59,61.05l-4.85-8.4h9.7Z'/%3E%3C/g%3E%3C/svg%3E"); animation: clock-spin cubic-bezier(.62, 0, .52, 1.3) 10s infinite; } #header #header-extra-div-3::before{ z-index: 3; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cdefs%3E%3Cstyle%3E.cls-1,.cls-3%7Bfill:%23fff;%7D.cls-1,.cls-2%7Bopacity:0.3;%7D%3C/style%3E%3C/defs%3E%3Ctitle%3Epata_logo_fg%3C/title%3E%3Cg id='Layer_1' data-name='Layer 1'%3E%3Cpath class='cls-1' d='M80.79,63.91,77,61.72a29.13,29.13,0,0,0,2.33-11.44A29.42,29.42,0,0,0,53.44,21.11V16.92h-7v4.19A29.38,29.38,0,0,0,22.93,61.84L19.2,64l3.5,6.07,3.74-2.16a29.36,29.36,0,0,0,47.08-.11L77.29,70ZM49.94,72.66a22.36,22.36,0,0,1-17.38-8.3l6.57-3.82,1.78,3.06L48,51.37H33.85l1.8,3.13-6.6,3.81A22.39,22.39,0,0,1,46.44,28.17v7.75H42.93L50,48.16l7.07-12.24H53.44V28.17a22.37,22.37,0,0,1,17.44,30l-6.54-3.78,1.75-3H52L59,63.6l1.81-3.13,6.56,3.79A22.34,22.34,0,0,1,49.94,72.66Z'/%3E%3Cg class='cls-2'%3E%3Cpath class='cls-3' d='M53.19,17.17v4.16l.22,0A29.12,29.12,0,0,1,76.77,61.63l-.08.2.19.11L80.45,64,77.2,69.63l-3.56-2-.19-.11-.13.17A29.3,29.3,0,0,1,49.94,79.41a28.94,28.94,0,0,1-23.3-11.66l-.13-.18-.19.11-3.53,2-3.25-5.63,3.52-2,.19-.12-.09-.2A29.13,29.13,0,0,1,46.47,21.35l.22,0V17.17h6.5m3.43,19L50,47.66,43.36,36.17h3.33v-8.3l-.29.05A22.63,22.63,0,0,0,28.82,58.4l.11.27.25-.15,6.49-3.87.21-.13-.12-.21-1.49-2.69H47.54L40.91,63.1l-1.56-2.69-.13-.22-.22.13-6.56,3.83-.25.14.18.23a22.6,22.6,0,0,0,35.23-.1l.18-.23-.25-.14L61,60.26l-.21-.13-.13.22L59,63.1,52.4,51.62H65.66l-1.54,2.67L64,54.5l.21.13,6.54,3.77.26.15.1-.27A22.61,22.61,0,0,0,53.48,27.92l-.29-.05v8.3h3.43M53.44,16.92h-7v4.19A29.38,29.38,0,0,0,22.93,61.84L19.2,64l3.5,6.07,3.74-2.16a29.36,29.36,0,0,0,47.08-.11L77.29,70l3.5-6.06L77,61.72a29.13,29.13,0,0,0,2.33-11.44A29.42,29.42,0,0,0,53.44,21.11V16.92ZM50,48.16l7.07-12.24H53.44V28.17a22.37,22.37,0,0,1,17.44,30l-6.54-3.78,1.75-3H52L59,63.6l1.81-3.13,6.56,3.79a22.35,22.35,0,0,1-34.84.1l6.57-3.82,1.78,3.06L48,51.37H33.85l1.7,3.06-6.5,3.88A22.39,22.39,0,0,1,46.44,28.17v7.75H42.93L50,48.16Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); animation: clock-spin cubic-bezier(.62, 0, .52, 1.3) 10s infinite; } /* ---- ANIMATION ---- */ @keyframes clock-spin{ 0%, 15%{ transform: rotate(0deg); } 25%, 40%{ transform: rotate(90deg); } 50%, 65%{ transform: rotate(180deg); } 75%, 90%{ transform: rotate(270deg); } 100%{ transform: rotate(360deg); } } @keyframes cont-spin{ from{ transform: rotate(0deg); } to{ transform: rotate(360deg); } } /* ---- MOBILE ANIMATION ---- */ @media (max-width: 767px){ #header{ background: none !important; } #header #header-extra-div-1, #header #header-extra-div-2, #header #header-extra-div-3{ width: 5rem !important; height: 5rem !important; left: -1rem !important; top: 3rem !important; } #header #header-extra-div-1::before, #header #header-extra-div-2::before, #header #header-extra-div-3::before{ width: 5rem !important; height: 5rem !important; } } /* ---- GENERAL ---- */ span, a{ word-break: unset; } hr{ height: 0; margin: 1em 0; background-color: transparent; border-top: 1px solid hsl(0, 0%, 62%); } table.wiki-content-table{ background-color: white; } table.wiki-content-table th{ background-color: hsl(0, 0%, 88%); background-color: var(--light-grey); } /* ---- LINKS ---- */ a{ color: hsl(268, 100%, 37%); color: var(--strong-violet); } a:visited{ color: hsl(253, 60%, 33%); color: var(--dark-blue); } #side-bar a:visited{ color: hsl(268, 100%, 37%); color: var(--strong-violet); } a.newpage{ color: hsl(298, 86%, 47%); color: var(--dark-magenta); } a.footnoteref, a.footnoteref:before{ color: hsl(307, 100%, 37%); color: var(--dark-magenta); } a.collapsible-block-link{ font-weight: bold; } .pata-notice a{ /* ---- PATA-NOTICE LINK COLOUR ---- */ color: hsl(51, 100%, 50%); color: var(--pure-yellow); } .pata-notice a:visited{ color: hsl(36, 67%, 49%); color: var(--strong-orange); } .pata-notice a.footnoteref, /* ---- PATA-NOTICE FOOTNOTE COLOUR ---- */ .pata-notice a.footnoteref:before{ color: hsl(51, 100%, 50%); color: var(--pure-yellow); } /* ---- HEADER ---- */ h1, h2, h3, h4, h5, h6{ word-break: unset; } h1, #page-title{ color: hsl(266, 100%, 25%); color: var(--dark-violet); } #header h1 a, #header h1 a::before{ position: relative; left: -1.5px; letter-spacing: -.02em; } #header h1 a{ color: transparent; font-family: "Carrois Gothic", "Arial", sans-serif; text-shadow: none; } #header h1 a::before{ content: "‘Pataphysics Department"; color: hsl(0, 0%, 91%); color: var(--lighter-grey); text-shadow: 1px 1px 1px hsl(0, 0%, 05%); text-shadow: 1px 1px 1px var(--very-dark-grey); } #header span{ color: hsl(0, 0%, 91%); color: var(--lighter-grey); } #header h2 span{ color: transparent; text-shadow: none; } #header h1 a span{ content: ""; visibility: hidden; } #header h2 span::before{ content: "Killing Our Gods"; color: hsl(0, 0%, 91%); color: var(--lighter-grey); text-shadow: 1px 1px 1px hsl(0, 0%, 05%); text-shadow: 1px 1px 1px var(--very-dark-grey); text-shadow: 1px 1px 1px hsla(0, 0%, 5%, .8); } @media only screen and (max-width: 425px){ #header h1 a::before{ content: "‘Pataphysics Dept."; } } /* ---- TOP MENU ---- */ #top-bar ul li ul{ border: solid 1px hsl(268, 40%, 25%); border: solid 1px var(--very-dark-moderate-violet); } #top-bar a{ color: hsl(0, 0%, 91%); color: var(--lighter-grey); } #login-status ul a{ color: hsl(268, 100%, 37%); color: var(--strong-violet); } #top-bar ul .sfhover a, #top-bar ul li:hover a{ color: hsl(268, 40%, 25%); color: var(--very-dark-moderate-violet); background: hsl(0, 0%, 95%); background: var(--very-light-grey); } #my-account, #account-topbutton{ color: hsl(0, 0%, 95%); color: var(--very-light-grey); } /* ---- SEARCH BAR ---- */ #search-top-box-input{ background-color: hsl(268, 40%, 25%); background-color: var(--very-dark-moderate-violet); border: solid 1px hsl(268, 33%, 30%); border: solid 1px var(--very-dark-muted-violet); border-radius: 0; } #search-top-box-input:hover, #search-top-box-input:focus{ background: hsl(268, 25%, 50%); background: var(--mostly-muted-dark-violet); border: solid 1px hsl(0, 0%, 95%); border: solid 1px var(--very-light-grey); border-radius: 0; } #search-top-box-form input[type="submit"]{ color: hsl(270, 75%, 76%); background: hsl(268, 33%, 30%); background: var(--very-dark-muted-violet); border: solid 1px hsl(268, 40%, 45%); border: solid 1px var(--dark-moderate-violet); border-radius: 0; box-shadow: none; font-size: unset; } #search-top-box-form input[type="submit"]:hover, #search-top-box-form input[type="submit"]:focus{ color: hsl(0, 0%, 95%); color: var(--very-light-grey); background: hsl(268, 25%, 50%); background: var(--mostly-muted-dark-violet); border: solid 1px hsl(0, 0%, 95%); border: solid 1px var(--very-light-grey); border-radius: 0; box-shadow: none; } /* ---- SIDE MENU ---- */ #side-bar{ background: none; } #side-bar .side-block{ background: hsl(0, 0%, 91%); background: var(--lighter-grey); border: 3px solid hsl(268, 40%, 25%); border: 3px solid var(--very-dark-moderate-violet); border-radius: 0; box-shadow: none; } #side-bar .heading{ color: hsl(268, 40%, 25%); color: var(--very-dark-moderate-violet); border-bottom: 1px solid hsl(268, 40%, 45%); border-bottom: 1px solid var(--dark-moderate-violet); } .side-block .menu-item > .image{ filter: hue-rotate(268deg) saturate(90%) brightness(100%); -webkit-filter: hue-rotate(268deg) saturate(90%) brightness(100%); } #side-bar div.menu-item.inactive a{ color: hsl(268, 40%, 25%); color: var(--very-dark-moderate-violet); } #side-bar div.menu-item .sub-text{ color: hsl(268, 40%, 25%); color: var(--very-dark-moderate-violet); } #side-bar .collapsible-block-folded{ background: none; } #side-bar .collapsible-block-unfolded-link{ border-bottom: solid 1px hsl(268, 40%, 25%); border-bottom: solid 1px var(--very-dark-moderate-violet); } #side-bar .collapsible-block-unfolded-link .collapsible-block-link{ color: hsl(268, 40%, 25%); color: var(--very-dark-moderate-violet); font-weight: bold; } /* ---- INFO BAR ---- */ body{ --linkColour: hsl(0, 0%, 95%); --linkColour: var(--very-light-grey); --barColour: hsl(268, 39%, 10%); --barColour: var(--very-dark-violet); } /* ---- INFO PANE ---- */ .rate-box-with-credit-button{ background-color: hsl(268, 40%, 25%) !important; background-color: var(--very-dark-moderate-violet) !important; border-color: hsl(268, 40%, 25%) !important; border-color: var(--very-dark-moderate-violet) !important; border-radius: 0 !important; box-shadow: none !important; } .rate-box-with-credit-button .fa-info{ color: hsl(0, 0%, 95%); color: var(--very-light-grey); border-color: hsl(268, 40%, 45%); border-color: var(--dark-moderate-violet); } .rate-box-with-credit-button .fa-info:hover{ color: hsl(112, 77%, 48%); color: var(--vivid-lime-green); } .rate-box-with-credit-button .cancel{ border: 0; } .close-credits, .credit-back{ filter: hue-rotate(268deg); } .modalbox{ box-shadow: 0 1px 10px hsla(282, 73%, 51%, .3); } /* ---- PAGE RATING ---- */ .page-rate-widget-box{ border: none; border-radius: 0; box-shadow: none; } .page-rate-widget-box .rate-points{ background-color: hsl(268, 40%, 25%) !important; background-color: var(--very-dark-moderate-violet) !important; border: solid 1px hsl(268, 33%, 30%); border: solid 1px var(--very-dark-muted-violet); border-radius: 0; } .page-rate-widget-box .rateup, .page-rate-widget-box .ratedown{ background-color: hsl(0, 0%, 95%); background-color: var(--very-light-grey); border-top: solid 1px hsl(268, 33%, 30%); border-top: solid 1px var(--very-dark-muted-violet); border-bottom: solid 1px hsl(268, 33%, 30%); border-bottom: solid 1px var(--very-dark-muted-violet); } .page-rate-widget-box .rateup a, .page-rate-widget-box .ratedown a{ color: hsl(268, 40%, 25%); color: var--very-dark-moderate-violet); } .page-rate-widget-box .rateup a:hover, .page-rate-widget-box .ratedown a:hover{ color: hsl(0, 0%, 95%); color: var(--very-light-grey); background: hsl(268, 40%, 25%); background: var(--very-dark-moderate-violet); } .page-rate-widget-box .cancel{ background-color: hsl(268, 40%, 25%); background-color: var(--very-dark-moderate-violet); border: solid 1px hsl(268, 33%, 30%); border: solid 1px var(--very-dark-muted-violet); border-left: 0; border-radius: 0; } .page-rate-widget-box .cancel a{ color: hsl(268, 40%, 45%); color: var(--dark-moderate-violet); } .page-rate-widget-box .cancel a:hover{ color: hsl(0, 0%, 95%); color: var(--very-light-grey); background: hsl(268, 40%, 25%); background: var(--very-dark-moderate-violet); border-radius: 0; } /* ---- DIV BLOCKS ---- */ blockquote, div.blockquote{ background-color: hsl(0, 0%, 91%); background-color: var(--lighter-grey); border: 1px solid hsl(0, 0%, 60%); } .pata-notice{ margin: 1em 0; padding: 0 1em; color: hsl(0, 0%, 95%); color: var(--very-light-grey); background-color: hsl(268, 40%, 25%); background-color: var(--very-dark-moderate-violet); border: 1px solid hsl(268, 33%, 30%); border: 1px solid var(--very-dark-muted-violet); text-align: center; } .code{ background-color: hsl(0, 0%, 92%); border-color: hsl(0, 0%, 82%); } /* ---- CUSTOM PAGE CONTENT CLASSES ---- */ .content-panel .panel-body{ background: hsl(0, 0%, 95%); background: var(--very-light-grey); } .content-panel .panel-footer{ color: hsl(0, 0%, 95%); color: var(--very-light-grey); } .content-panel .panel-footer a{ color: hsl(0, 0%, 95%); color: var(--very-light-grey); } /* ---- YUI TAB CUSTOMIZATION ---- */ .yui-navset .yui-content{ /* ---- Content Background ---- */ background-color: white; /* -------- */ } .yui-navset .yui-nav a, /* ---- Link Modifier ---- */ .yui-navset .yui-navset-top .yui-navset-left .yui-navset-right .yui-nav a{ color: hsl(0, 0%, 05%); color: var(--very-dark-grey); /* ---- Tab Background Colour | [UNSELECTED] ---- */ background-color: white; /* -------- */ background-image: none; border: solid 1px #808080; border-bottom: none; transition: .125s; } .yui-navset .yui-nav .selected a, /* ---- Selection Modifier ---- */ .yui-navset .yui-nav .selected a:focus, .yui-navset .yui-nav .selected a:hover{ color: hsl(0, 0%, 95%); color: var(--very-light-grey); /* ---- Tab Background Colour | [SELECTED] ---- */ background: hsl(268, 40%, 25%); background: var(--very-dark-moderate-violet); /* -------- */ } .yui-navset .yui-nav a:hover, .yui-navset .yui-nav a:focus{ /* ---- Tab Background Colour | [HOVER] ---- */ background: hsl(0, 0%, 75%); background: var(--grey); /* -------- */ } .yui-navset .yui-nav, /* ---- Between Tab And Content ---- */ .yui-navset .yui-navset-top .yui-nav{ border-color: hsl(268, 40%, 25%); border-color: var(--very-dark-moderate-violet); } /* ---- STANDARD IMAGE BLOCK ---- */ .scp-image-block{ box-shadow: none; } .scp-image-block .scp-image-caption{ background-color: hsl(0, 0%, 88%); background-color: var(--light-grey); border-top: solid 1px hsl(268, 40%, 25%); border-top: solid 1px var(--very-dark-moderate-violet); } /* ---- INTERWIKI ---- */ .scpnet-interwiki-frame{ filter: hue-rotate(268deg) saturate(90%) brightness(100%); } /* ---- ADJUST MOBILE IMAGE SIZE ---- */ @media (max-width: 767px){ #top-bar .open-menu a { color: hsl(268, 40%, 25%) ; color: var(--very-dark-moderate-violet); background-color: white; border: 2px solid hsl(268, 40%, 25%); border: 2px solid var(--very-dark-moderate-violet); } #side-bar{ background-color: hsl(0, 0%, 75%); background-color: var(--grey); } #side-bar:target + #main-content{ left: 0; } } @media (min-width: 768px){ #header h1 a{ font-size: 150%; } } /* ---- REDUCED MOTION ACCESSIBILITY ---- * By SMLT **/ @media (prefers-reduced-motion: reduce){ *, *::before, *::after{ animation-duration: .001s !important; animation-iteration-count: 1 !important; transition-duration: .001s !important; } }
The fortress stood by the Eastern Sea, where we once saw the dancing lights.
Soldiers came in great numbers, their torches burning away in the forest.
When the valiant visited this mountain, the Moon took its leave.
A heavenly body was about to sweep across a celestial path.
Narrativistic antimeme deployed.
On it's westerly course, the Moon departs, and so we shall seek the long-tailed star.
ACCESS GRANTED
Item #: SCP-XXXX
Object Class: Safe
Special Containment Procedures: Foundation webcrawlers are to monitor dream forums, message boards, and blogs for any and all references to SCP-XXXX, which are to be removed immediately. who published any such information is to be tracked down and brought to Site-58 for further testing, followed by amnesticization and release.
Description: SCP-XXXX refers to a mental phenomenon in which affected individuals experience vivid dreams taking place in the former Republic of West Korea. SCP-XXXX typically occurs for 5 to 10 sessions of REM sleep phases lasting more than 6 hours, after which it will completely cease. SCP-XXXX has been recorded to affect baseline humans with a relatively abnormal Hume level, with a disparity on the order of centiHumes.
Dossier 2425/16 - Republic of West Korea
The Republic of West Korea was a political entity located in the Korean peninsula. The government of West Korea had an awareness and vested interest in anomalous objects and events, as corroborated by deepwell vault documents held by the Foundation. An organization loyal to West Korea known as the Ministry of Abnormal Affairs (MoAA) is understood to have had several anomalies under containment, and has amicably cooperated with the Foundation to neutralize several containment breaches.
On an undetermined date, West Korea was erased from local reality in its entirety by SCP-3812. All records pertaining to West Korea outside those secured in deepwell information vaults ceased to exist. The Korean peninsula underwent heavy geographical changes, including the disappearance of the Hayansan mountain range and the Goyohae Sea. The capital city of West Korea, Seohanggu, no longer exists, however major cities such as Pyeongyang and Hanyang remained relatively intact, albeit heavily altered and divided between the governments of North and South Korea.
SCP-XXXX was identified on 15/08/20██, when Foundation web crawlers came across sensitive information regarding [REDACTED] on the blog of an SCP-XXXX-1 instance unaffiliated with any GoI. Following information suppression protocols, the SCP-XXXX-1 instance, hereafter referred to as SCP-XXXX-1-1, was brought to Site-58 for testing and further observation.
Preliminary interviews with SCP-XXXX-1-1 were conducted to identify the exact nature of the anomaly, however SCP-XXXX failed to take place while the instance was in Site-58 containment. SCP-XXXX-1-1 was amnesticized and released after no other anomalous properties were recorded. Similar incidents occurred in the following weeks, in which sensitive information present during SCP-XXXX events were published onto the internet by SCP-XXXX-1 instances. There are believed to have been several more unrecorded SCP-XXXX-1 instances that managed to avoid notice during their active states.
Several weeks after the first SCP-XXXX-1-1 instance was identified, Dr. Lindstrom reported his recent dreams involving unidentified individuals in lab coats holding a picture of the SCP Foundation and Global Occult Coalition logos, similar to findings from interviews with SCP-XXXX-1-1.
Addendum XXXX.03:
Dr. Lindstrom was designated as SCP-XXXX-1-7 and brought to Site-58 for testing. To ensure greater success in identifying the anomaly, Compound K31-Rijin1 was administered to SCP-XXXX-1-7 shortly before proceeding with the test. Neuron Imaging Engines (NIEs)2 were utilized for a more concise analysis of the anomaly.
<Begin Log>
(Dream begins. Dr. Lindstrom gets up from his resting position in a cleanroom. Several unidentified individuals observe Lindstrom through glass windows.)
Lindstrom: Well uh, hello there?
Man 1: On its westerly course, the Moon departs.
Lindstrom: Um, yes, uh… And so we shall seek the long tailed star. To whom am I speaking to?
Ryeo: I am Dr. Ryeo, of the Ministry of Abnormal Affairs. You must be Foundation personnel.
Lindstrom: Indeed, I am. The name's Dr. Lindstrom, pleased to make your acquaintance. Sorry, but— I don't believe I'm familiar with any such organization?
Ryeo: I had a feeling you would say that. You have no idea how long we've been searching for you guys.
(Dr. Ryeo and another individual unlock the cleanroom as Dr. Lindstrom walks out.)
Ryeo: Please, walk with me.
(Dr. Ryeo and Dr. Lindstrom walk out into a hallway)
Ryeo: We are, or perhaps more appropriately were, a nation that existed in consensus reality, before we were forcibly displaced from it. We aren't completely certain of the extent or consequences of our displacement, due to the limitations of our predicament. We were hoping to contact the Foundation or GOC for aid and further insight. You have no idea how many civilians pick up our metaphorical phone without knowing how to answer coherently, if at all.
(Both stop in front of a window. NIE footage depicts a large city under a red-tinted sky. The sun is noticeably dimmer.)
Ryeo: Welcome to West Korea, Dr. Lindstrom.
<End Log>
Still from video footage generated by Neuron Imaging Engine. Note the sharpness of the footage, uncharacteristic of that found in baseline dreams.
Note: SCP-XXXX-1-7 and Dr. Ryeo continued to discuss about West Korea and the details of its current state until the former woke up. SCP-XXXX-1-7 provided further recommendations for future testing following the conclusion of the test.
<Begin Log>
(Dream begins. Dr. Lindstrom sits up in a chair. Dr. Ryeo sits across the table.)
Ryeo: Welcome back Dr. Lindstrom.
Lindstrom: Thank you for agreeing to this interview, Dr. Ryeo. Shall we proceed?
Ryeo: Of course.
(Dr. Lindstrom absent-mindedly reaches out to the table, before pulling his hand back.)
Lindstrom: Sorry, force of habit with the uh, recorder. First question, could you detail the displacement of West Korea and the events leading up to it?
Ryeo: We received orders from the Central Government that GM-2983 was to be neutralized as soon as possible, using all methods available to the MoAA. I myself am not familiar with what exact methods or weaponry we deployed against GM-298, since the only people who had access to this information were killed by it before displacement occurred.
Lindstrom: Could you elaborate further on these personnel who had access to said information?
Ryeo: The upper third of the executive branch, the MoAA directorial committee, several commanders in the Army and Navy… As for causes of death, would you prefer me to list them chronologically or alphabetically?
Lindstrom: Good lord. We can uh, get into that later.
Ryeo: Right. I was in Dangyeong at the time, at the MoAA site there. The containment breach alarm rang, and I quickly ran to the site bunker. Along the way, I saw the sky start to dim through the windows, taking on a red hue reminiscent of a sunset, before disappearing completely. Contrary to expectations, the absence of the Sun did not lead to flash-freezing in total darkness. I can only assume it was thanks to one of the ██████ Preservation Systems that such a scenario was avoided.
Lindstrom: ██████ Preservation Systems?
Ryeo: It is one of the many failsafes employed only by the MoAA. When "dealing with existential threats" is part of the job description, surrounding oneself with such systems come naturally. I couldn't tell you exactly which or what kind of systems were activated when the incident occurred, I don't have the clearance, you see, and quite frankly I've stopped questioning it. What I can tell you with certainty, though, is that GM-298's retaliation should have went further beyond a reduction of a single narrative dimension. We're not sure how we avoided the full brunt of dimensional displacement, but we're almost certain the Preservation Systems are responsible somehow.
Lindstrom: Alright, then. What about the response of the West Korean government to the displacement? I'm sure an incident of this magnitude would be quite difficult to clean up after.
Ryeo: The thing is, we didn't. The government, or what was left of it, declared martial law almost immediately after the incident, and did not even attempt to preserve the veil. Communications with a third of the nation, as well as the outside world, ceased entirely. Anywhere beyond our little pocket was a turbid cloud of fluctuating reality, so we had to set up a perimeter to avoid having to deal with more reality benders. The veil of normalcy was torn apart, a third of our assets became irretrievable, we were surrounded on all sides by chaotic void-fog, and there was no one coming to help us. Normally, the directorial committee would have had our heads for a mistake as severe as this, but it's difficult to reprimand employees when you've been sublimated.
Lindstrom: No one left to blame or be blamed by, eh? Moving on, uh, what was the response of your Ministry?
Ryeo: Since the preservation of the nation was more important than that of normalcy, Ministry assets were utilized to resolve resource shortages. We have supply lines running towards the cities from the eastern highlands, where volunteers generate supplies of food and freshwater while within close proximity to unstable reality. We eliminated food insecurity almost overnight, with the amount of supplies that we can generate at a time. With practically everyone well-fed, there haven't been any cases of mass civil disorder to speak of, fortunately.
Lindstrom: If West Korea has effectively eliminated scarcity, what's the motivation behind your attempts to re-establish contact with consensus reality?
Ryeo: In spite of an infinite resources, we remain in a precariously vulnerable position. I mentioned earlier that the Preservation Systems prevented total narrativistic dimensional collapse, but due to incomplete protocols, our little pocket isn't out of the woods. Should the failsafes break down, we could be annihilated instantly, very much like the way a thought or idea would escape you. We have to either attempt to maintain machinery we barely understand, or devise a method to evacuate everyone to a more secure plane of existence before the Preservation Systems buckle.
Lindstrom: So you attempted to contact organizations with the capabilities to carry out the latter.
Ryeo: Correct, our only choices were either the Foundation or the GOC. The informational aperture itself was a hit-or-miss setup when it came to contacting other anomalous organizations. To avoid information breaches, we strictly broadcasted to individuals with Hume levels that deviated from the average, since it was known that such individuals were usually employed as personnel at anomalous organizations, but not so much that we would send distress calls to fully fledged reality benders.
Lindstrom: Very well, I think that's about everything we need for now. Thank you for your co-operation, Dr. Ryeo. We'll be in touch, hopefully with a solid plan to help you guys out.
Addendum XXXX.06: SCP-XXXX is a direct consequence of MAA personnel generating an informal Type-Keaton Informational Aperture to our universe, allowing for transmission of information within a dream medium. This has been confirmed by the Department of 'Pataphysics and their West Korean counterparts.
Addendum XXXX.10: Following exchanges between the Department of 'Pataphysics and the Ministry of Abnormal Affairs, a framework was established for the elevation of West Korean materiel and personnel to our narrative plane via an extrapolation of the Kang-Porter Narrative Transmutatory Matrix.
Addendum XXXX.11: Preliminary tests have resulted in the successful elevation of non-anomalous objects into our narrative plane. Testing with biological material and anomalous objects has been approved by the O5-Council.
Addendum XXXX.12: A project proposal regarding SCP-XXXX was submitted by SCP-XXXX-1-7 before the O5-Council, with the goal of elevating all sentient non-anomalous entities associated with SCP-XXXX to our narrative plane.
Addendum XXXX.14: Project Kirin has been put on hold indefinitely, due to complications experienced in narrative ascension of sentient entities at the Diderot Limit4.
Addendum XXXX.17: No further SCP-XXXX events have occurred, despite the application of a Wrenmann Dream Anchor which confined all such events to SCP-XXXX-1-7. Research on SCP-XXXX has thus been put on hold indefinitely. Reclassification of SCP-XXXX to "Neutralized" is under consideration by the O5-Council.
« Previous Article | Current Article | Next Article »
If you're reading this, congratulations, you're from our universe. The embedded narrativohazards in this part of the document block any sentient entity of a higher narrative plane from viewing its contents. We had to take such measures specifically because the disappearance of West Korea itself was the result of intervention from an entity of a higher narrative plane, formerly known as SCP-3812. We're not sure if he's still watching, but we would very much like to avoid risking the Foundation being scrubbed out of existence.
- Dr. Lindstrom
Item #: SCP-XXXX
Object Class: Neutralized
Special Containment Procedures: Narrativistic antimemes are to be embedded in all updated SCP-XXXX documents. All individuals recovered from SCP-XXXX are to be administered selective amnestics to remove all knowledge related to the anomaly and the Republic of West Korea.
Description: SCP-XXXX was the Republic of West Korea, a former sovereign state that existed in consensus reality until its attempted annihilation by SCP-3812 via displacement into lower narrative dimensions. As a result of anomalous countermeasures employed by the West Korean Ministry of Abnormal Affairs (MoAA), SCP-XXXX managed to halt its narrativistic displacement.
SCP-XXXX
Despite their efforts, the MoAA was unable to restore SCP-XXXX to consensus reality through the means that were available to it. Hence,
Addendum XXXX.14A: Following deliberation by MoAA officials and the O5-Council via SCP-XXXX-1-7 as proxy, Project Kirin was elected to be covertly carried out to avoid notice from higher narrative entities. The project was publicly put on hold on grounds of fabricated complications while the relevant documentation and materials were embedded with appropriate narrativohazards.
Addendum XXXX.15A: Approximately 16,000 individuals have been elevated to our narrative dimension thus far, the vast majority of them inhabiting inert bodies produced by rudimentary replicas of a Bright/Zartion Hominid Replicator. The Ministry of Abnormal Affairs has since been dissolved, with personnel being reassigned primarily to the Korean branch. Civilian consciousnesses have been amnesticized according to protocol, and reintegrated into society.
Secondary anomalies contained by the former MoAA present in SCP-XXXX have been terminated and/or permanently sealed following an agreement between the Foundation and the MoAA. These anomalies are to be considered neutralized and irrelevant.
Relevant documents on West Korea, as well as MoAA archives, have been elevated for archival purposes and embedded with narrativohazards. Attached is an excerpt transcript from a WKBN (West Korean Broadcasting Network) broadcast, shortly after the beginning of the final phase of Project Kirin.
Dearest citizens, a lifeline has been cast into our hands. We have been given the opportunity to return to a world under a blue sky, our old world, but alas, to do so we must let our cherished homeland go. If our great nation cannot follow us into a new future, then so be it, I say.
We must live on regardless, in memory of those we lost when we fell from our place in the sun, and to carry the spirit of West Korea wherever we may go. May there be light on our land, our heavens, and our hearts.
- Heo Jungwa, Acting President of West Korea
Addendum XXXX.16A: Class-F amnestics have been administered to all elevated individuals, including those who have been employed by the Foundation, with the purpose of expunging all memory of West Korea from their consciousnesses. Documents on West Korea are not to be explicitly restricted to any elevated personnel with the qualifications to access them, however any attempts to recover pre-elevation memories should be actively suppressed outside approved narrativohazardous environments.






Per 


