: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=ZCOOL+KuaiLe&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC&display=swap'); @import url("https://fonts.googleapis.com/css2?family=Lemon&display=swap"); @import url("https://fonts.googleapis.com/css2?family=Lobster&display=swap"); @import url("https://fonts.googleapis.com/css2?family=Urbanist:wght@600&display=swap"); @import url("https://fonts.googleapis.com/css2?family=Urbanist:wght@800&display=swap"); @import url("https://fonts.googleapis.com/css2?family=Monoton&display=swap"); @import url("https://fonts.googleapis.com/css2?family=Grand+Hotel&display=swap"); @import url("https://fonts.googleapis.com/css2?family=Fugaz+One&display=swap"); @import url("https://fonts.googleapis.com/css2?family=Atomic+Age&display=swap"); @import url("https://fonts.googleapis.com/css2?family=Poiret+One&display=swap"); @import url("https://fonts.googleapis.com/css2?family=Life+Savers&display=swap"); :root { --theme-base: "black-highlighter"; --theme-id: "Retro"; --theme-name: "Retro Theme"; --logo-image: url(""); --header-title: "The Backrooms"; --header-subtitle: "24/7 营业"; --body-font: 'Urbanist', sans-serif; --header-font: 'Lemon', 'ZCOOL KuaiLe'; --title-font: 'Lobster', 'ZCOOL KuaiLe'; --mono-font: 'Life Savers', 'Noto Serif SC'; --top-font: 'Grand Hotel', 'ShouShuti'; --additional-font: 'Monoton', monospace; --diner-font: 'Fugaz One', CKTKingKong; --item-font: 'Atomic Age', 'ZCOOL KuaiLe'; --price-font: 'Poiret One', sans-serif; --food-font: CKTKingKong, sans-serif; --white-monochrome: 230, 189, 171; --text-white-monochrome: 193,121,63; --pale-gray-monochrome: 76, 184, 180; --light-gray-monochrome: 220, 116, 86; --gray-monochrome: 234, 96, 37; --black-monochrome: 158, 81, 37; --bright-accent: 108, 33, 11; --medium-accent: 21, 109, 130; --dark-accent: 232, 131, 87; --pale-accent: 215,160,210; --alt-accent: 235, 129, 69; --vibrant-orange: 237,121,70; --retro-blue: 25,77,114; --muted-yellow: 253,172,59; --muted-orange: 229,120,30; --retro-white: 255,250,245; --swatch-topmenu-border-color: 159, 44, 9; --swatch-headerh1-color: 246, 164, 182; --swatch-headerh2-color: 246, 164, 182; --rating-module-button-plus-color: var(--retro-blue); --rating-module-button-negative-color: var(--retro-blue); --rating-module-text-color: var(--retro-blue); --rating-module-text-hover-color: var(--retro-blue); --link-color: 253, 109, 76; --hover-link-color: 240, 144, 122; --visited-link-color: 213,131,83; --background-gradient-distance: 0rem; --gradient-header: linear-gradient(to top, rgba(var(--medium-accent)) 0%, rgba(var(--medium-accent), 0.90) 0% ); --diagonal-stripes: linear-gradient(transparent 0); } #side-bar .side-block div a img { filter: grayscale(100%); } #skrollr-body { width: 100%; position: absolute; top: 0; left: 0; background-image: url("http://backrooms-wiki.wikidot.com/local--files/theme:retro/header"); background-repeat: repeat-1; background-size: inherit; background-blend-mode: soft-light; background-color: rgba(218, 88, 33, 0.5); } #container { background-image: radial-gradient(circle, rgb(var(--dark-accent), 0.05) 50%, transparent 0); background-size: 0.25em 0.25em; background-repeat: repeat; background-attachment: fixed; } #top-bar div.mobile-top-bar > ul > li > a, #top-bar div.top-bar > ul > li > a, #top-bar div.mobile-top-bar > ul > li > ul > li > a, #top-bar div.top-bar > ul > li > ul > li > a { color: white; } 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; } #header::before { content: ""; position: absolute; height: 100%; width: 100%; left: 0; top: 0; background-size: auto 16rem; background-position: center; background-repeat: no-repeat; opacity: 0.4; } #header h1, #header h1 a { position: absolute; top: 0.19em; margin: 0; width: 100%; display: flex; justify-content: left; z-index: 0; font-size: 2em; } #header h2, #header h2 span, #header h2 span::before { position: absolute; top: 1.65rem; margin: 0; width: 100%; display: flex; justify-content: left; font-size: 1.25em; } .yui-navset .yui-nav a { color: rgb(var(--retro-blue)) !important; } .yui-navset .yui-nav .selected a { color: rgb(var(--retro-white)) !important; } .yui-navset .yui-content { color: rgb(var(--retro-blue)); border-color: rgb(var(--retro-blue)); } table.wiki-content-table th { background-color: rgb(var(--pale-gray-monochrome)); color: rgb(var(--retro-blue)); } #login-status { color: rgb(var(--bright-accent)); } #login-status a { color: rgb(var(--bright-accent)); } #search-top-box input.empty { color: rgb(var(--bright-accent)); } a.newpage { background: transparent; text-decoration: none } a.newpage { color: rgb(var(--alt-accent)) } blockquote { background-color: rgb(var(--muted-yellow)); border: 3px solid rgb(var(--muted-orange)); box-shadow: rgb(var(--muted-orange)) 1px 1px 0px 0px, rgb(var(--muted-orange)) 2px 2px 0px 0px, rgb(var(--muted-orange)) 3px 3px 0px 0px, rgb(var(--muted-orange)) 4px 4px 0px 0px, rgb(var(--muted-orange)) 5px 5px 0px 0px; } .border-block { background-color: rgb(250, 250, 234); color: #e5554c; border: 0.35rem solid #e5554c; border-radius: 10px; padding: 0.01rem 1rem; } code, .code { background-color: rgb(var(--muted-yellow)); } :root{ --base-color: rgb(var(--muted-yellow)); --hover-color: rgb(240,177,87); --click-color: rgb(214,140,38); } #page-content .collapsible-block-folded, #page-content .collapsible-block-unfolded-link { margin-top: 10px; padding-left: 1rem; padding-right: 1rem; border-radius: 15px 15px 0px 0px; border: 2px solid rgb(var(--muted-orange)); box-shadow: rgb(var(--muted-orange)) 0px 0px 3px 0px; transition: background 0.1s linear; background: var(--base-color); width: min-content; white-space: nowrap; overflow: hidden; } #page-content .collapsible-block-link { color: white; font-weight: bold; text-decoration: none; } #page-content .collapsible-block-link:hover { text-decoration: none } #page-content .collapsible-block-content { transition: border-top-color 0.2s linear, border-bottom-color 0.2s linear; border-top: solid rgb(var(--muted-orange)) 5px; border-top-right-radius: 15px; border-bottom: solid rgb(var(--muted-orange)) 3px; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; } #page-content .collapsible-block-folded { max-width: 100%; } #page-content .collapsible-block-unfolded-link{ width: min-content; } #page-content .collapsible-block-folded .collapsible-block-link::before { content: "▷"; border-right: none; padding-right: 0rem; margin-right: 1rem; font-weight: normal; font-family: var(--mono-font); } #page-content .collapsible-block-unfolded .collapsible-block-link::before { content: "▽"; border-right: none; padding-right: 0rem; margin-right: 1rem; font-weight: normal; font-family: var(--mono-font); } #page-content .collapsible-block-folded:hover, #page-content .collapsible-block-unfolded-link:hover { background: var(--hover-color); max-width: 100%; } #page-content .collapsible-block-unfolded-link:hover + .collapsible-block-content{ border-top-color: var(--hover-color); border-bottom-color: var(--hover-color); } #page-content .collapsible-block-unfolded-link:hover + .collapsible-block-content::after { background: var(--hover-color); } #page-content .collapsible-block-folded:active, #page-content .collapsible-block-unfolded-link:active, #page-content .collapsible-block-unfolded-link:active + .collapsible-block-content::after { transition: background 0s, max-width 0s; background: var(--click-color); max-width: 100%; } #page-content .collapsible-block-unfolded-link:active + .collapsible-block-content { transition: border-top-color 0s, border-bottom-color 0s; border-top-color: var(--click-color); border-bottom-color: var(--click-color); } #page-content .unfolded-collapse { margin-top: 10px; padding-left: 1rem; padding-right: 1rem; box-shadow: rgb(128, 128, 128) 0px 0px 3px 0px; background: var(--base-color); color: white; font-weight: bold; width: min-content; white-space: nowrap; overflow: hidden; } #page-content .unfolded-collapse::before { content: "▽"; border-right: none; padding-right: 0rem; margin-right: 1rem; font-weight: normal; font-family: var(--mono-font); } #page-content .unfolded-collapse-border { display: block; width: 700px; border-top: solid var(--base-color) 5px; } #page-content .center-collapse .collapsible-block-folded, #page-content .center-collapse .collapsible-block-unfolded-link, #page-content .center-collapse .unfolded-collapse{ margin:auto; margin-top: 10px; } #page-content .addendumfooter{ display: block; border-bottom: solid 3px var(--base-color); margin: auto; text-align: center; } #page-content .info-container .collapsible-block { counter-increment: none; } #page-title{ font-family: var(--top-font); border-bottom: 2px double rgb(var(--vibrant-orange)); text-align: center; font-size: 45px; text-shadow: .063rem 0.1rem 0.1rem #612f05; color: rgb(var(--vibrant-orange)); } #page-content .info-container .collapsible-block-folded, #page-content .info-container .collapsible-block-unfolded-link { transition: none; width: 100%; max-width: 100%; margin: 0 auto; padding: 0; box-shadow: none; background: var(--barColour); } #page-content .info-container .collapsible-block-folded::before, #page-content .info-container .collapsible-block-unfolded-link::before { content: ""; display: none; } #page-content .info-container .collapsible-block-content { border-bottom: none; transition: none; border-top: none; } #page-content .info-container .collapsible-block-content::after { display: none; } #page-content .collapsible-block-folded, #page-content .collapsible-block-unfolded, #page-content .unfolded-collapse{ line-height: 1.4; } #page-content .collapsible-block-folded .collapsible-block-link::before, #page-content .collapsible-block-unfolded .collapsible-block-link::before, #page-content .unfolded-collapse::before { font-size: 130%; margin-left: -0.4em } .menu-top { font-family: var(--diner-font); text-align: center; font-size: 2.5em; transform:rotate(-5deg); -ms-transform:rotate(-5deg); -webkit-transform:rotate(-5deg); text-shadow: 1px 2px 0px #c62927; } .border-block hr{ border-color: #e5554c; } table.menu td.category { width: 100%; font-family: var(--item-font); font-size: 1.75em; font-weight: bold; padding: 0.3em 1em 0em 1em; border-bottom: 0.25rem solid #e5554c; } table.menu td.food { font-family: var(--food-font); padding: 0.1em 0 0.1em 0.4em; } table.menu td.price { font-family: var(--price-font); font-weight: bold; padding: 0.1em 0 0.1em 0; } h1, h2, h3, h4, h5, h6 { font-family: var(--title-font); color: #f6869e; } h1, #header h1 a::before { text-shadow: -1px 1px #7e0303, 1px -1px #7e0303, -1px -1px #7e0303, 1px 1px #7e0303, 2px 2px #7e0303, 3px 3px #7e0303, 4px 4px #7e0303, 5px 5px #7e0303; } h2, #header h2 span::before { text-shadow: -1px 1px #7e0303, 1px -1px #7e0303, -1px -1px #7e0303, 1px 1px #7e0303, 2px 2px #7e0303, 3px 3px #7e0303, 4px 4px #7e0303; } h3, h4 { text-shadow: -1px 1px #7e0303, 1px -1px #7e0303, -1px -1px #7e0303, 1px 1px #7e0303, 2px 2px #7e0303, 3px 3px #7e0303; } h5, h6 { text-shadow: -1px 1px #7e0303, 1px -1px #7e0303, -1px -1px #7e0303, 1px 1px #7e0303, 2px 2px #7e0303; } hr{ border-top: 4px double rgb(var(--medium-accent)); text-align: center; background-color: rgba(0, 0, 0, 0); } .retro-hr hr:after { font-family: var(--additional-font); content: '—*O*—'; display: inline-block; position: relative; top: -19.5px; padding: 0 10px; font-size: 24px; background: #e6bcaa; color: rgb(var(--medium-accent)); } .scp-image-block.block-right { border: 2px solid #33929b; box-shadow: rgb(var(--medium-accent)) 1px 1px 0px 0px, rgb(var(--medium-accent)) 2px 2px 0px 0px, rgb(var(--medium-accent)) 3px 3px 0px 0px, rgb(var(--medium-accent)) 4px 4px 0px 0px, rgb(var(--medium-accent)) 5px 5px 0px 0px; } .scp-image-caption { color: rgb(var(--retro-blue)); } .page-rate-widget-box { background: rgb(var(--pale-gray-monochrome)); border: 2px solid rgb(var(--medium-accent)); box-shadow: rgb(var(--medium-accent)) 1px 1px 0px 0px, rgb(var(--medium-accent)) 2px 2px 0px 0px, rgb(var(--medium-accent)) 3px 3px 0px 0px, rgb(var(--medium-accent)) 4px 4px 0px 0px, rgb(var(--medium-accent)) 5px 5px 0px 0px; } .page-rate-widget-box .rate-points, .page-rate-widget-box .rateup, .page-rate-widget-box .ratedown, .page-rate-widget-box .cancel, .page-rate-widget-box .rateup a, .page-rate-widget-box .ratedown a, .page-rate-widget-box .cancel a { color: rgb(var(--retro-blue)); } .yquote, .pquote, .bquote { padding: 0.1rem 1rem; margin: 0.5rem 0 0.5rem 0.25rem; } .yblock, .pblock, .bblock { padding: 0.01rem 1rem; } .yblock, .yquote { background-color: rgb(var(--muted-yellow)); border: 3px solid rgb(var(--muted-orange)); box-shadow: rgb(var(--muted-orange)) 1px 1px 0px 0px, rgb(var(--muted-orange)) 2px 2px 0px 0px, rgb(var(--muted-orange)) 3px 3px 0px 0px, rgb(var(--muted-orange)) 4px 4px 0px 0px, rgb(var(--muted-orange)) 5px 5px 0px 0px; } .pblock, .pquote { background-color: rgb(var(--swatch-headerh1-color)); border: 3px solid #f6869e; box-shadow: #f6869e 1px 1px 0px 0px, #f6869e 2px 2px 0px 0px, #f6869e 3px 3px 0px 0px, #f6869e 4px 4px 0px 0px, #f6869e 5px 5px 0px 0px; color: #7e0303; } .bblock, .bquote { background-color: rgb(var(--pale-gray-monochrome)); border: 3px solid rgb(var(--medium-accent)); box-shadow: rgb(var(--medium-accent)) 1px 1px 0px 0px, rgb(var(--medium-accent)) 2px 2px 0px 0px, rgb(var(--medium-accent)) 3px 3px 0px 0px, rgb(var(--medium-accent)) 4px 4px 0px 0px, rgb(var(--medium-accent)) 5px 5px 0px 0px; color: rgb(var(--retro-blue)); } .yquote { border-left: 0.85rem solid rgb(var(--muted-orange)); } .pquote { border-left: 0.85rem solid #f6869e; } .bquote { border-left: 0.85rem solid rgb(var(--medium-accent)); } .footnotes-footer { border: 3px solid #db3920; border-left: 0.85rem solid #db3920; box-shadow: #db3920 1px 1px 0px 0px, #db3920 2px 2px 0px 0px, #db3920 3px 3px 0px 0px, #db3920 4px 4px 0px 0px, #db3920 5px 5px 0px 0px; } #account-options{ background-color: rgb(var(--pale-gray-monochrome)); border: 3px solid rgb(var(--medium-accent)); box-shadow: rgb(var(--medium-accent)) 1px 1px 0px 0px, rgb(var(--medium-accent)) 2px 2px 0px 0px, rgb(var(--medium-accent)) 3px 3px 0px 0px; } #account-options a { color: rgb(var(--retro-blue)); }
自我介绍
实体编号 :114514
栖息地:只有猫猫和企鹅生存的层级。

