: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('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@300&display=swap'); @import url('https://fontlibrary.org/face/fantasque-sans-mono'); @font-face { font-family: 'TsangerYuMo-W02-FullWidthSpaceFix'; src: url('https://cdn.jsdelivr.net/gh/LupusCaeruleus/Fonts@main/TsangerYuMo-W02-FullWidthSpaceFix.woff') format('woff'); font-weight: normal; font-style: normal; font-display: swap; } /* Myrand */ @media screen and (prefers-reduced-motion: no-preference) { #page-title, #breadcrumbs, #page-content > * { animation-name: fadeIn; animation-duration: 1s; animation-iteration-count: 1; animation-timing-function: ease-out; animation-fill-mode: backwards; } } #page-title { animation-delay: 0s; } @keyframes fadeIn { from { opacity: 0; transform: translate(0,30px); } to { opacity: 1; transform: translate(0,0); } } /* 调整 */ body{ letter-spacing: 1px; } :root { --fade-in-delay: 0,1s; --theme-base: "black-highlighter"; --theme-id: "danger-zone"; --theme-name: "Danger Zone"; --logo-image: url("https://backrooms-wiki.wikidot.com/local--files/component:theme/logo.svg"); --header-subtitle: "前 方 是 一 条 其 他 人 类 未 曾 发 现 过 的 道 路"; --body-font: 'Chakra Petch', 'TsangerYuMo-W02-FullWidthSpaceFix', 'Noto Sans SC', sans-serif; --header-font: 'Chakra Petch', 'TsangerYuMo-W02-FullWidthSpaceFix', 'Noto Sans SC', sans-serif; --title-font: 'Chakra Petch', 'TsangerYuMo-W02-FullWidthSpaceFix', 'Noto Sans SC', sans-serif; --mono-font: 'Chakra Petch', 'TsangerYuMo-W02-FullWidthSpaceFix', 'Noto Sans SC', sans-serif; --white-monochrome: 255, 255, 255; --pale-gray-monochrome: 190, 190, 190; --light-gray-monochrome: 160, 160, 160; --gray-monochrome: 72, 69, 60; --black-monochrome: 20, 20, 20; --bright-accent: 235, 170, 10; --medium-accent: 235, 170, 10; --custom-text: 255, 255, 255; --dark-accent: 140, 136, 126; --pale-accent: 140, 136, 126; /* Primary Theme Colors */ --swatch-background: var(--black-monochrome); --swatch-primary: var(--bright-accent); --swatch-primary-darker: var(--medium-accent); --swatch-primary-darkest: var(--black-monochrome); /* Primary Text Colors */ --swatch-text-dark: var(--custom-text); --swatch-text-light: var(--bright-accent); --swatch-important-text: var(--bright-accent); --barColour: var(--very-light-gray-monochrome); --linkColour: var(--pale-accent); /* Primary Menu Colors */ --swatch-menubg-color: var(--black-monochrome); --swatch-menubg-light-color: var(--dark-gray-monochrome); --swatch-menubg-medium-color: var(--medium-accent); --swatch-menubg-medium-dark-color: var(--gray-monochrome); --swatch-menubg-dark-color: var(--dark-gray-monochrome); --swatch-menubg-black-color: var(--black-monochrome); --swatch-menubg-hover-color: var(--black-monochrome); --swatch-menutxt-dark-color: var(--white-monochrome); --swatch-menutxt-light-color: var(--white-monochrome); --swatch-border-color: var(--bright-accent); /* Primary Header Colors */ --swatch-headerh1-color: var(--white-monochrome); --swatch-headerh2-color: var(--white-monochrome); --swatch-topmenu-border-color: var(--bright-accent); --swatch-topmenu-bg-color: var(--black-monochrome); /* Link Colors */ --link-color: var(--bright-accent); --visited-link-color: var(--medium-accent); --hover-link-color: var(--bright-accent); --sidebar-links-text: var(--swatch-menutxt-dark-color); --link-color-bright: var(--medium-accent); /* Rating Module Colors */ --rating-module-button-color: var(--bright-accent); --rating-module-text-color: var(--white-monochrome); --rating-module-text-hover-color: var(--swatch-menutxt-light-color); /* Header Gradients */ --gradient-header: none; --diagonal-stripes: none; } #extrac-div-1 { position: fixed; width: 100vw; height: 100vh; pointer-events: none; background: repeating-linear-gradient(180deg,rgba(0,0,0,0),rgba(0,0,0,.15) 50%,rgba(0,0,0,0)); background-size: auto 8px; opacity: 0.7; } #extrac-div-2 { position: fixed; width: 100vw; height : 1rem; top: 0; pointer-events: none; background: linear-gradient(to bottom, rgb(255,190,0) 0%,rgb(255,190,0) 50%,rgb(255,190,0) 51%,rgb(255,190,0) 100%); opacity : .1; animation: scanm 6s linear infinite; } @keyframes scanm { 0% { top: -1rem; opacity : .05;} 25% { top: 50%; opacity: .03;} 37.5% { top: 75%; opacity: 0.06;} 50% { top: 100%; opacity: .03;} 100% { top: 100%;} } #page-content > :nth-child(1) { animation-delay: calc(1 * var(--fade-in-delay)); } #page-content > :nth-child(2) { animation-delay: calc(2 * var(--fade-in-delay)); } #page-content > :nth-child(3) { animation-delay: calc(3 * var(--fade-in-delay)); } #page-content > :nth-child(4) { animation-delay: calc(4 * var(--fade-in-delay)); } #page-content > :nth-child(5) { animation-delay: calc(5 * var(--fade-in-delay)); } #page-content > :nth-child(6) { animation-delay: calc(6 * var(--fade-in-delay)); } #page-content > :nth-child(7) { animation-delay: calc(7 * var(--fade-in-delay)); } #page-content > :nth-child(8) { animation-delay: calc(8 * var(--fade-in-delay)); } #page-content > :nth-child(9) { animation-delay: calc(9 * var(--fade-in-delay)); } #page-content > :nth-child(10) { animation-delay: calc(10 * var(--fade-in-delay)); } #page-content > :nth-child(11) { animation-delay: calc(11 * var(--fade-in-delay)); } #page-content > :nth-child(12) { animation-delay: calc(12 * var(--fade-in-delay)); } #page-content > :nth-child(13) { animation-delay: calc(13 * var(--fade-in-delay)); } #page-content > :nth-child(14) { animation-delay: calc(14 * var(--fade-in-delay)); } #page-content > :nth-child(15) { animation-delay: calc(15 * var(--fade-in-delay)); } #page-content > :nth-child(n+15) { animation-delay: calc(16 * var(--fade-in-delay)); } #skrollr-body { background-image:none } #container { background-image: none } 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, #top-bar { background-attachment: scroll; } #header { background-image: none; overflow-x: clip; } #header::before { content: ""; position: absolute; height: 100%; width: 100%; left: -2rem; 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; } a:hover, a.newpage:hover, a:visited:hover, #side-bar a:visited:hover { text-decoration: none; color: #000000; background-color: #FFAA0A; } #login-status ul a:hover { text-decoration: none; color: #000000; background-color: #FFAA0A; } #login-status a:hover { text-decoration: none; color: #000000; background-color: #FFAA0A; } #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; } a.newpage { color: rgb(var(--newpage-color)) } blockquote { box-shadow: 0.05rem 0.1rem 0.3rem rgba(0,0,0,.25); } /*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)); } } .lightstyled-quote { background-color:rgb(var(--bright-accent)); color:rgb(0, 0, 0); border-left: 0.5rem solid rgba(var(--dark-gray-monochrome)); padding: 0.1rem 1rem; margin: 0.5rem 0 0.5rem 0.25rem; box-shadow: 0.05rem 0.1rem 0.3rem rgba(0,0,0,.25); } .darkstyled-quote { background-color:rgb(var(--dark-gray-monochrome)); border-left: 0.5rem solid rgba(var(--bright-accent)); color:rgb(var(--white-monochrome)); padding: 0.1rem 1rem; margin: 0.5rem 0 0.5rem 0.25rem; box-shadow: 0.05rem 0.1rem 0.3rem rgba(0,0,0,.25); } .darkstyled-quote a{ color: rgb(var(--swatch-menubg-medium-color)); } .lightblock { background-color:rgb(var(--bright-accent)); color:rgb(0, 0, 0); padding: 0.01rem 1rem; margin: 0.5rem 0 0.5rem 0.25rem; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); } .darkblock { background-color:rgb(var(--dark-gray-monochrome)); color:rgb(var(--white-monochrome)); padding: 0.01rem 1rem; margin: 0.5rem 0 0.5rem 0.25rem; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); } .dark-borderblock { background-color:rgb(var(--dark-gray-monochrome)); color:rgb(255, 255, 255); padding: 0.01rem 1rem; margin: 0.5rem 0 0.5rem 0.25rem; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); border: solid 0.3rem rgb(var(--bright-accent)); } .light-borderblock { background-color:rgb(var(--bright-accent)); color:rgb(0, 0, 0); padding: 0.01rem 1rem; margin: 0.5rem 0 0.5rem 0.25rem; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); border: solid 0.3rem rgb(var(--dark-gray-monochrome)); } .border-logoblock{ padding: 0.01rem 1rem; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); color:rgb(255, 255, 255); margin: 0.5rem 0 0.5rem 0.25rem; display: block; position: relative; background-color: rgb(var(--dark-gray-monochrome)); border: solid 0.3rem rgb(var(--bright-accent)); } .border-logoblock::after{ content: ""; float: center; border: solid 2px #0000; background: url(http://backrooms-wiki.wikidot.com/local--files/component:theme/logo.svg) center/25% no-repeat; opacity: 0.25; top: 0; left: 0; bottom: 0; right: 0; position: absolute; z-index: 1; } .logoblock{ padding: 0.01rem 1rem; color:rgb(255, 255, 255); box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); margin: 0.5rem 0 0.5rem 0.25rem; display: block; position: relative; background-color: rgb(var(--dark-gray-monochrome)); } .logoblock::after{ content: ""; float: center; border: solid 2px #0000; background: url(http://backrooms-wiki.wikidot.com/local--files/component:theme/logo.svg) center/25% no-repeat; opacity: 0.25; top: 0; left: 0; bottom: 0; right: 0; position: absolute; z-index: 1; } .titleblock { background-color: rgb(var(--dark-gray-monochrome)); color:rgb(var(--white-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,.5); border: solid rgb(var(--bright-accent)) 2px; } .titlebox{ color: rgb(var(--dark-gray-monochrome)); position: relative; top: -1.6rem; background-color: rgb(var(--bright-accent)); padding: 0.25rem 1rem; line-height: 0.1rem; } .borderblock { background-color:rgb(var(--dark-gray-monochrome)); color:rgb(255, 255, 255); padding: 0.01rem 1rem; margin: 0.5rem 0 0.5rem 0.25rem; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); border: solid 0.3rem rgb(var(--bright-accent)); } .darkblock a { color: rgb(var(--swatch-menubg-medium-color)); }
原名为狂化病,现更名为德尔塔氏症,又名德尔塔综合症。
目前确证病例:24人
死亡病例:10人
病因:
因为德尔塔体内的隐性基因失效带来的基因类疾病,第一例病例为德尔塔。
一般的德尔塔氏症病因为——长期接触高能级佤夕幂能物质,亦或被佤夕幂能造影攻击时,没有及时处理伤口导致的发炎;但是接触病死者尸体,甚至食用病死者尸体引发德尔塔氏症也是有可能的。急性德尔塔氏症有可能是更为严重的佤夕幂能侵蚀造成的,或者是在超高能级区域呼吸时晶体进入体内,但这只会出现于特拉弗斯陨坑附近才会发生,但发病概率极高。
慢性德尔塔氏症一般出现于高风险人群,例如老人,小孩,妊娠期内的妇女等,且具有传染性,并且无法被免疫系统得知,病因一般为——不穿防护服的情况下长期在Level R-999的地表上行动,但一般不会在慢性德尔塔氏症病发时死亡,而是死于辐射病。
在第一位因慢性德尔塔氏症病发而死之前,世界上所有人都不知道该病症会导致患者死亡。
隐性德尔塔氏症不会出现任何症状,病因未知,目前停留在猜测阶段,W.K.往空群体认为,该病症的病因是隐性基因的失效或者是基因突变,让身体能够对高能级区域迅速适应,目前唯一一位隐性德尔塔氏症为德尔塔目前尚未有隐性德尔塔氏症患者,但疑似为隐性德尔塔氏症患者为德尔塔。
症状:
德尔塔氏症(除急性德尔塔氏症外)的潜伏期约为30天,一部分在高能级佤夕幂能区域长期活动者,潜伏期会缩短至14天左右。
德尔塔氏症的症状如下:
一般德尔塔氏症早期症状表现为轻微咳嗽,亦或腹部尤其为小腹区域经过触碰会产生痛觉,体温会上升0.6至0.7摄氏度,眼睛有时会看见一些无法看见的事物,并持续一分钟或两分钟,发病频率大概为七天一次,也有部分个例为五天一次。
但早期的一般德尔塔氏症可以通过饮用杏仁水的方式缓解,但也仅仅是缓解罢了,并不能够令德尔塔氏症痊愈——也就是治标不治本。
中期的德尔塔氏症会表现于以下症状
- 幻听,听到他人的声音,且声音中通常伴随着心理暗示,严重者还会看到模糊的黑影在眼前晃动。
- 患者的行为会充满攻击性,手臂上会看到更多的血管,严重者手臂上会看到黑色血管,这代表着其手臂血管已经被佤夕幂能晶体堵塞,在3至7周内手臂会因输血不足而坏死。
- 呼吸困难,头晕,总感到内心不舒服,对事物伴有攻击性,严重者会因为佤夕幂能晶体堵塞尿道无法排精排尿,而女性感染者则会使得月经异常,引发子宫癌。
- 腹泻,呕吐时会夹杂血液,严重者还会咳出黑色晶体,芒刺等不明物体。
- 皮肤出现变色,严重者甚至会脱皮,牙齿掉落,病变区域会出现黑色固体或流出黑色脓液,有可能在这一阶段转变为急性德尔塔氏症。
若为慢性德尔塔氏症,早期症状为食欲不振,头晕,每隔两个星期或十天会腹泻一次。
急性德尔塔氏症会在14小时或23小时内发狂,思维紊乱,手脚抽搐,在2小时内,身体内部会出现剧烈反应,耳边会出现幻听,且听到的为自己的声音,声音会引导感染者对他人发动攻击,患者体内的佤夕幂能能级会逐渐升高到临界点。
在2小时后,患者的体表会出现佤夕幂能鳞片,在一些部位的皮肤会溃烂,并从中产生新的肢体,在这个过程之中,患者会极度地痛苦,并丧失理智。
在5小时后,患者的四周会出现由佤夕幂能凝聚而成的物质,高能级的佤夕幂能会扰乱四周的时空,患者的力量会再一次攀升,又达到另一个临界点。
……
传播途径:
长期生活于高能级佤夕幂能环境中有极高概率患得德尔塔氏症,常患一般德尔塔氏症或急性德尔塔氏症,极少数为慢性德尔塔氏症。
若于患德尔塔氏症患者长期接触容易引起感染,但潜伏期内能够被杀死。
德尔塔氏症的相关信息:
对于德尔塔氏症的相关研究报告#1
研究报告人员:[已编辑]
记录时间:[数据缺失]
记录开始
德尔塔氏症(又名德尔塔综合症),第一位患者是德尔塔,根据德尔塔的口述,与我们对其他病例的调查研究,我们总结了德尔塔氏症的几大特征:
- 德尔塔氏症会在身体的各个组织内部产生不明晶体,且会侵蚀身体组织,但在早期并不会进攻大脑,而是侧重于破坏消化系统。
- 在中期则是会侵蚀身体的其他系统,就例如神经系统——德尔塔氏症会让患者出现幻听症状,并且不能够通过饮用杏仁水的方式缓解该症状。
- 被侵蚀的身体部位无法通过正常手段修复,想要缓解中晚期的德尔塔氏症只能够利用超自然现象,而在死亡后,德尔塔氏症也会继续侵蚀身体,最后会成为一种特殊的佤夕幂能造影——也有可能会成为一摊含有高能级佤夕幂能的液体。
.报告结束.
德尔塔失控事件
在圣所事件结束后,W.K.往空群体前往Level R-999开始建立新的基地,而在一次高难度的任务中,德尔塔遭遇了一次意料之外的事情。
……
“这里是德尔塔,我正在最大的一个陨石坑附近,在勘测地形的途中,我与小队成员发现了一些呈现黑色且表面光滑的晶体,我的直觉感觉到它不简单,而且这附近有一些半透明的实体。”
“我在使用地质锤敲击该晶体的时候,发现该晶体异常坚硬,并且该物体附近的能量能级比其它区域的能级要高上不少。”
“德尔塔请求一部分地表行动小队来到陨坑附近,坐标125x,67y。”
“收到,空降小队预计空降时间需1小时20分钟,地表行动小队正在维修月球车,预计需要2小时30分钟到达,请德尔塔继续勘察地形。”
“好的,我将向核心区域行进。”
……
在进入到一定区域后,通讯信号突然中断,德尔塔从工具箱中拿出了维修工具,打算将通讯器重新修好,但却没有任何效果。
“真倒霉。”
……“算了,还是等什么时候通讯器自己修好了吧,还是探测地形更加重要,对了……那白茫茫的一片是什么,应该是液态水……?不对,在零下19摄氏度,怎么可能还会出现液态水……”
“我总觉得有些奇怪,但这里毕竟是后室,什么奇奇怪怪的东西都能给蹦出来,零下19摄氏度还存在液态水也没什么值得奇怪的。”
“……但这附近却没有什么实体,就连刚刚看到的那些佤夕幂能造影也不见了,而且……我好热……”
高温让德尔塔不自觉的看了一眼参数,但温度那一栏上标着的却是零下19摄氏度,“……奇怪……服装也出了问题吗……”
……“…………”从通讯器中传来了混杂的声音,声音中并没有听到人声,就像是电视无信号时发出的噪声,德尔塔继续在陨石坑中前行,“……”
……“……”通讯器中的声音逐渐清晰,但却不是人类的任何语言,德尔塔的眼睛突然像是被什么蒙住了一样,无法看清身前的事物。
突然,脚下一空……“……”大脑中一片空白。
……
“……这里是,这里是哪里?”
“……嗯?”
……
在空降部队正式来到陨坑附近时,看到了德尔塔的身影,她站立在环形山上,身上散发着高能级的佤夕幂能,这让队长感到不对劲,德尔塔的状态似乎有些问题,并且……
他看到……德尔塔在逐渐的悬浮,身旁还有着数十个黑色的立方体……“发生了什么?”
佤夕幂能的能级在逐渐升高,甚至吸引了大量的佤夕幂能造影,这让地面上的空降部队感到了深深的不对劲。
……
德尔塔再度回到了那个在记忆深处的家园,从每一棵青草到每一处河流,都与记忆中的映像完全重合,她的心中充满了回到家园的兴喜,她走在这一片熟悉的道路上,面前是清澈见底,宛转逶迤的河流。
熟悉的触感再度由手心传来,蹁跹的脚步跨过溪水,树林中撒下零碎的阳光,溪底的鹅卵石缝隙之间还能看到水草在摆动着……
她走向山脉的崖峰,聆听来自西风的呼唤,眺望山崖下无垠的原野,西风吹起银白的发丝,山谷中奔腾出浩荡流水,她听到吟游诗人的吟唱,远方的平原上风车微微转动,她感动地留下泪水,蹁跹的脚步再次驻足此地。
天空中的一角逐渐变得黑暗,又从这一角逐步角部辐射到整个天空,世界缓慢地沉寂下来,德尔塔感到了不对劲,她逐渐开始耳鸣,手中长出了黑色的晶体,黑暗缓慢的将她吞噬。
在黑暗中,他看到青年在逐步离她远去,在那一步一步之间,隔着一个前厅后室的距离。
“……”黑暗诱惑着她,告诉她,用她最期望的,最想要的去刺激她,暗示着她……“只要你成为我们的一员,我们可以让你去到前厅。”
“加入我们。”
她并不相信,但直到那无垠的黑暗中投来了前厅那熟悉的光亮,她听到了大海的声音,细腻的海风从她的耳边挂过,人们在海滩上悠然散步……
“你想看到他,对吗?”
她听得十分清楚,这是她自己的声音,她自己的声音在空旷的,黑暗的空间里产生回声,仿佛有什么东西淹没了她,沉重的岁月从越来越远,越来越微弱的那道光下来,进入视网膜之中,她流下泪水。
光中有青年的身影,他在前厅中幸福地活着,在都市中寻找着自己的路途,德尔塔眼中的光芒黯淡了。
她看到面前的光逐渐消失殆尽,仿佛有什么东西碎裂来来,笼罩着她的心灵,感染程度在那一刻伴随着压迫已久的情绪爆发了,从身体的各个结晶处喷发出能量,晶体颗粒围绕着德尔塔在旋转着……
从那一刻开始,最初的那个被唤作小空的人,已经正式消失在了这个世界上,现在这具躯体的灵魂,变成了一个名为德尔塔的……
感染者
人们对于德尔塔失控事件的看法
Lnsetir:
德尔塔是叛徒!
AESXIA:
德尔塔背叛了我们!
Online:
把她放逐出去!她是怪物!她在拉斯斐尔提的时候就是一个彻头彻尾的怪物!她会害了我们!
Delta:
……
行为准则:
应当:
若感染德尔塔氏症,尽量地不要前往人员较多的地方,也不要因此而惊慌失措,而是配合医护人员治疗。
不应:
不应相信偏方或幻听的声音。
« Phenomenon R-11 | Phenomenon R-12 | Phenomenon R-13 »
能毁灭掉一个人的事物,它在那个人的生命中有多大的重量,已经不言而喻。
能够让一个人彻底崩塌的,除了绝对的绝望,便是再度破灭的希望,她为其付出了自己的半生,但却遭到了质疑与唾弃。
她为此伤感,她为此迷惘。
她明明还有着那么大好的年华,但为什么要为其而一遍又一遍的去送死,甚至只是一个简单的骗局,就让她的心里如此的绝望,如此的悲痛?
“……我明明只是想要……想要一个机会,想要一个平凡到只要活下去的机会,我只是希望能够在远方的前厅,与他相伴,白头偕老……”
信念最开始破碎的原因,是因为那隔着的是一个不可逾越的距离。
飞鸟的自由之翼让她向往那大千世界,但蹁跹的脚步却被脚下的荆棘缭绕……
……我不管,我不管那些什么的前厅后室,明明我想要的生活只是那么简单,为什么连那么简单的要求都做不到……
……只是为了这样的安稳生活,为什么让我拿起刀,去谈论所谓的生存之道?
……只是这样简单的要求……而已啊……
…………
