「碎眠症」:聰明與昏昏欲睡的被放逐者的疾病

http://www.scp-wiki.net/scattersomnia

「碎眠症」:聰明與昏昏欲睡的被放逐者的疾病
Author: feitagfeitag
Published on 15 Mar 2020 05:43
/* 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;
    }
}
rating: 0+x

What this is

A bunch of miscellaneous CSS 'improvements' that I, CroquemboucheCroquembouche, 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; }
rating: 0+x

WANDERER'S NOTE: Hello! This is my first time penning a Page in the Library! I'm ecstatic, but I hope my excitement doesn't get me carried away, as this is topic is quite severe. I am ever hopeful that others that have experienced what I describe below will be able to voice their own experiences.

—Wanderer Lampyra
來自新興派系:
「她的大蛇之失落林間空地之守望者」

「碎眠」:聰明與昏昏欲睡的被放逐者的疾病

思想的瘟疫,
觀者的病痛,
噩夢行者 (由夢神所稱),
肏那個被放逐者「暗淡閃電」誤導我
(雖然,我很感激其人的欺騙,使我
有機會憑我自己發現這個,
所以我也許就能幫助其他人)
1 2

Conspectus

這是一段故事,講述了我在迷失於大書架邊緣地帶的兩週期間所發現的東西,我身上除了旅行包 (它的內部空間多於外部空間) 、我的幽靈貓「蕎麥」以及我自己的方向感以外什麼都沒有。那時,我身為生活在被放逐者圖書館裡面的蛇之手成員的時間只有短短的六個月。3 我處在脆弱的位置,我是說精神上的,而且有個具有誤導蛇手同夥前科紀錄的人 (去你的「暗淡閃電」) 騙了我,使我經歷連做夢也想不到的冒險。

所有在那的書架都很破舊,可能幾個世紀以來都沒有被閱讀過。The verdancy4 was pretty, in streams of thick vines and overgrowth, 但不久之後我就明白我陷入了多麼麻煩的狀況。沒有圖書館員會回應我的呼喚。5 我找到一棟建築 — 古老的定居點,可能是由一組死去已久的探險隊建造的 — 這點令我充滿不安。然後,我推測,一個被夢神族稱為「噩夢行者」的實體跟蹤著我,並趁我沒察覺到的時候,跳入了我的頭中,棲居在我的潛意識裡。

隔週 ,我把時間花在I spent that next week foraging for scores of disembodied knowledge and sustenance; reading and retrieving forgotten texts; and exploring with Buckwheat, to no avail. Another group (who wish to remain anonymous) found me there, and via complex working, opened a Door back to my home. I showed no symptoms of its tendrils — except for intermittent, fearful fluttering — until I returned.

And then, it took me.

Illustration

thanks-lissie.png

This is the place where I first felt it. My photo-clairvoyant friend, Lissiefang, produced this image from my memory, in my stead. I was unfortunately unable to capture a photo myself, and the Serpent knows I could never afford a camera that takes vital energy snapshots, so this will have to do. (Thanks Liss!!)

Knowledge

Traits: A "plague of thought" is a malignant being that inhabits your psyche, latches onto your dreams, and sucks them dry. It is an intrusive negative thoughtform fuelled by a cynical, alien Mindscape that knows what you fear and robs your life of its joy. They take innumerable shapes and sizes with a motif of endless, fractal spirals. One can nary identify it until it is too late.

Those Wanderers that know a thought plague experience an immense mental valley where they might feel downtrodden and discarded. It starts with a light throbbing — or even a strange numbness — behind the eyes. As the plague grows, they experience a lasting ego death. Those around them are unable to identify them as they once were. They sense realistic hallucinations of those that have similarly fallen, reaching toward them, pleading for help, or mercy. And then, one's very physical form recedes like a tide and diminishes, wisping away from the Overworld.

The thought plague, satiated by its latest feast, returns to its nightmarish abode, and awaits another who might happen upon its imprint.


Nature: Stressors come with an interconnected world. Both through A) the Internet and B) the vast, shared psychic space we advanced sapients can access with the most basic of neuro-biological function, we feel more a sense of togetherness than any other time in history. And yet, still we find ourselves anxious and alone, thrown to the wayside with poisonous depression and uncertainty. Separating into ideological tribes more distant than the oldest peoples of antiquity. In rare cases, this leads to fatal, "psycho-physical" expansion, especially now in the Unmasqued Age.6

This is not that. "Scattersomnia" — which is a nomenclature I developed with the others in my sect, to describe the wretched ways these ideatic miscreants prowl — affects some of those same people, but only those whose guardians raised them to believe they were naturally gifted. Those "smart cookies"; those naïve ones in their merry ways; those of us who succeeded young, peaked early, and fell hard. Those whose dreams were dashed are the most vulnerable, as the "nightmare-walker" sees them clearest.


History & Associated Parties: An endless amount of scattersomniacs lived and fell across human history. I believe some famous ones include painter Vincent van Gogh, poet Edgar Allan Poe, and most recently, powerful seer and former Jailor psionics specialist Samara Maclear, who frequently experienced nightmares of a vantablack Gate and an ambling, indeterminate silhouette.

The Oneiroi disavow the nightmare-walkers; though they are of their kind, their minds twisted after lifetimes of basking in the nightmares at the bottom of Man's misery. They are shells of what they once were and plague the Waking World incessantly — having nowhere else to go.


Approach: A nightmare-walker is not to be pitied. They are wretched, and act in wretched ways. A nightmare-walker is to be destroyed with stronger thoughtforms — the assistance of a capable clairvoyant will do, if temporarily.7 There is little else one may wield to fight them, except maybe the spirit of oblivion that lives deep in sapients of some worlds, seeded by cursed, impossible machines.

Observations & Stories

I am the only one in my circle8 that I know to have felt this. I ask that all who have experienced the cursed fate of the nightmare-walkers to join your voice with mine.

-Lampyra

Doubt

There is little doubt. The nightmare-walkers are here, in droves, screaming from behind the tarp strung up against the cosmic wall. I have already invoked their name, and I fear my voicing of their disordered, collective spirit of pain has cast forth their image where all may see.

I'm sorry.

But with your strength — all ye who tread here — we might defeat them. Or so I hope.

-Lampyra

Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License