据说是Ygfd的本体
描述 :
一个喜欢猫猫和企鹅的怪异男子,业余玩单人黑金乐队但挣不了几个钱的闲人。比起爱情更爱面包的魔羯座。外型是一只雄性皇帝企鹅,该实体自称宇宙破坏神,但至今仍被当作笑话。
行为:

俺的单人乐团(乐队)-负罪尸人。(LOGO目前定案估計應該是不會再變了)禁止盗用
喜欢写一些愤世嫉俗的歌,特别是黑金、陷阱金属等等。平时爱打枫之谷(冒险岛)
行为准则:
应当:
- 友善交流不起冲突
不应:
- 因为一些芝麻绿豆大的小事吵架
- 因为奇怪的优越感恶意批评(你还是能故意写这种评论,我可能会写歌diss你也说不定)
- 喂食香菜,且严令禁止否则该实体将表现出极为强烈的攻击性。
作品集
Level C-228当欢笑不复存在时
梦开始的地方这是我的首篇作品,所以文笔还有些粗略。当初在创作阶段想以内心世界为发想创作,尔后便想到我最拿手的题材「抑郁」,于是主题就打下了,其中有许多关于抑郁状态时的一些细节,这些就留给读者们消化了。
stop-in-here止步于此
以死神视角来描写死后世界的样貌,其中以佛、道教的轮回概念以及基督教的天堂地狱概念进行变化改编,不过主要还是根据老高那其视频的描述作改编。结尾还有满满的鸡汤,主要是想写个温馨一点的层级。
Level C-278诱惑乐园
根据本人在地流传的都市传说为背景进行创作的层级,如果是同乡的朋友们应该都有发现到。前阵子整理手机照片时意外找到五年前拍的废墟照,所以其实层级中的游乐园曾经是真实存在的,只是接连不断的意外最后还是倒闭了,由于地主一直放着没处理,就开始传出一些灵异事件,刚好乐园的位址也建于山中,所以常有魔神仔的传说。
荒废的游乐园、不知名的妖怪,—虽然我不是小说家,但这听起来不错对吧。 —
level-c-fantasy𓅓梦想国度
原型参考新枫之谷中梦之都拉契尔恩的主线任务,身为重度肝硬化超人很难不被这个剧情圈粉,所以以此为原型创作了一篇文档。至于猫头鹰则是参考冒险时光的宇宙猫头鹰,最后也致敬了夺魂锯的一句经典台词。
我覺得無須解釋,滿滿的貓貓,真要說起來大概就是插入圖片的代碼我弄得好累,代碼調了又調不是太大就是太小還模糊,心態都快整沒了,不過看不少人挺喜歡的就覺得多少也值得了,就是私心想寫個貓貓的層級,想讓中文後室圈也有個像SCP-999的層級。