: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=Gemunu+Libre:wght@800&display=swap'); @import url("http://vivarium.wdfiles.com/local--files/backrooms%3Avivtheme/stylesheet.css"); @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); } } :root { --theme-base: "black-highlighter"; --theme-id: "advanced-splinter"; --theme-name: "Advanced Splinter Theme"; --logo-image: url("http://backrooms-wiki-cn.wikidot.com/local--files/theme:b-f-p-f-database/bfpf-data.png"); --header-title: "B.F.P.F.数据库"; --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: 69, 226, 50; --secondAccent: 69, 226, 50; --white-monochrome: 237, 233, 223; --pale-gray-monochrome: var(--dark-gray-monochrome); --very-light-gray-monochrome: 69, 226, 50; --light-gray-monochrome: 69, 226, 50; --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); --link-color: 69, 226, 50; --hover-link-color: 20, 230, 0; --visited-link-color: 69, 226, 50; --background-gradient-distance: 0rem; --gradient-topmenu: none; --diagonal-stripes: linear-gradient(transparent 0); --gradient-header: none; --header-height-on-desktop: 9rem; } #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, rgba(69, 226, 50) 0%,rgba(69, 226, 50,1) 50%,rgba(69, 226, 50,0.98) 51%,rgba(69, 226, 50) 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%;} } #extrac-div-3 { position: fixed; width: 100vw; height: 100vh; pointer-events: none; background-image: radial-gradient(circle, rgb(0,0,0) 0%, rgb(69, 226, 50) 60%, rgb(69, 226, 50) 100%); opacity: 0.25; mix-blend-mode: color-dodge; background-repeat: no-repeat; background-size: cover; z-index: 30; } #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)); } /*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{ 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)); } .footnotes-footer{ background-color: rgb(var(--dark-gray-monochrome)); } .footnotes-footer .footnote-footer a{ background-color: rgb(var(--dark-gray-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: none; 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; } #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: center; 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 { 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: center; 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; } .styled-quote-d{ 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); border-left: 0.5rem solid rgba(var(--mainAccent)); border-right: 0.5rem solid rgba(var(--secondAccent)); } .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(--mainAccent)); } .logoblock::after{ content: ""; float: center; border: solid 2px #0000; background: url(http://backrooms-wiki-cn.wikidot.com/local--files/theme:b-f-p-f-database/bfpf-data.png) center/25% no-repeat; opacity: 0.25; top: 0; left: 0; bottom: 0; right: 0; position: absolute; z-index: 1; } .top-box { border-color: rgb(var(--mainAccent)) !important; } .bottom-box ul li { color: rgb(var(--mainAccent)) !important; } .bottom-box ul li:before { background: rgb(var(--mainAccent)) !important; } .top-box .gradient-box { background: linear-gradient(90deg, rgba(var(--mainAccent),1) 0%, rgba(var(--mainAccent),0) 36%) !important; } .top-box:before { background: url("") !important; } .header-diamond .diamond-pattern { background: url("") !important; } .header-diamond { background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 300.9 284.5' style='enable-background:new 0 0 300.9 284.5;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%2345E232;%7D .st1%7Bfill:%2345E232;%7D%0A%3C/style%3E%3Cg%3E%3Cpolygon class='st1' points='73.4,32.6 0,105.4 13.6,105.4 86.4,32.6 '/%3E%3Cpolygon class='st1' points='26.5,105.4 40.1,105.4 112.9,32.6 99.3,32.6 '/%3E%3C/g%3E%3Cpolyline class='st1' points='287.3,105.4 214.5,32.6 227.5,32.6 287.3,91.9 '/%3E%3Cpolygon class='st1' points='274.4,105.4 260.8,105.4 188,32.6 201.6,32.6 '/%3E%3C/svg%3E") !important; } .top-box.class-unknown .header-diamond { filter: none !important; } .top-box.class-unknown:before, .top-box.class-unknown .header-diamond .diamond-pattern{ opacity: 0.15 !important; } .top-box .header-diamond .diamond-image { filter: brightness(0%) invert(100%); } .top-box.class-0 { background: rgb(var(--dark-gray-monochrome)) !important; } .top-box.class-0 .header-diamond .diamond-image { background: url("http://backroomssandboxcn.wikidot.com/local--files/tar-sd/0.png") center/78% no-repeat !important; } .header-diamond .diamond-color.class-0 { background: rgb(var(--dark-gray-monochrome)) !important; } .top-box.class-1, .top-box.class-2 { background: rgb(var(--dark-gray-monochrome)) !important; } .top-box.class-1 .header-diamond .diamond-image { background: url("http://backroomssandboxcn.wikidot.com/local--files/tar-sd/1.png") center/78% no-repeat !important; } .top-box.class-2 .header-diamond .diamond-image { background: url("http://backroomssandboxcn.wikidot.com/local--files/tar-sd/2.png") center/78% no-repeat !important; } .header-diamond .diamond-color.class-1, .header-diamond .diamond-color.class-2 { background: rgb(var(--dark-gray-monochrome)) !important; } .top-box.class-3, .top-box.class-4 { background: rgb(var(--dark-gray-monochrome)) !important; } .top-box.class-3 .header-diamond .diamond-image { background: url("http://backroomssandboxcn.wikidot.com/local--files/tar-sd/3.png") center/78% no-repeat !important; } .top-box.class-4 .header-diamond .diamond-image { background: url("http://backroomssandboxcn.wikidot.com/local--files/tar-sd/4.png") center/78% no-repeat !important; } .header-diamond .diamond-color.class-3, .header-diamond .diamond-color.class-4 { background: rgb(var(--dark-gray-monochrome)) !important; } .top-box.class-5, .top-box.class-unknown, .top-box.class-未知, .top-box.class-habitable, .top-box.class-宜居{ background: rgb(var(--dark-gray-monochrome)) !important; } .top-box.class-5 .header-diamond .diamond-image { background: url("http://backroomssandboxcn.wikidot.com/local--files/tar-sd/5.png") center/78% no-repeat !important; } .top-box.class-unknown .header-diamond .diamond-image, .top-box.class-未知 .header-diamond .diamond-image { background: url("http://backroomssandboxcn.wikidot.com/local--files/tar-sd/five.png") center/78% no-repeat !important; } .top-box.class-habitable .header-diamond .diamond-image, .top-box.class-宜居 .header-diamond .diamond-image { background: url("http://backroomssandboxcn.wikidot.com/local--files/ttt/habitable") center/78% no-repeat !important; } .header-diamond .diamond-color.class-5, .header-diamond .diamond-color.class-unknown, .header-diamond .diamond-color.class-未知 { background: rgb(var(--dark-gray-monochrome)) !important; } .header-diamond .diamond-color.class-habitable, .header-diamond .diamond-color.class-宜居 { background: rgb(var(--dark-gray-monochrome)) !important; } .lang-cn .bottom-box.class-0 ul li:nth-child(1)>.default:after { content: "环境适宜" !important; } .lang-tr .bottom-box.class-0 ul li:nth-child(1)>.default:after { content: "環境適宜" !important; } .lang-cn .bottom-box.class-0 ul li:nth-child(2)>.default:after { content: "适合居住" !important; } .lang-tr .bottom-box.class-0 ul li:nth-child(2)>.default:after { content: "適合居住" !important; } .lang-cn .bottom-box.class-0 ul li:nth-child(3)>.default:after { content: "无实体" !important; } .lang-tr .bottom-box.class-0 ul li:nth-child(3)>.default:after { content: "無實體" !important; } .lang-cn .bottom-box.class-1 ul li:nth-child(1)>.default:after { content: "环境适宜" !important; } .lang-tr .bottom-box.class-1 ul li:nth-child(1)>.default:after { content: "環境適宜" !important; } .lang-cn .bottom-box.class-1 ul li:nth-child(2)>.default:after { content: "可居住" !important; } .lang-tr .bottom-box.class-1 ul li:nth-child(2)>.default:after { content: "可居住" !important; } .lang-cn .bottom-box.class-1 ul li:nth-child(3)>.default:after { content: "实体可驱逐" !important; } .lang-tr .bottom-box.class-1 ul li:nth-child(3)>.default:after { content: "實體可驅逐" !important; } .lang-cn .bottom-box.class-2 ul li:nth-child(1)>.default:after { content: "环境不适宜" !important; } .lang-tr .bottom-box.class-2 ul li:nth-child(1)>.default:after { content: "環境不適宜" !important; } .lang-cn .bottom-box.class-2 ul li:nth-child(2)>.default:after { content: "可居住" !important; } .lang-tr .bottom-box.class-2 ul li:nth-child(2)>.default:after { content: "可居住" !important; } .lang-cn .bottom-box.class-2 ul li:nth-child(3)>.default:after { content: "实体稀疏" !important; } .lang-tr .bottom-box.class-2 ul li:nth-child(3)>.default:after { content: "實體稀疏" !important; } .lang-cn .bottom-box.class-3 ul li:nth-child(1)>.default:after { content: "环境不适宜" !important; } .lang-tr .bottom-box.class-3 ul li:nth-child(1)>.default:after { content: "環境不適宜" !important; } .lang-cn .bottom-box.class-3 ul li:nth-child(2)>.default:after { content: "较难居住" !important; } .lang-tr .bottom-box.class-3 ul li:nth-child(2)>.default:after { content: "較難居住" !important; } .lang-cn .bottom-box.class-3 ul li:nth-child(3)>.default:after { content: "实体较少" !important; } .lang-tr .bottom-box.class-3 ul li:nth-child(3)>.default:after { content: "實體較少" !important; } .lang-cn .bottom-box.class-4 ul li:nth-child(1)>.default:after { content: "环境不适宜" !important; } .lang-tr .bottom-box.class-4 ul li:nth-child(1)>.default:after { content: "環境不適宜" !important; } .lang-cn .bottom-box.class-4 ul li:nth-child(2)>.default:after { content: "较难居住" !important; } .lang-tr .bottom-box.class-4 ul li:nth-child(2)>.default:after { content: "較難居住" !important; } .lang-cn .bottom-box.class-4 ul li:nth-child(3)>.default:after { content: "实体较多" !important; } .lang-tr .bottom-box.class-4 ul li:nth-child(3)>.default:after { content: "實體較多" !important; } .lang-cn .bottom-box.class-5 ul li:nth-child(1)>.default:after { content: "环境不适宜" !important; } .lang-tr .bottom-box.class-5 ul li:nth-child(1)>.default:after { content: "環境不適宜" !important; } .lang-cn .bottom-box.class-5 ul li:nth-child(2)>.default:after { content: "难以居住" !important; } .lang-tr .bottom-box.class-5 ul li:nth-child(2)>.default:after { content: "難以居住" !important; } .lang-cn .bottom-box.class-5 ul li:nth-child(3)>.default:after { content: "实体密集" !important; } .lang-tr .bottom-box.class-5 ul li:nth-child(3)>.default:after { content: "實體密集" !important; } .lang-cn .bottom-box.class-unknown ul li:nth-child(1)>.default:after, .lang-cn .bottom-box.class-未知 ul li:nth-child(1)>.default:after { content: "属性未知" !important; } .lang-tr .bottom-box.class-unknown ul li:nth-child(1)>.default:after, .lang-tr .bottom-box.class-未知 ul li:nth-child(1)>.default:after { content: "屬性未知" !important; } .lang-cn .bottom-box.class-unknown ul li:nth-child(2)>.default:after, .lang-cn .bottom-box.class-未知 ul li:nth-child(2)>.default:after { content: "缺少数据" !important; } .lang-tr .bottom-box.class-unknown ul li:nth-child(2)>.default:after, .lang-tr .bottom-box.class-未知 ul li:nth-child(2)>.default:after { content: "缺少數據" !important; } .lang-cn .bottom-box.class-unknown ul li:nth-child(3)>.default:after, .lang-cn .bottom-box.class-未知 ul li:nth-child(3)>.default:after { content: "实体未知" !important; } .lang-tr .bottom-box.class-unknown ul li:nth-child(3)>.default:after, .lang-tr .bottom-box.class-未知 ul li:nth-child(3)>.default:after { content: "實體未知" !important; } .lang-cn .bottom-box.class-habitable ul li:nth-child(1)>.default:after, .lang-cn .bottom-box.class-宜居 ul li:nth-child(1)>.default:after { content: "安全可保障" !important; } .lang-tr .bottom-box.class-habitable ul li:nth-child(1)>.default:after, .lang-tr .bottom-box.class-宜居 ul li:nth-child(1)>.default:after { content: "安全可保障" !important; } .lang-cn .bottom-box.class-habitable ul li:nth-child(2)>.default:after, .lang-cn .bottom-box.class-宜居 ul li:nth-child(2)>.default:after { content: "环境可改造" !important; } .lang-tr .bottom-box.class-habitable ul li:nth-child(2)>.default:after, .lang-tr .bottom-box.class-宜居 ul li:nth-child(2)>.default:after { content: "環境可改造" !important; } .lang-cn .bottom-box.class-habitable ul li:nth-child(3)>.default:after, .lang-cn .bottom-box.class-宜居 ul li:nth-child(3)>.default:after { content: "实体可驱逐" !important; } .lang-tr .bottom-box.class-habitable ul li:nth-child(3)>.default:after, .lang-tr .bottom-box.class-宜居 ul li:nth-child(3)>.default:after { content: "實體可驅逐" !important; }
关于“红液”对于植物生长的作用
研究团队:████.team
报告时间:2017.2.3
我们将150株植物分为3类不同组别,对其每天浇灌不同量的“红液”以检测植物的生长状况。每组分别浇灌0ml,20ml,40ml的“红液”。
在10天后,浇灌0ml“红液”的植株平均生长了3.6cm,而浇灌20ml和40ml的植物分别平均生长了5.9cm和9.2cm。并且,根据其他研究指出”红液“即使浇灌过多时也很难使植物烧根。
将10天后的土壤中的营养成分进行检测,发现其中出现了大量从未发现的化学物质,我们认为化学物质是Level bz-7中树木比正常环境更加茂盛翠绿的原因。
总结:“红液”对于植物的生长有极大的作用。
->
通告
经“守护者”与市民团队的共同商议,B.N.T.G将雇佣人员开展对于Level bz-7的矿物开采与树木砍伐活动,此活动将遵循当地组织的规定并给予当地组织资金。
——B.N.T.G.守护者
->
警告
Level bz-7东侧发生了火灾,请位于所有于Level bz-7成员尽快切出层级(包括“生机”基地的成员),M.E.G与B.N.T.G已经派出消防人员前往层级。
M.E.G. - 监督者
点此进入最新文档
我们真的能做到如此的相信他们吗…
不知道…上面说财务紧张,M.E.G那边发下来的经费越来越寒酸了。
原本大家靠爱好的维护这里,成了职业之后反而会因为钱不够而担心了。
再高尚的理想都离不了钱,只能自己想办法筹钱,相信M.E.G会支持我们的理想了。
也确实只能这样了。
Level bz-7 “生机盎然”
生存难度:生存難度:
等级等級 宜居
- 安全
- 稳定
- 充斥生机
描述
Level bz-7的雨林,由M.E.G.用户SpokeIsHere拍摄。
Level bz-7是一片被认为面积9000km2的雨林1,与前厅中的热带雨林类似。层级中有着大量的河流与生长着各类水果的植物,不同的是,河流中流淌的是大量的杏仁水,层级中的植物也比正常环境下生长出的植物更加高大茂盛。层级中的树木死亡后,根部与枝叶会极快速的枯萎并快速渗出红色粘稠液体,尚不清楚其的作用。
除此之外,层级的地底有相当丰富的矿类资源,如铁,煤,金以及各类稀有金属。
由于层级内的生态环境美好,吸引了许多流浪者在此居住,自发的维护层级治安与环境,后有组织的形成了社区。在此之后,M.E.G与该社区进行协商,该社区转入了M.E.G名下,M.E.G对其保证会有限制的开采树木,防止乱砍滥伐的现象出现。
实体:
该层级没有任何实体。
基地,前哨与社区:
M.E.G“生机”基地
- 有500多名成员在此工作并建设层级
- 帮助有需要的流浪者
- 我们的格言是:争守其美
- 开放贸易,不过只需要种植树木便可以换取物品
入口:
- 切入Level bz-1的草地可以直接来到“生机”基地的门口。
- 想象前厅中雨林的样子,有一定概率来到本层级。
- 在Level bz-11中触摸一幅关于森林公园的海报会来到该层级.
出口:
- 找到一个山洞,进入它会来到Level bz-8
« Level bz-6 | Level bz-7 | Level bz-8 »


