@supports(display: grid) { :root { --sidebar-width-on-desktop: calc((var(--base-font-size) * (14 / 15)) * 19); --body-width-on-desktop: 45.75rem; } @media only screen and (min-width: 769px) { #side-bar .close-menu { display: block; position: fixed; top: 0.5rem; left: 0.5rem; width: 3rem; height: 3rem; background: unset; opacity: 1; pointer-events: all; z-index: -1; } #side-bar .close-menu img { color: transparent; } #side-bar .close-menu::before, #side-bar .close-menu::after { content: ""; box-sizing: border-box; position: fixed; display: block; top: 0.5rem; left: 0.5rem; width: 3rem; height: 3rem; padding: 0; margin: 0; text-align: center; pointer-events: all; cursor: pointer; transition: opacity var(--sidebar-transition-timing); } #side-bar .close-menu::before { --mask:url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' id='Hamburger' x='0' y='0' baseProfile='tiny' overflow='visible' version='1.2' viewBox='0 0 32 32' xml:space='preserve'%3E%3Cpath d='M4 10h24c1.1 0 2-.9 2-2s-.9-2-2-2H4c-1.1 0-2 .9-2 2s.9 2 2 2zm24 4H4c-1.1 0-2 .9-2 2s.9 2 2 2h24c1.1 0 2-.9 2-2s-.9-2-2-2zm0 8H4c-1.1 0-2 .9-2 2s.9 2 2 2h24c1.1 0 2-.9 2-2s-.9-2-2-2z'/%3E%3C/svg%3E"); z-index: -1; background-color: var(--toggle-icon-color, rgb(var(--sidebar-links-text))) !important; -webkit-mask: var(--mask); mask: var(--mask); -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-position: 50% 50%; mask-position: 50% 50%; -webkit-mask-size: 60%; mask-size: 60%; } #side-bar .close-menu::after { z-index: -2; background-color: var(--toggle-button-bg, rgb(var(--sidebar-bg-color))) !important; border-radius: var(--toggle-roundness, 50%); border: var(--toggle-border-color, rgb(var(--sidebar-links-text))) var(--toggle-border-width, 0.25rem) solid; } #side-bar:focus-within .close-menu, #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover .close-menu { pointer-events: none; } #side-bar:focus-within .close-menu::before, #side-bar:focus-within .close-menu::after { opacity: 0; pointer-events: none; } #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover .close-menu::before, #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover .close-menu::after { opacity: 0; pointer-events: none; } #side-bar { display: block; position: fixed; top: 0; left: calc(var(--sidebar-width-on-desktop)*-1); z-index: 10; transition: left 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; height: 100%; overflow-y: auto; overflow-x: hidden; margin-top: 0; } #side-bar:focus-within { left: 0; } #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover { left: 0; } #side-bar .side-block { margin-top: 1rem; background-color: rgb(0, 0, 0, 0); border-radius: 0; border-left-width: 0px; border-right-width: 0px; } #main-content::before { content: ""; display: block; position: fixed; top: 0; right: 0; z-index: -1; opacity: 0; transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, width 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; margin-left: var(--sidebar-width-on-desktop); background: rgba(var(--swatch-menubg-black-color), .3) 1px 1px repeat; padding-right: 0; width: 100%; height: 100vh; pointer-events: none; z-index: 99; } #side-bar:focus-within ~ #main-content::before { width: calc(100% - var(--sidebar-width-on-desktop)); opacity: 1; pointer-events: all; } #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover ~ #main-content::before { width: calc(100% - var(--sidebar-width-on-desktop)); opacity: 1; pointer-events: all; } @supports (-moz-appearance:none) and (background-attachment:local) and (not (-moz-osx-font-smoothing:auto)) { #side-bar { padding: inherit; } } #content-wrap { display: flex; flex-direction: row; width: calc(100vw - (100vw - 100%)); min-height: calc(100vh - calc(var(--final-header-height-on-desktop, 10.125rem))); flex-grow: 2; height: auto; position: relative; margin: 0 auto; max-width: inherit; } #main-content { width: 100%; position: initial; max-height: 100%; padding: 2rem 1rem; max-width: var(--body-width-on-desktop, 45.75rem); margin: 0 auto; } #page-content { max-width: min(90vw, var(--body-width-on-desktop, 45.75rem)); } @supports (-webkit-hyphens:none) { #side-bar { transition: left 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, padding-right 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, background-color 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; padding-right: 0; background-color: rgb(0, 0, 0, 0); pointer-events: all; overflow-x: visible; overflow-y: visible; z-index: 999; } #side-bar::-webkit-scrollbar { opacity: 0; -webkit-transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; } #side-bar .close-menu::before { z-index: 999; } #side-bar .close-menu::after { z-index: 998; } #side-bar:hover .close-menu::before, #side-bar:hover .close-menu::after { opacity: 0; } #side-bar:hover { left: 0; background-color: rgba(var(--swatch-menubg-color), 1); padding-right: 0; } #side-bar:hover::-webkit-scrollbar { opacity: 1; } #side-bar:hover~#main-content::before { width: calc(100% - var(--sidebar-width-on-desktop)); opacity: 1; pointer-events: all; } } } }
:root { /* header measurements */ --header-height-on-desktop: 10rem; --header-height-on-mobile: 10rem; --header-h1-font-size: clamp(2rem, 5vw, 2.8125rem); --header-h2-font-size: clamp(0.875rem, 3vw, 0.9375rem); --logo-image: url("https://nu-scptheme.github.io/Black-Highlighter/img/logo.svg"); } #header { --search-textbox-text-color: var(--swatch-secondary-color); background: none; } #header::before { content: " "; position: absolute; width: 100%; height: 100%; left: 0; top: 0.75rem; background-image: var(--logo-image); background-repeat: no-repeat; background-position: center 0; background-size: auto calc(var(--header-height-on-desktop) - 1.5rem); opacity: 0.8; pointer-events: none; } #header h1, #header h2 { margin: 0; padding: 0; width: 100%; height: var(--header-height-on-desktop); display: flex; align-items: center; justify-content: center; display: flex; align-items: center; justify-content: center; } #header h1 a, #header h1 a::before, #header h2 span, #header h2 span::before { margin: 0; padding: 0; z-index: 0; display: block; text-align: center; } #header h1 { z-index: 1; } #header h1 a::before, #header h1 a::after { content: var(--header-title); } #header h1 a::before { color: rgb(var(--swatch-text-tertiary-color)); z-index: -1; -webkit-text-stroke: 0.325rem rgb(var(--swatch-text-dark)); } #header h1 a::after { color: rgb(var(--swatch-headerh1-color)); z-index: 1; } #header h2 { z-index: 0; text-transform: uppercase; pointer-events: none; } #header h2 span { margin-top: calc(var(--header-height-on-mobile)/2 + var(--header-h1-font-size)/2 - 2em); } #header h2 span::before, #header h2 span::after { --wght: 600; content: var(--header-subtitle); position: absolute; left: 50%; transform: translateY(-50%) translateX(-50%); width: 100%; text-align: center; } #header h2 span::before { -webkit-text-stroke: 0.25rem rgb(var(--swatch-text-dark)); } #header h2 span::after { color: rgb(var(--swatch-headerh2-color)); z-index: 1; } #search-top-box form[id="search-top-box-form"]:not(:focus-within) input[type="text"] { color: rgba(0, 0, 0, 0); } @media (min-width: 36rem) { #login-status { flex-grow: 1; left: 3%; right: initial; } #login-status::before { --mask-image: none; background-color: transparent; } #login-status:not(:focus-within) { color: rgb(var(--login-line-divider-color)); -webkit-user-select: initial; -moz-user-select: initial; -ms-user-select: initial; user-select: initial; } #login-status #account-topbutton, #login-status:not(:focus-within) #account-topbutton { --clip-path: polygon( 0 0, 100% 0, 100% 100%, 0 100% ); background-color: rgba(var(--login-arrow-color), 0); } #login-status #account-topbutton::before{ --clip-path: polygon( 30% 35%, 70% 35%, 50% 60%, 50% 60% ); --mask-image: initial; content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(var(--login-arrow-color), 1); -webkit-clip-path: var(--clip-path); clip-path: var(--clip-path); } #login-status #account-topbutton::before, #login-status:not(:focus-within) #account-topbutton::before, #login-status:not(:focus-within) #account-topbutton:hover::before { --clip-path: polygon( 30% 35%, 70% 35%, 50% 60%, 50% 60% ); --mask-image: initial; } #login-status:not(:focus-within) #account-topbutton::after { display: none; } #login-status:not(:focus-within) *:not(#account-topbutton):not([href*="account/messages"]) { --clip-path: polygon( 0 0, 100% 0, 100% 100%, 0 100% ); pointer-events: all; -webkit-clip-path: var(--clip-path); clip-path: var(--clip-path); } #login-status:not(:focus-within) *:not(#account-topbutton):not(#account-options):not([href*="account/messages"]) { opacity: 1; } #login-status #my-account { --wght: 300; } #account-options { background: var(--gradient-header); } #search-top-box { top: 1.5em; right: 3%; background: rgba(var(--search-focus-textbox-bg-color), 0.4); } #search-top-box:focus-within ~ #login-status { opacity: 1; } #search-top-box::after { transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-clip-path 150ms cubic-bezier(0.4, 0, 0.2, 1); transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1), clip-path 150ms cubic-bezier(0.4, 0, 0.2, 1); transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1), clip-path 150ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-clip-path 150ms cubic-bezier(0.4, 0, 0.2, 1); } #search-top-box:not(:focus-within)::after { --clip-path: polygon( 0 0, 100% 0, 100% 100%, 0% 100% ); background-color: rgba(var(--search-icon-bg-color, --dark-accent), 1); -webkit-clip-path: var(--clip-path); clip-path: var(--clip-path); } #search-top-box:not(:focus-within):hover::after { --clip-path: polygon( 0 0, 100% 0, 100% 100%, 0 100% ); background-color: rgb(var(--search-icon-hover-bg-color)); } #search-top-box form[id="search-top-box-form"]:not(:focus-within) { max-width: var(--search-width); } #search-top-box form[id="search-top-box-form"]:not(:focus-within) input[type="text"] { max-width: var(--search-width); padding: 0 var(--search-height) 0 1em; outline-width: 0; background-color: rgb(var(--search-focus-textbox-bg-color), 0.35); color: rgba(var(--search-textbox-text-color), 0.4); cursor: pointer; } #search-top-box form[id="search-top-box-form"]:not(:focus-within) input[type="submit"], #search-top-box form[id="search-top-box-form"]:focus-within input[type="submit"] { pointer-events: all; border: none; } } #page-title::after, .meta-title::after, #page-title::before, .meta-title::before { content: ""; flex-grow: 1; height: 0.0625rem; background: rgb(var(--swatch-primary)); } #page-title::before, .meta-title::before { margin: auto 1.25rem auto auto; }
项目编号:SCP-CN-1128
项目等级:Euclid
特殊收容措施:基金会应最大可能推广新式音频载体,以快速淘汰卡式录音带1作为音乐载体。Site-CN-75应对全球人员失踪案例进行记录并筛选出与卡式录音带相关的案例,也应对长期卡式录音带使用者进行长期监视。一旦出现与卡式录音带相关或监视列表内人员的失踪事件,应立刻派遣就近特工前往并确认,如果确认SCP-CN-1128发生,应回收其卡式录音带。
描述:SCP-CN-1128是一种维度异常现象,当一名人员使用卡式录音带播放机播放卡式录音带出现绞带故障2时,约0.1572‰的概率将触发SCP-CN-1128。当触发SCP-CN-1128后,该人员(标记为SCP-CN-1128-A)周围的Pssi指数将持续下降,当数值低于3.975时将产生一个U级通道,SCP-CN-1128-A将被该U级通道吞没并消失在这个维度空间中,整个过程通常不会超过一秒钟。
过程结束后,卡式录音带播放机内的卡式录音带将出现变化,其表现为:出现没有规律的失真现象、层次错误、降调等,但该卡式录音带并无异常。
SCP-CN-1128的发现于2010年至2011年期间,当时网络中出现了一种音乐类型3,该音乐类型相对于通常的音乐风格而言新颖但怪异。随后基金会在对其中一名早期制作者Mar███的调查中发现,他在私人网络通讯中经常声称,他曾在几年前突然前往了一个奇异的城市,并且又阴差阳错的回到了他的家中,这给了他制作蒸汽波音乐的灵感。对此,基金会立刻对其身份进行了调查,经调查结果发现,该音乐作者确实在2009年7月█日时被确定失踪,并于2010年末被寻获于他几乎废弃的公寓地下室中。对此,基金会开始了长达五个月的监听,发现他的失踪与使用卡式录音带相关,并最终发现了SCP-CN-1128。
以下为对SCP-CN-1128的实验记录:
实验SCPCN1128-1
实验者:D112801
指挥者:Doubc
装备配置:无线对讲机、一次性K5D装置(为K5D小型化的失败产物,仅可以使用一次,实验中的一次性K5D装置将参数锁死为基本坐标4。)
前言:此次试验为首次对SCP-CN-1128的实验。
<记录开始>
(D112801走进房间内,房间放置着一把椅子一张桌子,桌子上摆放着卡式录音带播放机与卡式录音带。)
D112801:这是,录音机和磁带吗?需要我做什么,头?
Doubc:D112801,请将磁带放入录音机内,并播放它直至卡带。
D112801:呃……就这些吗?
Doubc:没错,暂时就这么多任务,请开始吧D112801。
D112801:哎,好的,头。
(D112801开始了实验步骤。)
[无关内容省略]
(经过██小时的尝试,卡式录音带播放机发生第9█47次绞带故障。)
D112801:这次总……等等,我感觉身边怪怪的。
(D112801身边的Pssi指数开始骤降。)
Doubc:D112801,一会你会抵达一个未知的地方,请开启你背包里的那个装置,并保持通讯联系。
D112801:什么?未知的地方,我到底会怎……
(D112801被U级通道吞没)
<记录结束>
结语:D112801失联,卡式录音带产生变化。
D级人员一向靠不住,我建议使用训练更加有素的特工来进行实验——Doubc
驳回,目前我们并不了解U级通道的那一头是什么,穿过它又会付出什么代价,我们无法承担其中的风险。——Dr.Kalizi
因此次实验的结果,导致对SCP-CN-1128涉及人员的实验被全部禁止,而那位自称前往过“奇异城市”的Mar███则成为了这一切的突破口,以下为对Mar███的访谈记录。
受访者:Mar███
采访者:Dr.Kalizi
前言:此次访谈以一则名为夏季咖啡厅派对(Summer cafe party)的车载电台节目直播为名义进行。
<记录开始>
Dr.Kalizi:Mar███先生?感谢您参加我们的车载电台节目。
(Mar███没有回答,而是靠在椅背上哼着曲子并闭着眼睛。)
Dr.Kalizi:Mar███先生?
Mar███:啊!对了!汽车电台、迈阿密、椰子树!你知道那天我和小周去15阶梯楼顶看到了什么?一颗椰子树!那椰子树竟然会解方程,竟然把小周给反问住了,那天我笑了足足15分钟,你知道吗。
Dr.Kalizi:椰子……树?小周又是谁?听起来像是一个中国人的名字。
Mar███:中文,对。你知道小周他们把V city读作维C城5吗?谐音真的是太好玩了。
Dr.Kalizi:呃……维C城是哪里?就是您经常谈到的您的那一次“奇妙旅程”的目的地吗?
Mar███:那里很棒。
Dr.Kalizi:您可以说是Vaporwave的缔造者之一了,能不能透露一下您是从哪里得到的创作它的灵感?
(Mar███似乎陷入了悲伤之中)
Dr.Kalizi:Mar███先生?您这是怎么了?我是说了一些不该说的话了吗?
Mar███:不不不,没什么,我只是突然怀念我家曾经那个会给我提烤什么面包的烤箱了,那家伙挺幽默的。
Dr.Kalizi:烤箱……您是说烤箱会说话,就像那棵椰子树?
Mar███:α椰子面包!你知道为什么城市规定禁止把那种面包带出店里吗?因为那种面包吃了之后人会飘起来,导致你会被大风刮走!
Dr.Kalizi:听起来很不可思议,还有什么吗?
Dr.Kalizi:可不可以……具体的描述一下维C城的样子?
Mar███:维C城!霓虹灯!紫色太阳!会解方程的椰子树!
Dr.Kalizi:好的……Mar███先生,感谢您的参与。
<记录结束>
结语:因Mar███已经将这些经历在网络中传播了近4年所以记忆消除已经没有必要实施。
根据访谈记录,基金会从近千名志愿特工中挑选出了四名进行了SCP-CN-1128实验,最终4名特工进入了U级通道内,并通过了一次性K5D装置成功与Site-CN-75取得联系。目前对维C城的信息还在调查中。
« SCP-CN-1127 | SCP-CN-1128 | SCP-CN-1129 »