Level Wall-5
: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=Michroma&family=Radio+Canada&display=swap&family=Space+Grotesk&display=swap&family=Fira+Code&display=swap');
@font-face {
    font-family: 'GlowSansSC-Wide';
    src: url('https://cdn.jsdelivr.net/gh/LupusCaeruleus/Fonts@main/GlowSansSC-Wide-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
 
@font-face {
    font-family: 'GlowSansSC-Wide';
    src: url('https://cdn.jsdelivr.net/gh/LupusCaeruleus/Fonts@main/GlowSansSC-Wide-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
 
:root {
    --theme-base: "black-highlighter";
    --theme-id: "starscape";
    --theme-name: "Starscape Theme";
 
   --body-font: 'Space Grotesk', 'Noto Sans SC', sans-serif;
   --header-font: 'Michroma', 'GlowSansSC-Wide', cursive;
   --title-font: 'Michroma', 'GlowSansSC-Wide', cursive;
   --mono-font: 'Recursive', 'Noto Serif SC', monospace;
 
    /* Header */
    --logo-image: url("http://backrooms-wiki.wikidot.com/local--files/component:theme/logo.svg");
    --header-title: "The Backrooms";
    --header-subtitle: "愿群星指引着你。";
 
    /* Standard Colors */
    --pale-gray-monochrome: 250, 250, 250;
    /* white */
    --black-monochrome: 5, 12, 29;
    --dark-gray-monochrome: 5, 12, 29;
    /* navy blue for bg */
    --bright-accent: 208, 174, 126;
    /* orange */
    --medium-accent: 26, 65, 128;
    --dark-accent: 26, 65, 128;
    /* light blue */
 
    /* Primary Theme Colors */
    --swatch-background: var(--black-monochrome);
    --swatch-primary: var(--bright-accent);
    --swatch-secondary-color: var(--black-monochrome);
 
    /* Primary Text Colors */
    --swatch-text-general: var(--swatch-text-light);
    --swatch-important-text: var(--bright-accent);
 
    /* Primary Menu Colors */
    --swatch-menubg-color: var(--black-monochrome);
    --swatch-menutxt-dark-color: var(--white-monochrome);
    --swatch-menutxt-general-color: var(--swatch-menutxt-light-color);
    --swatch-border-color: var(--bright-accent);
    --footnotes-footer-bg-color: var(--medium-accent), .25;
 
    /* 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(--bright-accent);
    --hover-link-color: var(--bright-accent);
    --sidebar-links-text: var(--swatch-menutxt-dark-color);
    --link-color-bright: var(--medium-accent);
 
/* Header Gradients */
--gradient-header: none;
--diagonal-stripes: none;
 
}
 
#main-content {
    --tabs-selected-bg: var(--medium-accent);
    --tabs-selected-outline: var(--medium-accent);
}
 
.sd-container {
   --sd-border:var(--medium-accent);
   --sd-bullets:var(--sd-border);
   --sd-symbol:255,255,255;
}
 
/*weird stuff*/
 
 #page-title::after,
 .meta-title::after,
 #page-title::before,
 .meta-title::before {
        background: rgb(var(--swatch-primary));
}
 
#top-bar {
    --dropdown-border-color: var(--bright-accent);
}
 
hr {
  background-color: rgb(var(--bright-accent));
  border-color: rgb(var(--bright-accent));
}
 
#page-title {
    border-color: rgb(var(--bright-accent));
    color: rgb(var(--bright-accent))!important;
 
}
 
#skrollr-body, #header {
   background-image: none;
}
 
div#container-wrap{
    background: url(http://backrooms-sandbox-2.wdfiles.com/local--files/drbobtail/nebulaheader1.png) top center repeat-x;
    background-size: 100%;
}
 
#container {
   background-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(5, 12, 29,1) 37%);
   background-size: 37rem 37rem;
   background-attachment: scroll;
}
 
/* Header Colours */
h1, h2, h3, h4, h5, h6 {
    color: rgb(var(--bright-accent));
}
 
/*image block*/
#page-content .scp-image-block .scp-image-caption {
    color: rgb(var(--bright-accent));
    background-color: rgba(var(--bright-accent), .25);
    border-color: rgba(var(--bright-accent));
}
 
