@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
SCP-3357-熟能生巧
好吧…我有权去尝试一下。
SCP-3638-你不会是认真的吧!
重口味的,卤汁味的,杂烩浓汤
SCP-4522-幽玄之村的玉桃
不速之客,宽恕不是你应乞求或要求之物。
SCP-5207-吾皇永适
这十名存活个例发出更痛苦的尖叫,因为它们的结肠被更远地拉出肛门。
SCP-4536-美国大金字塔
时代走来,时代远逝,人们的愿望再也不是一根长矛。
与The wind say合译!
SCP-5360-赤いスプラッター殺人事件(猩红喷漆杀人事件)
这是一起策划地非常非常周密的谋杀案。并且你就是犯下这起案件的唯一一人。
与Kawasaki kidou合译!
SCP-4802-脏鸟
他们说的最肮脏的话会使密西西比河这边传教士的脸变得比芜菁还红。
SCP-9999-J-碎牛肉
但是牛排如此之高的时候我还有什么选择呢?
SCP-6060-只是人类
我想象我自己在一条湍急的河流旁边,水清流,兽戏水,鸟啁啾…
SCP-4835-牛肉
我请你原谅。
SCP-6535-姐妹永远在一起 <3
“姐妹俩是永远在一起的,对吧?”
突然间,Julia感觉她双臂中的温暖逐渐消散。
与joke3579大佬合译!
故事
一首摇篮曲,献给安德森机器人
它不再只是一个 存于科幻小说里的事物。
GOI格式
远离此处
夜空之中即新家
SCP-CN
图书馆
目,墓?
我再一次轻轻拂去她的所有污浊,她好像在笑。
我终于埋下,盖上厚厚的铬渣。心想这里就是她的坟墓了。
可她依然在笑。
堕梦虚空 三则
我背负着或许不存在的虚空,身临其境地感觉到本应该有的悲哀,堕落于梦的深渊里。
永不回头。
捕梦网,与躺在地上的白日梦想家
我的灵魂在距卡车接近时早已撕裂无数次,之前承受的所有创伤仿佛都是笑话。
然后它哭着驶过了。
坟蝇,梦呓
你死了,虫豸在你死去的尸体爬来爬去,爬进你那指甲缝里啃食,血肉已模糊。
你摸着自己的脸,那不是你的脸。你又往下看,你真的死了。
乐章戛然而止,你真的死了。
原创SCP
SCP-CN-2552
+52 … 7
最新评论: CZCN 于 15 Jul 2021 03:43
最新编辑: Broken Eclipse 于 11 Aug 2023 14:02
+ Show component code - Hide component code + Show component code - Hide component code 著作信息 标题:SCP-CN-2552 “不曾” 作者:Broken Eclipse 我相信我们不曾相遇。 ...
标签: euclid scp 不可移动 原创 地点 形态改变 无形 气象 现实扭曲 精神影响 视觉性 认知危害
SCP-CN-2244
+27 … 1
最新评论: Broken Eclipse 于 18 Aug 2021 07:16
最新编辑: Broken Eclipse 于 21 Aug 2021 03:48
...
标签: scp 动物 原创 听觉影响 地点 无效化
原创故事
Z,Z,Z。
+21 … 2
最新评论: Dr Roger_F_XL 于 18 Jul 2022 08:17
最新编辑: Broken Eclipse 于 18 Jul 2022 08:08
...
标签: 原创 故事
死变态
+15 … 4
最新评论: LeeBr 于 24 Aug 2023 03:47
最新编辑: Broken Eclipse 于 24 Aug 2023 00:49
...
标签: creepypasta 原创 故事
原创图书馆页面
目,墓?
+26 … 9
最新评论: UnnaHuz 于 12 Aug 2021 02:51
最新编辑: Broken Eclipse 于 11 Aug 2021 10:44
...
标签: wanderers 原创 苍树与血
堕梦虚空 三则
+26 … 7
最新评论: Ryan Sor 于 27 Aug 2021 10:51
最新编辑: Broken Eclipse 于 25 Aug 2021 12:37
...
标签: wanderers 原创 梦之谏言
捕梦网,与躺在地上的白日梦想家
+21 … 2
最新评论: BestTY 于 03 Oct 2021 01:43
最新编辑: Broken Eclipse 于 03 Oct 2021 04:18
著作信息 标题:捕梦网,与躺在地上的白日梦想家 作者:Broken Eclipse 一时兴起的臆想。 该作者的作者页:点击此处! 他忽而出...
标签: wanderers 原创 苍树与血
坟蝇,梦呓
+26 … 5
最新评论: Doctorwc(null) 于 03 Mar 2022 14:22
最新编辑: Broken Eclipse 于 27 Feb 2022 10:43
...
标签: wanderers 原创 梦之谏言
翻译SCP
SCP-3357
最新评论: Broken Eclipse 于 22 Feb 2021 09:47
最新编辑: hoah2333 于 07 Feb 2021 06:17
测试配置之中SCP-3357当前收容室(8 m × 6 m)的平面图 项目编号:SCP-3357 项目等级:Safe 特殊收容措施:SCP-3357应被收容在一个至少6 m × 6 m × 2.4 m的收容室内。项目应该在6 m × 6 m的地面上居中放置,并以墙壁和/或胶带为标记。为了便于测试对象,建议在该区域范围内提供卫生间。SCP-3357必须在原位置保持安全固定状态。...
标签: safe scp 乐器 感知力 智能 音乐性
SCP-3638
最新评论: Broken Eclipse 于 10 Feb 2021 03:41
最新编辑: Broken Eclipse 于 12 Feb 2021 15:53
信息危害警告 该文档中内容可能具有信息性危害,除非面临迫在眉睫的威胁,否则仅限于了解382-Diogenes程序的相关人员访问。如果你无意中访问了该文档,请立即告知SCP-3638研究小组。 图1:该实体的草图,由特工Colby Franquin在值班期间所画。请单击此处以查看补充的相似图纸。 项目编号:SCP-3638 项目等级:Safe...
标签: safe scp 信息危害 动物 幻觉 感知力 掠食性 节肢动物
SCP-4522
最新评论: Broken Eclipse 于 24 Feb 2021 01:34
最新编辑: The wind say 于 18 Apr 2021 07:14
...
标签: ijamea safe scp 动物 反熵 合著 味觉影响 城市 强迫性 感知力 文件 智能 植物 活物 猿类 精神影响
SCP-4802
最新评论: Baby Bat 于 02 Jul 2021 16:28
最新编辑: hoah2333 于 11 Jan 2023 07:12
“图片名称:尖叫海鸥 可通过goodfreephotos.com获取 作者:未知 图片发布于CC0公共领域下” http://www.scp-wiki.net/manymeatshttp:www-scp-wiki-net-manymeats▸ 该作者的更多作品 ◂(原文链接)http://www.scp-wiki.net/manymeats▸ 该作者的更多作品 ◂ ...
标签: keter scp 听觉影响 认知危害 鸟类
SCP-9999-J
最新评论: Dr-wengwan 于 05 Jul 2021 16:19
最新编辑: Broken Eclipse 于 03 Jul 2021 10:48
...
标签: apollyon k级情景 scp 全球超自然联盟 异常移动 搞笑 未收容 牛类 特异事故处 超维度 食物
SCP-6060
最新评论: wisdom01 于 11 Jul 2021 23:38
最新编辑: Broken Eclipse 于 06 Feb 2022 06:23
...
标签: 6000 euclid k级情景 scp 人形生物 合著 感知力 智能 未收容 活物 非人类
SCP-4835
最新评论: Pedder 于 13 May 2022 15:18
最新编辑: hoah2333 于 11 Jan 2023 07:21
SCP-4835 项目编号:SCP-4835 项目等级:Safe Keter 特殊收容措施:SCP-48...
标签: keter scp 反熵 异常移动 心灵感应 敌意 智能 未收容 牛类 玩具
翻译故事
一首摇篮曲,献给安德森机器人
最新评论: Broken Eclipse 于 24 Feb 2021 12:30
最新编辑: Broken Eclipse 于 24 Feb 2021 12:31
快速行动,破除陈规。1 软弱和精英,破碎的微光闪烁。 在这支离破碎的城市,请让我们 制造这世界和平的机器。 我们将赋予它明目、聪耳、妙音—— 分与十亿,连接卫星。 让罪恶牵着我的手。 让它于夜间沿我的路走。 我们将赋予它隼翼、剑刃、车轮、 手足和陀螺仪, 某种程度的自主, 推着我走下湿滑的斜坡。 我们将赋予它书籍、图画、时间、 我的面庞和话语,它分析。 它奏响小夜曲,继而挖掘出...
标签: 安德森机器人 故事 诗歌
翻译GoI格式
远离此处
最新评论: Etinjat 于 30 Mar 2021 15:08
最新编辑: Agent Phage 于 11 Apr 2021 10:10
“远离此处” by Youthful Galaxy 嘿,我们咋又来这儿了? Hey, how’d we get here again? 哦对。 Oh right. ~ 暴君于幕后窥视 Tyrants watch from behind the scenes 正当他们平息魔法、无效梦想之时 As they pacify magic and nullify dreams 被政客饲养,被骗子浇灌...
标签: 2021连写竞赛 goi格式 第五教会
其他翻译
SCP-3638补充图纸
最新评论: Broken Eclipse 于 10 Feb 2021 07:09
最新编辑: Broken Eclipse 于 12 Feb 2021 15:57
信息危害警告 该文档中内容可能具有信息性危害,除非面临迫在眉睫的威胁,否则仅限于了解382-Diogenes程序的相关人员访问。如果你无意中访问了该文档,请立即告知SCP-3638研究小组。 如下文件是对SCP-3638讽刺性描述的汇编。它既可以当作执行382-Diogenes程序振奋人心的资料,也能作为一个视觉参考的文集,具有比照片更少的潜在信息危害。 草图由站点主管Bogdan...
标签: 合作 艺术作品 补充材料
S. Andrew Swann的成员页
最新评论: Broken Eclipse 于 27 Feb 2021 08:04
最新编辑: Broken Eclipse 于 27 Feb 2021 08:04
SCPs: SCP 评分1 评论2 页面创建时间3 最新评论 S Andrew Swann的提案 1434 199 15 Sep 2011, 10:29 24 Jan 2021, 11:48 SCP-1123 357 46 11 May 2012, 09:08 22 Apr 2020, 10:14 SCP-1127 352 63 25 May 2012, 11:05 17 Oct...
标签: 作者
更多页面

该员工的肖像,由Dr Aurora Owl提供
姓名:何无述
安保权限等级:3级或以上
职务:特工/研究员
履历:该员工曾供职于Site-CN-█,负责过SCP-CN-2552的收容工作,在事件Φ-2552中违反了基金会相关规定并直接导致其死亡。一年后,该员工由于不明原因重新活动于基金会以内。目前,关于他的所有资料已受到严格加密。
有员工称曾在多个站点观察到他。

那么这个就是咱的上叙啦 (இдஇ; )