:root { --lh-red: #c0392b; --lh-blue: #2980b9; --lh-green: #27ae60; --lh-dark-green: #16a085; --lh-purple: #8e44ad; --lh-orange: #e67e22; --lh-yellow: #f1c40f; --lh-paper-bg: 255, 251, 240; --lh-string-color: 192, 57, 43; --lh-book-color: var(--gray-monochrome); --lh-tape-color: 90,90,90,0.3; --lh-white-bg: 249,249,249; --lh-dark-bg: 50, 50, 50; --lh-highlighter: var(--bright-accent); --lh-border-color: var(--gray-monochrome); --lh-wiki-note-color: var(--bright-accent) } /** * 旧代码合集 * 为了向下兼容而保留 */ .grid-container{display:flex;flex-direction:row;flex-wrap:wrap;width:100%}.grid-container,.grid-container [class*=grid]{box-sizing:border-box}[class*=grid]{padding:5px}.grid{width:100%}.grid-large{width:75%}.grid-big{width:50%}.grid-medium{width:33.33%}.grid-small{width:25%}@media screen and (min-width:768px){.wd-grid-large{width:75%}.wd-grid,.wd-grid-big{width:50%}.wd-grid-medium{width:33.33%}.wd-grid-small{width:25%}}.text-hover-hide{opacity:0;transition:opacity .3s}.text-hover-hide:hover{opacity:1}.text-block-hide{background:rgb(var(--black-monochrome));color:rgb(var(--black-monochrome));transition:background .3s}.text-block-hide:hover{background:0 0}.text-blur-hide,.text-blur-hover-hide{filter:blur(.3rem);-webkit-filter:blur(.3rem) transition: blur .3s}.text-blur-hover-hide:hover{filter:blur(0);-webkit-filter:blur(0)}.lyric-box{text-align:center;font-size:1.05rem;display:flex;flex-direction:column;flex-wrap:wrap;justify-content:center}.lyric-box p{margin:1.5em auto}.lyric-box.with-bigger-line p{margin:3em auto} /** * 便签纸 * notepaper */ .notepaper { background: linear-gradient(rgb(var(--lh-paper-bg)) 95%, #ddd 0); line-height: 2em; background-size: 100% 2em; background-attachment: local; border: 2em solid rgb(var(--lh-paper-bg)); box-shadow: 0 0.1rem 0.3rem rgba(0,0,0,0.2); padding: 0; margin: 1em auto; box-sizing: border-box; position: relative } .notepaper p { margin: 0; font-size: 1.05rem; letter-spacing: 0.1rem; line-height: inherit } .notepaper.narrow, .notepaper.wide { width: 90% } @media screen and (min-width:768px){ .notepaper.narrow { width: 50% } .notepaper.wide { width: 75% } } .notepaper.tight { border-width: 1rem; border-left-width: 1.2rem; border-right-width: 1.2rem; line-height: 1.8em; background-size: 100% 1.8em; font-size: 13px } .notepaper.with-string::before { content: ''; width: 0.5em; height: 6rem; background: rgb(var(--lh-string-color)); top: -2rem; right: -1rem; display: block; position: absolute; box-shadow: 0 0.1em 0.2em rgba(0,0,0,0.2); clip-path: polygon(-100% -100%,100% 0%,100% 100%,50% 98%,0% 100%); } .notepaper.with-tape::before { content: ''; border: 1px solid #ddd; background: rgba(var(--lh-tape-color)); width: 1.5em; height: 4em; transform: rotate(45deg); display: block; position: absolute; top: -3em; left: -1.8em } .notepaper.tight.with-string::before { top: -1rem; right: -0.25rem; } .notepaper.tight.with-tape::before { top: -2.5em; left: -1.3em } .notepaper.page { min-height: 36em; counter-increment: page; display: flex; flex-direction: column; justify-content: space-between } @media screen and (min-width:768px){ .notepaper.page { width: 70% } } .notepaper.page:after { content: counter(page); display: block; text-align: center } .notepaper-group { counter-reset: page; } .book-pattern { display: flex; flex-wrap: wrap; flex-direction: row } .book-pattern .notepaper.page:not(.notepaper > .notepaper) { width: 100% } @media screen and (min-width: 768px) { .book-pattern .notepaper.page:not(.notepaper > .notepaper) { width: 50% } } .book-wrapper { background: rgb(var(--lh-book-color)); padding: 0.5rem; box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.2); border-radius: 5px; margin: 1rem auto } @media screen and (min-width: 768px) { .book-wrapper .notepaper { margin: 0 } } /** * 文字修饰 */ .text-highlighted { position: relative } .text-highlighted::before { content: ""; position: absolute; height: 0.9em; bottom: 2px; left: -2px; width: 105%; z-index: -1; background-color: rgb(var(--lh-highlighter)); opacity: .6; transform: skew(-15deg); transition: opacity .2s ease; border-radius: 3px 8px 10px 6px; transition: 0.1s ease background-color; } .text-underlined { text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 2px; text-decoration-color: rgb(var(--lh-highlighter)) } .text-wavy { text-decoration: underline wavy; text-underline-offset: 4px; text-decoration-color: rgb(var(--lh-highlighter)) } .text-circled, .text-squared { display: inline-block; border: 2px solid rgb(var(--lh-highlighter)); border-radius: 100%; box-sizing: border-box } .text-squared { border-radius: 0 } .text-shadow { text-shadow: 0.075em 0.075em 0 rgb(var(--lh-highlighter)) } .text-highlighted.td-red::before { background: var(--lh-red) } .text-circled.td-red, .text-squared.td-red { border-color: var(--lh-red) } .text-underlined.td-red, .text-wavy.td-red { text-decoration-color: var(--lh-red) } .text-highlighted.td-blue::before { background: var(--lh-blue) } .text-circled.td-blue, .text-squared.td-blue { border-color: var(--lh-blue) } .text-underlined.td-blue, .text-wavy.td-blue { text-decoration-color: var(--lh-blue) } .text-highlighted.td-green::before { background: var(--lh-green) } .text-circled.td-green, .text-squared.td-green { border-color: var(--lh-green) } .text-underlined.td-green, .text-wavy.td-green { text-decoration-color: var(--lh-green) } .text-highlighted.td-darkgreen::before { background: var(--lh-dark-green) } .text-circled.td-darkgreen, .text-squared.td-darkgreen { border-color: var(--lh-dark-green) } .text-underlined.td-darkgreen, .text-wavy.td-darkgreen { text-decoration-color: var(--lh-dark-green) } .text-highlighted.td-purple::before { background: var(--lh-purple) } .text-circled.td-purple, .text-squared.td-purple { border-color: var(--lh-purple) } .text-underlined.td-purple, .text-wavy.td-purple { text-decoration-color: var(--lh-purple) } .text-highlighted.td-yellow::before { background: var(--lh-yellow) } .text-circled.td-yellow, .text-squared.td-yellow { border-color: var(--lh-yellow) } .text-underlined.td-yellow, .text-wavy.td-yellow { text-decoration-color: var(--lh-yellow) } .text-highlighted.td-orange::before { background: var(--lh-orange) } .text-circled.td-orange, .text-squared.td-orange { border-color: var(--lh-orange) } .text-underlined.td-orange, .text-wavy.td-orange { text-decoration-color: var(--lh-orange) } /* 隐藏文字 */ .text-blank { color: rgba(0,0,0,0) } .text-block { background: rgb(var(--black-monochrome)); color: rgb(var(--black-monochrome)); } .text-blur { filter: blur(0.3em); -webkit-filter: blur(0.3em) } .text-hoverback, .text-selectback { transition-duration: 0.3s; transition-property: background, transform, color } .text-blank.text-hoverback:hover, .text-blank.text-selectback::selection, .text-blank.text-selectback *::selection { color: rgb(var(--black-monochrome)) } .text-block.text-hoverback:hover { background: transparent!important } .text-block.text-selectback::selection, .text-block.text-selectback *::selection { color: rgb(var(--white-monochrome, 255, 255, 255)) } .text-blur.text-hoverback:hover { filter: blur(0)!important; -webkit-filter: blur(0)!important } /** * 附加项 */ .with-border, .with-box-style { border: 1px solid rgb(var(--bright-accent)) } .with-border-dark { border: 1px solid rgb(var(--black-monochrome)) } .with-border-light { border: 1px solid rgb(var(--white-monochrome)) } .with-border-thick { border-width: 2px } .with-shadow-sm { box-shadow: 0 0 0.1em rgba(0,0,0,0.2) } .with-shadow { box-shadow: 0 0.1em 0.2em rgba(0,0,0,0.2) } .with-shadow-lg { box-shadow: 0 0.15em 0.3em rgba(0,0,0,0.2) } .with-shadow-xl { box-shadow: 0 0.2em 0.5em rgba(0,0,0,0.2) } .with-shadow-xxl { box-shadow: 0 0.25em 0.8em rgba(0,0,0,0.2) } .with-padding, .with-box-style { padding: 0.25em 1em } .with-p-sm { padding: 0.125em 0.5em } .with-p-lg { padding: 0.5em 2em } .with-margin, .with-box-style { margin: 1em auto } .with-m-sm { margin: 0.5em auto } .with-m-lg { margin: 2em auto } .with-narrow-width { width: 90%!important; margin-left: auto; margin-right: auto } @media screen and (min-width: 768px) { .with-narrow-width { width: 75%!important } } [class*="with-bg-"], [class*="with-bg-"] h1 { color: #fff!important } .with-bg-red { background: var(--lh-red)!important } .with-bg-blue { background: var(--lh-blue)!important } .with-bg-green { background: var(--lh-green)!important } .with-bg-darkgreen { background: var(--lh-dark-green)!important } .with-bg-yellow { background: var(--lh-yellow)!important } .with-bg-orange { background: var(--lh-orange)!important } .with-bg-purple { background: var(--lh-purple)!important } /** * 删除类 */ .offwith-shadow { box-shadow: none!important } .offwith-border { border: none!important } .offwith-padding, .offwith-pam { padding: 0!important } .offwith-margin, .offwith-pam { margin: 0!important } .offwith-width-limit { width: auto!important; margin-left: auto!important; margin-right: auto!important } div[class*="grider"].offwith-grid-gap { grid-gap: 0!important } /** * 网格布局 */ /* Gridder 容器 */ div[class*="gridder"] { display: grid; box-sizing: border-box; grid-gap: 1rem; padding: 0 } div[class*="gridder"] * { box-sizing: border-box } .gridder, .gridder-col-2 { grid-template-columns: 1fr 1fr; } .gridder-col-3 { grid-template-columns: repeat(3, 1fr); } .gridder-col-4 { grid-template-columns: repeat(4, 1fr); } @media screen and (min-width: 768px) { .pc-gridder, .pc-gridder-col-2 { grid-template-columns: 1fr 1fr; } .pc-gridder-col-3 { grid-template-columns: repeat(3, 1fr); } .pc-gridder-col-4 { grid-template-columns: repeat(4, 1fr); } } .spanner, .spanner-2 { grid-column-start: span 2; } .spanner-3 { grid-column-start: span 3; } /** * 告示组件 */ .signblock, .signblock-dark, .signblock-warn { margin: 1rem auto; box-shadow: 0 0.1rem 0.3rem rgba(0,0,0,0.4); background: rgb(var(--lh-white-bg)); font-size: 1.05rem; padding: 2rem } @media screen and (min-width: 768px) { .signblock, .signblock-dark, .signblock-warn { width: 75% } } .signblock-dark, .signblock-dark h1 { background: rgb(var(--lh-dark-bg)); color: #fff } .signblock-warn, .signblock-warn h1 { background: var(--lh-red); color: #fff } .signblock h1, .signblock-dark h1, .signblock-warn h1 { text-align: center; font-size: 2rem; margin: 0; font-weight: 700 } .signblock-img { display: flex; flex-direction: row; justify-content: center } .signblock-img img { width: 8em } .signblock-footer { font-size: 0.9em; text-align: center; margin: 0.5rem 0; font-weight: bolder; display: block } /** * 报告 */ .reportblock, .reportblock-dark { border: 2px solid rgb(var(--lh-border-color)); box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.3); background: rgb(var(--white-monochrome)); padding: 0.8rem 1.5rem; padding-bottom: 0.4rem; margin: 1.5rem auto; margin-bottom: 1rem; position: relative } .reportblock hr, .reportblock-dark hr { background-color: rgb(var(--lh-border-color)); margin-left: -1.5rem; margin-right: -1.5rem } .reportblock h1:first-child, .reportblock-dark h1:first-child { position: absolute; top: -1rem; left: 1.5rem; font-size: 110%; font-weight: 600; background: rgb(var(--lh-border-color)); color: #fff; padding: 0.2rem 0.5rem; margin: 0; } .reportblock-dark, .reportblock-dark h1 { border-color: rgb(var(--lh-white-bg)); background: rgb(var(--lh-dark-bg)); color: #fff } .reportblock-dark hr { background-color: rgb(var(--lh-white-bg)); } /* 更好的折叠框 */ .bettercollap { margin: 1em 0; } .bettercollap .collapsible-block { width: auto; overflow: hidden; border: 1px solid rgb(var(--lh-border-color)) } .bettercollap .collapsible-block-content, .bettercollap .collapsible-block-link { background: rgb(var(--white-monochrome)); padding: 0.5em } .bettercollap .collapsible-block-content { padding-left: 1em; padding-right: 1em } .bettercollap .collapsible-block-link { color: rgb(var(--lh-border-color)); background: rgb(var(--white-monochrome)); transition: .3s; display: block; } .bettercollap .collapsible-block-link:hover, .bettercollap .collapsible-block-unfolded .collapsible-block-link, .styledcollap.bettercollap .collapsible-block-link { color: rgb(var(--white-monochrome)); background: rgb(var(--lh-border-color))!important; text-decoration: none } .bettercollap .collapsible-block-link:hover a { color: rgb(var(--white-monochrome)) } .bettercollap .collapsible-block-link::before { content: "\25BC"; display: inline-block; margin-right: 0.5em; transform: rotate(-90deg) scale(0.9) } .bettercollap .collapsible-block-unfolded .collapsible-block-link::before { transform: rotate(0) scale(0.9) } .bettercollap .collapsible-block + .collapsible-block { border-top: none } .styledcollap.bettercollap .collapsible-block { border-radius: 2px; box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.3) } .styledcollap.bettercollap .collapsible-block-content { background-color: rgb(var(--pale-gray-monochrome)); border-width: 3px } .styledcollap.bettercollap .collapsible-block-link:hover { background: rgba(var(--lh-border-color),0.95)!important; } /** * 提示框 */ .infoblock { color: #f1f1f1; font-weight: bold; background: #424242; padding: 5px 5px 5px 5px; border-radius: 4px; margin: -0.5rem 0 1rem 0; display: block; width: fit-content; padding-right: 25px; } .infoblock::before { content: "ⓘ " } /** * 单页迭代 */ .offset-page:not(:target), .offset-page:target ~ div#u-default-page { display: none } .offset-page:target { display: block }
@import url("http://vivarium.wdfiles.com/local--files/backrooms%3Avivtheme/stylesheet.css"); :root { --theme-base: "black-highlighter"; --theme-id: "advanced-splinter"; --theme-name: "Advanced Splinter Theme"; --logo-image: url("http://backrooms-wiki.wikidot.com/local--files/theme:uec/EUC%20%282%29.png"); --header-title: "无羁"; --header-subtitle: "无羁于恐,团结于勇。"; --body-font: punctuation-marks, Huiwen-mincho, sans-serif; --header-font: 'CKTKingKong', sans-serif; --title-font: 'CKTKingKong', sans-serif; --mono-font: 'Fantasque Sans Mono', monospace; --mainAccent: 255, 20, 40; --white-monochrome: 237, 233, 223; --pale-gray-monochrome: 255, 251, 240; --light-gray-monochrome: 160, 160, 160; --gray-monochrome: 72, 69, 60; --black-monochrome: 0, 0, 0; --bright-accent: var(--mainAccent); --medium-accent: 0, 0, 0; --dark-accent: var(--mainAccent); --pale-accent: var(--mainAccent); --dark-gray-monochrome: 20, 22, 24; --swatch-topmenu-border-color: var(--mainAccent); --swatch-topmenu-bg-color: var(--medium-accent); --swatch-menubg-color: var(--medium-accent); --swatch-border-color: var(--bright-accent); --swatch-text-dark: var(--white-monochrome); --swatch-text-light: var(--white-monochrome); --swatch-background: var(--medium-accent); --swatch-menutxt-dark-color: var(--white-monochrome); --swatch-primary-darker: var(--pale-accent); --swatch-secondary-color: var(--black-monochrome); --link-color: 230, 23, 68; --hover-link-color: 230, 23, 68; --visited-link-color: 156, 17, 47; --background-gradient-distance: 0rem; --gradient-topmenu: none; --diagonal-stripes: linear-gradient(transparent 0); --gradient-header: none; --header-height-on-desktop: 9rem; } /*login stuff*/ #login-status{ color: rgb(var(--white-monochrome)); } #login-status a#my-account { background-color: rgb(var(--pale-accent)); padding: 0.3em 0.25em 0.2em 0.25em; } #account-options>ul>li a:hover { color: rgb(var(--pale-accent)); } #account-options { background: rgb(var(--medium-accent)); border-color: rgb(var(--pale-accent)); color: rgb(var(--white-monochrome)); } #login-status ul a { color: rgb(var(--white-monochrome)); } /*table stuff*/ table.wiki-content-table th { background-color: rgb(var(--dark-gray-monochrome)); border: 2px solid rgb(var(--pale-accent)) !important; } table.wiki-content-table td { border: 2px solid rgb(var(--pale-accent)) !important; } /*misc*/ #page-title{ border-bottom: 2px solid rgb(var(--pale-accent)); text-align: center; color: rgb(var(--pale-accent)); } #side-bar div.menu-item { border-color: rgb(var(--bright-accent)); } #side-bar .side-block div a img { filter: grayscale(100%); } #footer{ color: rgb(var(--black-monochrome)); } .scp-image-block { border: none; } .scp-image-block .scp-image-caption { color: rgb(var(--white-monochrome)); background-color: rgb(var(--dark-gray-monochrome)); border: none; margin-top: 0.3rem; border-left: 0.2rem solid rgba(var(--pale-accent)); border-right: 0.2rem solid rgba(var(--pale-accent)); } .page-rate-widget-box { background: none; border: none; background-color: rgb(var(--dark-gray-monochrome)); border-left: 0.2rem solid rgba(var(--pale-accent)); } /*hexagon header gradient*/ #skrollr-body { background: repeating-linear-gradient(-45deg, #360509, #360509 4px, #ff1428 5px, #ff1428 5px); height: 11rem; } /*blend gradient*/ #container { background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgb(var(--medium-accent)) 93%); background-size: 37rem 11rem; background-attachment: scroll; background-repeat: repeat-x; } /*misc 2*/ div#page-options-bottom-2 > a, div#page-options-bottom > a { border-radius: 0em; -moz-border-radius: 0em; border: none; } div#page-options-bottom-2 > a:active, div#page-options-bottom-2 > a:hover, div#page-options-bottom > a:active, div#page-options-bottom > a:hover { border: none; } /*header stuff*/ #header, #top-bar { background-attachment: scroll; } #header { background-image: none; overflow-x: clip; } #header::before { content: ""; position: absolute; height: 100%; width: 100%; left: 0; top: -0.3rem; background-image: var(--logo-image); background-size: auto 10rem; background-position: left; background-repeat: no-repeat; opacity: 1; } #header h1, #header h1 a { position: absolute; left: 4.8rem; top: 0.8rem; margin: 0; width: 100%; display: flex; justify-content: left; z-index: 0; } #header h2, #header h2 span, #header h2 span::before { position: absolute; left: 3.3rem; top: 1.8rem; margin: 0; width: 100%; display: flex; justify-content: left; } #header h1 a::before, #header h2 span::before { text-shadow: .063rem 0.1rem 0.1rem #0c0c0c; letter-spacing: 0.1rem; } #header h1 a::before{ letter-spacing: 1rem; } /*links*/ a.newpage { background: transparent; text-decoration: none } a.newpage { color: rgb(var(--newpage-color)) } /*line + block*/ hr { background-color: #000000; border-top: solid 2px rgb(var(--pale-accent)); } blockquote, div.blockquote { box-shadow: 0.05rem 0.1rem 0.3rem rgba(0,0,0,.25); background-color: rgb(var(--dark-gray-monochrome)); border: none; border-left: solid 2px rgb(var(--pale-accent)); } /*search*/ /*#search-top-box { left: 3%; top: 0.5rem; } #search-top-box-form > #search-top-box-input { width: 7rem; }*/ /* TABVIEW - Abandon All Hope Ye Who Enter Here */ /*content bg*/ .yui-navset .yui-content { background-color: rgba(var(--pale-accent), 0.25); border-color: rgb(var(--pale-accent)); } /*unselected tab color*/ .yui-navset .yui-nav a, .yui-navset .yui-navset-top .yui-nav a { background-color: rgb(var(--dark-gray-monochrome)); color:rgb(var(--white-monochrome)); } /*hover tab bg*/ .yui-navset .yui-nav a:hover, .yui-navset .yui-nav a:focus { background-color: rgba(var(--pale-accent), .25); } /*backer background*/ .yui-navset .yui-nav li, .yui-navset .yui-navset-top .yui-nav li { background: rgb(var(--dark-gray-monochrome)); } /*selected tab bg*/ .yui-navset .yui-nav .selected, .yui-navset .yui-navset-top .yui-nav .selected { background-color: rgb(var(--pale-accent)); } .yui-navset .yui-nav .selected a:focus, .yui-navset .yui-nav .selected a:active { background-color: rgb(var(--pale-accent)); } @media only screen and (max-width: 768px) { :root{ --swatch-menubg-color: var(--medium-accent); } #header::before { background-image: none; } #header { height: var(--header-height-on-mobile); background-image: url("https://nu-scptheme.github.io/Black-Highlighter/images/logo.svg"); background-image: var(--logo-image); --size: calc(var(--final-header-height-on-mobile) + 1rem); --y-offset: 1.5rem; background-position: calc((var(--header-height-on-mobile) - 0.75rem) - var(--size)) calc(((var(--size) * -1) + var(--header-height-on-mobile) + var(--y-offset)) / 2); background-size: var(--size), 100% var(--header-height-on-mobile); background-repeat: no-repeat, repeat; width: 100vw; margin: 0; position: sticky; top: calc(var(--header-height-on-mobile) * -1); } #header h1, #header h1 a { left: 1rem; top: 0.8rem; } #header h2, #header h2 span, #header h2 span::before { left: 0.8rem; top: 1.8rem; } #search-top-box form[id="search-top-box-form"]:not(:focus-within) input[type="text"]:hover { background: rgb(0, 0, 0); border-color: rgb(var(--pale-accent)); } #search-top-box form[id="search-top-box-form"]:not(:focus-within) input[type="text"]{ background: rgb(0, 0, 0); border-color: rgb(var(--pale-accent)); } } .styled-quote { background-color:rgb(var(--dark-gray-monochrome)); border-left: 0.5rem solid rgba(var(--pale-accent)); padding: 0.1rem 1rem; margin: 0.5rem 0 0.5rem 0rem; box-shadow: 0.05rem 0.1rem 0.3rem rgba(0,0,0,.25); } .dark-styled-quote { background-color:rgb(var(--black-monochrome)); border-left: 0.5rem solid rgba(var(--pale-accent)); color:rgb(var(--white-monochrome)); padding: 0.1rem 1rem; margin: 0.5rem 0 0.5rem 0rem; box-shadow: 0.05rem 0.1rem 0.3rem rgba(0,0,0,.25); } .dark-styled-quote a{ color: rgb(var(--swatch-menubg-medium-color)); } .lightblock { background-color:rgb(var(--dark-gray-monochrome)); padding: 0.01rem 1rem; margin: 0.5rem 0 0.5rem 0rem; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); } .darkblock { background-color:rgb(var(--black-monochrome)); color:rgb(var(--white-monochrome)); padding: 0.01rem 1rem; margin: 0.5rem 0 0.5rem 0rem; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); } .darkblock a { color: rgb(var(--swatch-menubg-medium-color)); } .titleblock { background-color: rgb(var(--dark-gray-monochrome)); padding: 0.5rem 1rem 0.10rem; margin: 1.5rem 0rem 0.5rem 0rem; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); border: solid rgb(var(--pale-accent)) 2px; } .titlebox{ position: relative; top: -1.6rem; background-color: rgb(var(--pale-accent)); color: rgb(var(--white-monochrome)); padding: 0.25rem 1rem; line-height: 0.1rem; } .stripeblock{ background: repeating-linear-gradient(-45deg, #360509, #360509 4px, #ff1428 5px, #ff1428 5px); padding: 0.01rem 1rem; margin: 0.5rem 0 0.5rem 0rem; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); border-left: 0.5rem solid rgba(var(--dark-gray-monochrome)); border-right: 0.5rem solid rgba(var(--dark-gray-monochrome)); }
警告
你正在访问「无羁图书馆」的绝密文件,请确认你的管理凭证,任何未经允许的访问都将被视为对联盟权威的挑战,我们的战士会让每个胆敢如此的人付出惨重代价。

圣彧之手
物品编号:C-261
描述
Object C-261是U.E.C.最新研发的一种大范围杀伤性武器,由巫神研究院的████主导研发。
圣彧之旨外形为一个白色的电子喇叭,侧面印有U.E.C.标志,尾部链接到一台经过特殊改装的布瑞恩单元1,布瑞恩单元上方有一定时器及USB 3.0接口,由于不可披露的原因,该种武器的制造方式必须全面保密,当其正式投入使用时,会由巫神研究院直接向各行动小组配发武器成品。
该装置通过其发声系统所发出的音频对敌人造成严重伤害,故其启动时使用者必须迅速撤离当前区域,该武器所发出的音频被称为“谬界传音”,一旦完整地被收听并且被理解,收听者的身体结构就会迅速向音频中描述的物体转变,转变完成后的个体可被视为彻底死亡。
对该装置产生音频的二次录音不具有任何杀伤效果
使用
在行动前把装置链接到电脑上进行预设编辑,输入合适的录音以让敌人转变过程趋于稳定并保持统一,以下是三种预设录音。
录音I:[数据删除]
录音II:的关怀都就·谁都喜欢穷哦睡觉睡觉去三角警示牌手机壳手机APP急急急哦哦就是嫉妒丢件我去的尽快我觉得几万的叫我的卡片机脾气亟待解决·叫我去,点击我的就觉得叫我平均到七点就我觉得姐我觉得今晚的教教我请假,哦哦对全都,金街店机器教的就请假哦
录音III:“你是安静的,安静指不会说话,你不会移动,移动指位置发生变化,你的四肢等长,你的表皮可被轻易剥落,你的质量约为4kg,你没有感官,没有感官指你看不到,闻不到,听不到,尝不到,感不到。所以,你是一张常见的白色漆面的木质座椅。”
把装置放置到任务预定位置,保证装置发出的音频可以使所有目标清晰听到,设定计时器时间后迅速撤离当前区域。特殊任务可以使用遥控装置远程启动,如果在未能安全撤离的情况下强行启动装置,所有行动人员应当立刻刺破耳膜并服用1L以上的杏仁水以阻止转化进程,特殊极端情况下可以吸入艾柯吕斯之泪,通过进入悲尸循环来强行阻断该武器的转化进程。谨记,即使是死亡也远远好过被该装置转化为物品。
按动该种武器隐藏在U.E.C.标志暗格内的按钮,“圣彧之旨”将会进入掩藏的运作模式II,在该模式下,喇叭不会发声,而“布瑞恩单元”会链接到300m内的所有赫尔墨斯装置II型,如果其正被佩戴,佩戴者脑内会自动播放录音内容并以更快的效率将其转化,转化途中佩戴者将会不受控制地说出录音内容并令周围的所有人同样进入转化进程,我们可以凭借这点迅速清理密闭空间内驻守的所有敌人。
████
00:00 办公室内,一位M.E.G.特工躺在地上呻吟,扭动挣扎,其身上有多处枪伤,鲜血遍地。办公桌上有一台亮屏的笔记本电脑。
00:02 一个清冷的女声出现,语速快,话语内容为录音III
00:04 M.E.G.特工停止呻吟。
00:06 M.E.G.特工停止挣扎,一动不动,仅能观测到其胸口起伏。
00:09 M.E.G.特工身体绷直忽然坐起,上半身与地面保持垂直。手臂紧贴躯干两侧并开始变长。
00:11 M.E.G.特工以一个诡异的姿势起身,呈扎马步姿态站立,手臂继续伸长直到触碰到地面。
00:20 M.E.G.特工低头把头埋进胸口,可清晰听到骨裂声,头部直接没入胸口,特工全身皮肤开始变白,体型逐渐变小。
00:40 M.E.G.特工完全转化为一张白色木椅。
00;50 录像结束
00:00 场景同“已剪辑实验录像I”的办公室,地上的血迹和M.E.G.特工转化为的白色木椅可被辨认,一位穿着U.E.C.军装的红发少女走进画面,她带着一个黑色的头戴式耳机状物品,神色有些紧张,把手中的PPK手枪放在办公桌上。
00:09 一位穿着白大褂,胸口佩戴巫神研究院标识的金发少女走进画面,手中提着电子秤,圣彧之旨以及一台赫尔墨斯装置,开口说话:我的天,莱娜,这么多东西你就让我一个人提着吗?
00:20 莱娜:别废话了,米娅,参与这个实验就消除我的处分记录,到底是不是真的?
00:35 米娅:当然,而且你还能连升三级,没准直接进“刃岭游击队”了呢。
00:50 莱娜:我该做什么?
01:00 米娅:站在那里不要动,听一听████的天籁之音,变成一张刷白漆的小桌子,然后我们会把你重新变成一个漂漂亮亮的大姑娘,明白了吗?
01:55 莱娜:我准备好了,开始吧。
02:00 米娅启动圣彧之旨的运作模式II,录音播放调整为录音I。
02:10 莱娜出现浑身抽搐的情况。
02:14 莱娜摔倒在地上,身体僵硬,以一种平板支撑的姿势趴在地上。
02:15 莱娜:啊啊卧槽!他妈的怎么回事!你……你是不会移动的……
02:20 莱娜的小腿向后折叠,关节断裂,小腿逐渐和大腿黏连,关节撕裂的声音清晰可见,脚部退化,触地部位变为手掌和膝盖。同时嘴中开始吟诵录音I的内容,伴随着强烈的呻吟和抽泣声。
02:30 莱娜手部开始退化,头部向前折叠,观测到异常的前倾角度和脊柱折断迹象,头部没入胸口,其背后衣服撕裂,可以看到其五官移位到背后,嘴中仍在吟诵着录音I。
02:35 米娅发生抽搐的情况。
02:45 米娅:莱娜!停下!停下……别再说了!
03:00 米娅身上出现了与莱娜相同的异变,途中出现呻吟,脱发,失禁等情况,米娅尝试呼叫支援但未果。
04:00 两人基本转变为“木桌”,桌面能观察到两人辨识不清的五官和微弱的呼吸起伏。
06:00 确认两人已经无生命迹象,“圣彧之旨”停止运作。
14:00 ‘劳民公仆’部队携赫尔墨斯装置赶到,开始清理现场。
15:00 录像结束
通告
我们怀着悲痛的心情,不得不向大家宣布:一切还原被圣彧之旨转化的人类的尝试都失败了,我们勇敢而可爱的战士莱娜,以及奋斗在研究一线的米娅博士永远地离开了我们。编号为BE2D0C的实验事故已被巫神研究院永久归档,我们,无羁探险者联盟将会永久铭记每一个人的付出。
家土防卫队列兵莱娜已被追授刃岭游击队荣誉徽章,向英雄致敬

圣彧之手
-
- _
???:该死的,████,你快来看看这个!
████:怎么回事?这三个样本居然在散发微弱的脑电波?
???:████,我有一个不太妙的猜想,万一……万一,莱娜和米娅她们没死……根本没死……
████:只是什么也感不到,做不到了,对吗?
???:我们必须确认这点,调用澎湖湾计划的档案,我们需要解读脑电波代码的方法。
U.E.C.System:5级权限确认,正在为您调用中。
████:我把东西带来了,接上吧……
(音响里传来杂讯和低语声)
████:你去凑近听听。
???:你的权限比我高,还是你去吧。
████:磨磨唧唧的。
(拉扯衣服的声音)
████:一起听。
莱娜(?):杀了我杀了我杀了我……不管是谁都好,求求你们了,杀掉我吧……
???:*你妈的见了鬼了!
(工具箱打开的声音)
████:住手。
???:**,████,你还是人吗?她叫我们杀了她!现在你连解脱的权利也要从她身上剥夺!听不到看不到闻不到尝不到感不到!你知道这有多痛苦吗!
████:破坏珍贵样本是死罪,别做傻事……
???:我*你*了*!
(一记响亮的耳光声)
████:莱娜是你的朋友,也是我的朋友,抱歉,我无能为力,这是陈博士的命令……如果你真的一斧头劈了这些桌椅板凳,陈博士,他会把你做成下一个……
(呜呜的抽泣声,和拍背安慰的声音)
???:我……我不想再在这里待下去了……死都死不痛快……
████:我们知道的太多了,博士……不可能让我们竖着走出U.E.C.的大门,就像Diana Stewards一样,求你了,别走……你要是走了,我就再也没有能信任的人了……
作者:Coralie6626
皇帝的新图
« Object C-260 | Object C-261 | Object C-262 »