#page-content .image-block,
#page-content  .scp-image-block {
    border: none;
    box-shadow: 0.05rem 0.1rem 0.3rem rgba(var(--bright-accent), .45) outset;
}
 
/*rate module*/
#content-wrap #page-content .page-rate-widget-box {
    background: none;
    border: 3px hidden;
    background-color: rgba(var(--bright-accent), .25);
    border-radius: 4px;
}
 
/*table*/
#page-content table.wiki-content-table th {
border: 1px solid rgb(var(--medium-accent)), !important;
border-radius: 3px;
background-color: rgba(var(--medium-accent), .25);
color: rgb(var(--medium-accent));
}
 
#page-content table.wiki-content-table td {
border: 1px solid rgb(var(--medium-accent)) !important;
}
 
/*top bar*/
#top-bar div.top-bar > ul > li > ul,
#top-bar div.mobile-top-bar > ul > li > ul {
    background-color: rgba(var(--bright-accent), 0.5);
}
 
#top-bar div.top-bar > ul > li > a:hover,
#top-bar div.mobile-top-bar > ul > li > a:hover {
    background-color: rgba(var(--bright-accent), 0.5);
}
 
#top-bar div.top-bar > ul > li:hover > a,
#top-bar div.mobile-top-bar > ul > li:hover > a {
    background-color: rgba(var(--bright-accent), 0.5);
}
 
/* tabs! */
 
/*unselected tab color*/
.yui-navset .yui-nav a,
.yui-navset .yui-navset-top .yui-nav a {
     background-color: rgba(var(--medium-accent), .25);
     color:rgb(var(--white-monochrome));
    border-radius: 6px 6px 0px 0px;
}
 
/*hover tab bg*/
.yui-navset .yui-nav a:hover,
.yui-navset .yui-nav a:focus {
     background-color: rgba(var(--medium-accent), .25);
    border-radius: 6px 6px 0px 0px;
}
 
/*selected tab bg*/
.yui-navset .yui-nav .selected,
.yui-navset .yui-navset-top .yui-nav .selected {
     background-color: rgba(var(--medium-accent), 1);
    border-radius: 6px 6px 0px 0px;
}
 
.yui-navset .yui-nav .selected a:focus,
.yui-navset .yui-nav .selected a:active {
     background-color: rgba(var(--medium-accent), 1);
    border-radius: 6px 6px 0px 0px;
}
 
/*backer background*/
.yui-navset .yui-nav li,
.yui-navset .yui-navset-top .yui-nav li {
    background: rgb(var(--black-monochrome));
    border-radius: 6px 6px 0px 0px;
}
 
/* content background color */
#content-wrap #page-content .yui-navset .yui-content {
    background-color: rgba(var(--medium-accent), 0.25);
}
 
/* content border */
#content-wrap #page-content .yui-navset .yui-content,
#content-wrap #page-content .yui-navset .yui-navset-top .yui-content {
    border: 1px hidden rgb(var(--medium-accent));
    box-shadow: 0.05rem 0.1rem 0.3rem rgba(0,0,0,.45) inset;
    border-radius: 0px 0px 6px 6px;
}
 
/* edit menu */
 
form#edit-page-form:not(.data-form) {
    background-color: rgba(var(--bright-accent), 0.25);
}
 
/*mobile stuff*/
@media only screen and (max-width:768px){
 
:root{
   --header-height-on-mobile: 7.5rem;
}
 
#main-content {
max-width: 90vw;
padding: 0;
margin: 9.2em auto 0;
}
 
#header {
position: absolute;    
top: 0.5rem;
height: var(--header-height-on-mobile);
}
 
#page-title {
position: center;
padding-top: 3.5rem;
}
 
div#container-wrap{
    background: url(http://backrooms-sandbox-2.wdfiles.com/local--files/drbobtail/nebulaheader1.png) top center repeat-x;
    background-size: 220%;
}
 
#container {
   background-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(5, 12, 29,1) 37%);
   background-size: 20rem 20rem;
   background-attachment: scroll;
}
}
 
