@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; 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; width: var(--body-width-on-desktop, 45.75rem); 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; } } } }
SCP-6000-A发出蛇一般的笑声,举着手铐向她摇了摇手指。"主管,我们已经讨论过这个问题了。你没法选择故事的结局。"
她低下头。
“但你确实可以选择你如何接受它。你可以坐下来,为你的老故事逐渐消失而哭泣.……或者你也可以微笑着走向下一个书架。”
她又抬起头。
她们不在B918号单元了。她们站在两个巨大的书架之间,这两个书架似乎在持续运转,然后突然分流出更多的书架。每个空间里都摆满了不同的书脊,从巨大的书本到薄薄的传单。有各种外形和大小的人穿着长袍坐在这儿和那儿,仔细阅读着这些藏书。天空是一片黑色的虚空,点缀着星座——她还能闻到新鲜纸张的香味。
“欢迎回家,狱卒。”
SCP-6000-A不见了。取而代之的是一个年轻的亚洲女性,可能有五英尺高,脸上有一个缠绕在手腕上的蛇纹身。
她终于能发出声音了。
“——怎么……?”
"我一直在告诉你。图书馆是你故事的结局,但这不一定是件坏事。因为你可以进入下一个故事。"
她向周围做了个手势,其他几个来访者抬起头来。有几个人甩掉了他们的头罩。
“Adam。”
还有Vasquez,还有Kurtz,Bardem,Flores,大家都在。 她甚至感觉她在人群中看到了几个O5。
"结局并不是死亡,Tilly。你顽固地坚持那个想法已经太久了。"
"会有新的故事?更多的世界,与更多基金会?和我一起?我们为之奋斗的一切?我们所做的一切?"
"早就是了。所以……"
她伸手拿出一本书,封面是柔软的灰色。书的正面压印着 "SCP-6000 "的华丽字体。
“开始读吧。”
她环顾了一下这个巨大无比的图书馆。在远处,她发现了火力小组第一次进去时迎接他们的那只巨型昆虫。它向她挥舞着钳子。
“我想这就是了。”
“是什么?”
“我的圆满结局。”
感谢您的阅读。
— ROUNDERHOUSE.
请按如下方式引用此页:
“SCP-6000”,作者 ROUNDERHOUSE,来自 SCP 维基。原文链接:https://www.scpwiki.com/scp-6000。译者 Lovesicker,来自 SCP-CN 维基。译文链接:http://scp-wiki-cn.wikidot.com/scp-6000。遵循 CC-BY-SA 协议。
更多详情请参阅授权指南。
授权信息
文件名:center.png, centerred.png
图像名:Fusillade Logo
图作者:Aethris
授权协议:CC BY-SA 3.0
文件名:6k.jpg
图作者:Rounderhouse
授权协议:CC BY-SA 3.0
注释:Composite of smallsnek.jpg和bubble4.png
文件名:bubble3.png
图像名:Borneo rainforest.jpg
图作者:Dukeabruzzi/编辑自Rounderhouse
授权协议:CC BY-SA 4.0
来源链接:维基共享
文件名:smallsnek.jpg,bigsnek.png
图作者:Valdevia / Art Page
授权协议:CC BY 4.0
文件名:library.png
图像名:County Dublin - Long Room-Trinity College - 20180703092642.jpg
图作者: MichaelMaggs/编辑自Rounderhouse
授权协议:CC BY-SA 4.0
来源链接:维基共享
文件名:tilly.png
图像名:Blanche Lincoln, 2007.jpg
图作者:Office of Senator Blanche Lincoln/编辑自Rounderhouse
授权协议:公有领域
来源链接:维基共享
文件名:bubble4.png
图像名:Aerial view of the Amazon Rainforest.jpg
图作者:lubasi/编辑自Rounderhouse
授权协议:CC BY SA 2.0
来源链接:维基共享
文件名:forest2.png
图像名:Flickr - Israel Defense Forces - IDF Elite Units' Soldiers Take Cover in the Elyakim Combat Training Base (14).jpg
图作者:Israel Defense Forces/编辑自stephlynch
授权协议:公有领域
来源链接:维基共享
文件名:jungleman.png
图作者:Pixabay
授权协议:公有领域
来源链接:Pixabay
文件名:bubble5.png
图像名:正在处理
图作者:正在处理
授权协议:正在处理
来源链接:正在处理
文件名:earth.png
图像名:
图作者:NASA/编辑自Rounderhouse
授权协议:公有领域
来源链接: 维基共享
文件名: interior.png
图像名: Long Room Interior, Trinity College Dublin, Ireland - Diliff.jpg
图作者:Diliff
授权协议:CC BY-SA 4.0
来源链接:维基共享
更多维基文档信息,请见版权信息总览。