@media only screen and (max-width:1366px){
#container {
   background-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(5, 12, 29,1) 37%);
   background-size: 25rem 25rem;
   background-attachment: scroll;
}
div#container-wrap{
    background: url(http://backrooms-sandbox-2.wdfiles.com/local--files/drbobtail/nebulaheader1.png) top center repeat-x;
    background-size: 160%;
}
}
 
/*funny blocks*/
#page-content blockquote {
   box-shadow: 0.05rem 0.1rem 0.3rem rgba(0,0,0,.45) inset;
   background-color:rgba(var(--bright-accent), .25);
   border-color: rgb(var(--bright-accent));
   border-radius: 6px;
}
 
.styled-quote {
   background-color:rgba(var(--bright-accent), .25);
   border-radius: 6px;
   border-left: 0.5rem solid rgb(var(--bright-accent));
   padding: 0.1rem 1rem;
   margin: 0.5rem 0 0.5rem 0.25rem;
   box-shadow: 0.05rem 0.1rem 0.3rem rgba(0,0,0,.45) inset;
   color: rgb(var(--white-monochrome));
}
 
.dark-styled-quote {
   background-color:rgba(var(--medium-accent), .25);
   border-radius: 6px;
   border-left: 0.5rem solid rgb(var(--medium-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,.45) inset;
}
 
.dark-styled-quote a{
color: rgb(var(--swatch-menubg-medium-color));
}
 
.lightblock {
   background-color:rgba(var(--bright-accent), .25);
   border-radius: 6px;
   padding: 0.01rem 1rem;
   margin: 0.5rem 0 0.5rem 0.25rem;
   color: rgb(var(--white-monochrome));
   box-shadow: 0.05rem 0.1rem 0.3rem rgba(0,0,0,.45) inset;
}
 
.darkblock {
   background-color:rgba(var(--medium-accent), .25);
   color:rgb(var(--white-monochrome));
   border-radius: 6px;
   padding: 0.01rem 1rem;
   margin: 0.5rem 0 0.5rem 0.25rem;
   box-shadow: 0.05rem 0.1rem 0.3rem rgba(0,0,0,.45) inset;
}
 
.stripeblock {
    background: repeating-linear-gradient(45deg, rgb(var(--black-monochrome)), rgb(var(--medium-accent)) 15%);
    background-color:rgb(var(--bright-accent));
    color:rgb(var(--swatch-text-general));
    padding: 0.01rem 1rem;
    margin: 0.5rem 0 0.5rem 0.25rem;
    border: none;
    border-radius: 6px;
    box-shadow: 0.05rem 0.1rem 0.3rem rgba(0,0,0,.45) inset;
 }
 
.starblock {
  border: 20px solid transparent;
  padding: 0.01rem 1rem;
  border-image: url(http://backrooms-sandbox-2.wdfiles.com/local--files/drbobtail/border.png) 152;
}
 
.borderblock {
   background-color:rgb(var(--medium-accent), .25);
   color:rgb(var(--pale-grey-monochrome));
   padding: 0.01rem 1rem;
   margin: 0.5rem 0 0.5rem 0.25rem;
   border: solid 0.3rem rgb(var(--bright-accent));
   letter-spacing: 0px;
   border-radius: 6px;
   box-shadow: 0.05rem 0.1rem 0.3rem rgba(0,0,0,.45) inset;
}
 
.nebulablock{
  width: auto;
  padding: 0.01rem 1rem;
  margin: 0.5rem 0 0.5rem 0.25rem;
  background: rgba(255, 255, 255, 0.25) url(http://backrooms-sandbox-2.wdfiles.com/local--files/drbobtail/nebulaheader1.png) repeat center;
  box-shadow: 0.05rem 0.1rem 0.3rem rgba(0,0,0,.45) inset;
  border-radius: 6px;
  border: none;
}
 
.code {
    border: 3px hidden rgb(5, 12, 29));
    background-color:rgba(var(--medium-accent), .25);
    border-radius: 6px;
    box-shadow: 0.05rem 0.1rem 0.3rem rgba(0,0,0,.45) inset;
}
 
.footnotes-footer {
    border-radius: 6px;
    box-shadow: 0.05rem 0.1rem 0.3rem rgba(0,0,0,.45) inset;
    border-left: 0.75rem solid rgb(var(--medium-accent));
    border-top: 0.75rem solid rgb(var(--medium-accent));
}
 
#header h1 a:hover:before {
     text-shadow: var(--header-text-shadow);
}
评分: +6+x

我真的迷失在这里了,就在这一个,看不到尽头,到处乌漆嘛黑的路上。

我不知道在这里被困了几天了,身上的物资什么的都用光了,可还是一无所获。我觉得我到现在还能活着,还能在这里把自己的所见记录下来,是一个奇迹。

我多久没有跟外界联系过了?刚刚进来那会儿,我还天真地认为自己走上几遭,简单记录一下就能找到出口。结果,走了不知多久,周围的环境还是那样:混凝土材质的单调的灰色地面,到处都是破败,腐烂的液体,当然,我还没有到了去喝它们的地步,不过应该也快了。周围依旧是那么漆黑,寒冷。我也庆幸,庆幸自己带了一个夜视仪。


SAVE_20250705_163829.jpg

……

这件事挺怪诞的,我在Level 8中打着探照灯前行,我知道,那片洞穴脆弱至极,我也把自己的步态放到最缓,但还是失败了,我落到了一个洞里,重重地摔在了地上。我懊恼地抬起头,可我看到的并不是那片熟悉的郊区,而是那混凝土材质的地面,沉闷的雾气,漆黑而寒冷的环境。从四面八方传来了风的声音。而现在,我没有任何办法。

我一如既往的走着,看着这一切。干渴,饥饿如同魔鬼纠缠着我。

“等等,那是?”

我看见一个人躺在道路上,浑身散发着腐臭味,看来已经死了好一段时间了。

“呃,你好?……呵,我明明知道她不会回应我的。我得去看看”

我走了过去,那具尸体的手里抓着一个破损的平板电脑,不可思议,它竟然还能开机。我继续在她身上翻找,接着发现了一个笔记本。封面的署名上写着:安培1。我刚刚翻开它,一个纸条掉了出来

后来的流浪者,你好。如你所见,你正处于这片奇异的地方。我也明白,我的体能已经不支持我离开了。但在此之前,我对这个层级进行了深入的研究,并把资料都存放在了那个平板电脑里,我希望他能帮到你,我也希望你能把它公之于众。

“看起来我并不是第一个发现这里的人。”

“她说资料在电脑上…哦…有个文件”

文件正在下载……

下载成功,开启中……

生存难度:生存難度:

等级等級 未知

  • {$one}
  • {$two}
  • {$three}

如何使用:

[[include component:level-class
|class=等级
]]


class 处的可用参数包括以下内容,支持简繁体及英文输入。
English 简体中文 繁體中文
0 1 2 3 4 5 0 1 2 3 4 5 0 1 2 3 4 5
unknown 未知 未知
habitable 宜居 宜居
deadzone 死区 死區
pending 等待分级 等待分級
n/a 不适用 不適用
amended 修正 修正
omega 终结 終結

该组件支持简繁切换,如下方代码所示:

[[include component:level-class
|lang=cn/tr
|class=等级
]]


lang 处选择语言,cn 表示简体中文,tr 表示繁体中文,不填默认选择简体中文。

自定义等级

[[include component:level-class
|lang=cn/tr
|class=等级名字
|color=#000000(带有井号的十六进制色号代码。)
|image=链接(至图片的链接。)
|one=在这
|two=随便
|three=放文字
]]

使用 CSS 进行自定义:

你可以使用 CSS 进行额外的自定义,将代码放入到 [[module css]] 中或者是放入到页面的版式内都可以。在这一组件中,不要把 [[module css]] 放在 [[include]] 里面,把它放在那个的下面或者是页面的顶部或底部。
将这些代码放入到你的页面/版式中以编辑所有的颜色,因为组件的 |color= 部分仅能控制背景:

[[module css]]
.sd-container {
    /* 字体 */
    --sd-font: Poppins, Noto Sans SC, Noto Serif SC;

    /* 边框 */
    --sd-border: var(--gray-monochrome); /* 大多数等级 */
    --sd-border-secondary: 0, 0, 0; /* 不适用 */
    --sd-border-deadzone: 20, 0, 0; /* 死区 */

    /* 标志 */
    --sd-symbol: var(--sd-border) !important; /* 大多数标志 */

    /* 文本 */
    --sd-bullets: var(--sd-border) !important; /* 点句符文本颜色 */
    --sd-text: var(--swatch-text-secondary-color); /* 顶部框文本颜色 */

    /* 等级颜色 */
    --class-0: 247, 227, 117;
    --class-1: 247, 227, 117;
    --class-1: 255, 201, 14;
    --class-2: 245, 156, 0;
    --class-3: 249, 90, 0;
    --class-4: 254, 23, 1;
    --class-5: 175, 6, 6;
    --class-unknown: 38, 38, 38;
    --class-habitable: 26, 128, 111;
    --class-deadzone: 44, 13, 12;
    --class-pending: 182, 182, 182;
    --class-n-a: 38, 38, 38;
    --class-amended: 185, 135, 212;
    --class-omega: 25, 46, 255;
}
[[/module]]

旧版颜色:

如果你不喜欢新版的样式,想要用回旧版的红色边框色,只需要在你的页面中与组件一同引入下方的代码:

[[module css]]
.sd-container {
   --sd-border: 90, 29, 27;
   --sd-image: 90, 29, 27;
   --sd-symbol: 90, 29, 27;
}
[[/module]]

Level Wall-5是墙室的第6层。

环境与基础性质



Level Wall-5表现为一条由混凝土构成的道路,表面附有一层氧化的喷漆。道路宽度保持在2~5.5米,长度未知。道路上有时会出现一摊质地粘稠,腐臭的液体2,在流浪者踏上后会发出类似于粘液撕裂的声音。层级内部的时间稳定在凌晨一点3,环境温度保持在14℃。而奇怪的是,本层级存在来源未知的不稳定的Wi-Fi供应。

Level Wall-5的道路本身应是向两边无限延长,但在流浪者进入后。背对流浪者的道路将凭空的出现一堵墙,其与道路同宽,长度,厚度未知。墙的材质异常坚硬与光滑。无法用任何手段攀登。这使得流浪者只能被迫向一个方向前进

Level Wall-5的天空表示为一成不变的黑色,并且具有强烈的吸光性质,这导致层级内部无任何可见光照,且任何人造光源均无用处。不过值得一提的是,在天空的尽头存在着一个反光区,会发出白色光,在夜视仪效果下更为明显。但由于其位置偏远,光亮较微弱,无法为探索带来照明。在长时间注视天空后,流浪者的感官会出现许多异常,具体情况如下
  • 周围的环境开始变暗,夜视仪的作用开始消退。
  • 周围开始出现重影。
  • 物品开始出现褪色,颗粒化。
  • 眼球开始疼痛,充血。

以上情况均会在停止注视天空后消失

Level Wall-5的道路两旁均被浓厚的雾气笼罩,其完全黑暗,且具有与本层级天空相同的吸光性质。并会严重的干扰无线电传入。经化验,雾气的气体组成部分为:氧气(占比19%)、氮气(占比75%)、二氧化碳(占比5%)、其他气体(占比1%)可供生物进行呼吸。因此,推测雾气界限中存在实体

层级区域


IMG_20251004_172649.png

玄关的图片,拍摄于入口处,进行了色散处理

如此:一条无尽的混凝土道路,这是Level Wall-5的第一个区域,以入口4为原点,25km范围内的区域都属于玄关。该区域的道路宽度为4m,有时可达5m,且存在着微弱而稳定的光照,但光照来源未知。同时,这也是Level Wall-5最为稳定,环境影响最小的区段。在此区段,流浪者可以进行准备工作,养精蓄锐,去面对后续可能更为危险的区段。


我看着这些报告,心中踏实了许多。至少我有了生存下去的希望。至此,第一个文件就已经看完了,我需要等它把剩下的文件下载好。

“对了,她的日记”

趁着这个空隙,我把那个日记本拿了出来,翻开了第一页。

时间:2025年10月1日
地点:未知
好吧,我来到了一个奇怪且诡异的地方。一条目测4m宽的小路,周围全都黑压压一片,冷的刺骨。我只能勉强看清道路的情况,那是一条用混凝土造出来的路,表面喷着一层漆。而后面…是一堵墙。看来我只能朝着我面前的方向走了。
我深入这个层级了,周围也越来越冷了。刚进来的那一会儿,道路周围是有一定的光的。而现在,光线基本上已经消失了。就算我开启了手电筒,周围一样黑的可怕。
并且,周围两边一直传出丁零当啷的声音,让我感到很诡异。有时候,不知道是眼睛里进了沙子还是怎样,变的越来越疼了。我现在只能祈祷着,我能走出这个破地方

时间:2025年10月2日
模糊定位:Level Wall-5
第二天了,周围还是这样,我拿着手电筒,照着,走着。突然,旁边那一团雾气之中,有一个黑影缓缓地飘了过来,我飞快的跑了过去。那团黑影离我越来越近,它彻底过来了,就在我前面,我听到了一声闷响,它倒在了路上,我的心又沉了下去。
原来那只是一个水泥块啊…
我绕过那个东西,继续向前。没过多久,又一物品闯进我的视线。是一个由木板构成的板条箱。我如同发现了救命稻草,拆开了板条箱。顿时,一股苦涩的味道打碎了我的幻想。我茫然地与这个淡红色液体大眼瞪小眼。心再度跌入谷底

文件下载完毕,开启中…




特殊物体


墙体


IMG_20251008_113029.png

一块墙体,经过加亮处理

在深入Level Wall-5的主道区域后,流浪者有极小的可能会发现墙体
墙体的外观类似于一个破旧的混凝土块,其形状为严格的正方体,边长在2~3米不等,质量未知,表面温度却异常的稳定在0摄氏度。墙体在雾界之中反复进行着不规律的运动,在某些情况下,它们会与道路主体相撞。甚至倾覆在道路上,为行动造成阻碍。在破坏墙体后,内部会流出具有一定腐蚀性的粘稠液体。不过值得一提的是,此类腐蚀性液体不会对墙体与道路本身产生任何实质性伤害。且墙体破碎后,破坏者一旦失去对其的视觉交流,墙体碎片便会迅速消失。

板条箱


2bb95757513b4cc58ec022c521e4473d.jpg

我就不该开开这玩意儿

Level Wall-5的主道处,流浪者会有极小的概率发现板条箱。其材质类似于Level 1中的板条箱。但表面出现了不同程度的磨损和腐蚀,并且板条箱上的腐蚀物可以污染其他物品5。关于板条箱内部的物体,现在仅仅发现过液态痛苦。所以,不建议在没有防护的情况下开启板条箱。



实体

日期:2025年10月5日
模糊定位:Level Wall-5
果真,我的猜想得到了证实,雾气之中果然有实体。我还是一如既往地在路上走,然后我就听见了一声声类似于汽笛的声音,很小,但很近。我再一次的看向了黑雾里面。隐隐约约的,我看到一个黑影,待它靠近之后,我发现,那好像是…一艘木筏?

日记好像…没有了。

实体文件下载完成,上传中…


在足够深入Level Wall-5后,流浪者有一定的可能会发现星槎

f2f0908fa74249d08e011facedceddf7_edit_1545191707861600.jpg

我甚至连它是不是生物都不知道

星槎的外观类似于一种古老的筏,材质类似于木头,船身长约5米,宽约2米。在该实体靠近时,无线电信号可能被轻微干扰,且能听到微弱的汽笛声。不过令人匪夷所思的是,该实体并不具备发声的器官。

星槎的攻击性未被查明,也不会对外界刺激做出反应。该实体会且仅会在雾界之中漫无目的的穿行。正常状态下也不会停靠在道路主体旁。

星槎表面渗透着黑色的液体,性状与道路主体所出现的液体类似。但由于星槎从未接近过道路主体,无法对其成分进行勘测。

星槎的船身上有时会出现部分物资,目前已知存在着杏仁水,液态痛苦,手电筒。不过不建议登上星槎来获取物资。

除此之外,本层级未发现其它实体。



“没有了?”,在上传第三份文件后,没有再出现新的文档。

“也罢,我想我知道的足够多了。”我重新收拾东西,站起身,继续走去。

……

但愿我能出去吧…

(记录结束)



……



入口与出口

入口

在任意的封闭性层级中跌入一个洞,可能使你来到Level Wall-5

出口

正在探明…







除非特别注明,本页内容采用以下授权方式: Creative Commons Attribution-ShareAlike 3.0 License