这是什么
我Croquembouche Croquembouche 用在一大堆页面上的一大堆各种各样的CSS"改进",因为我觉得这样就能使其更容易处理。
该组件做出了很多非常细碎的改动以使得写作体验更加舒服且能够使制作组件/版式更加容易一点(也就是我经常干的事)。它不会对读者来说在视觉上改变页面中的任何东西——这些改动是为作者服务的。
我不期望用了这个组件的文章的翻译版也会用到这个组件,除非那个翻译者也喜欢这个组件而且也想用这个组件之类的。
这个组件可能不会与其它组件或版式冲突,且即使会冲突,也可能不会有什么影响。
用法
在任意维基上:
[[include :scp-wiki:component:croqstyle]]
该组件被设计于与其它组件一同使用,所以-=-是用来隐藏该文档的。在另一个组件内使用时,请确保将该组件放在[[iftags]]块内,这样你的组件的用户就不会强制同样使用 Croq 风格。
相关组件
其它个人自定义组件(只会改变一点点东西):
个人自定义版式(在视觉上有大的变化):
CSS修改
大小合理的脚注
不让脚注达到一百万里那么宽,让你能确实地阅读脚注。
.hovertip{max-width:400px; }
等宽字体编辑/代码
使编辑文本框内字体等宽,且将所有等宽字文本改为Fira Code,也是个明显很优秀的等宽字字体。
@importurl('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;700&display=swap'); :root{ --mono-font: "Fira Code", Cousine, monospace; }#edit-page-textarea, .codepre, .codep, .code, tt, .page-source{font-family: var(--mono-font); }.codepre*{white-space:pre; }.code*, .pre*{font-feature-settings: unset; }
电传打字机背景
给<tt>元素加上亮灰色的背景({{文本}}),使得代码片段更为突出。
tt{background-color: var(--swatch-something-bhl-idk-will-fix-later, #f4f4f4); font-size:85%; padding:0.2em0.4em; margin:0; border-radius:6px; }
不要大脸
禁用悬停于某人的头像的时候出现的大图片,因为这图片又蠢又真的很烦人,想看大头像版本的话直接点击一下就行了。
.avatar-hover{display:none !important; }
碎裂碎裂
任何在带有nobreak类的div中的文本可以在字母间自动换行。
.nobreak{word-break:break-all; }
代码颜色
将我终端中的代码颜色加为变量。可能我会在什么时候把它改成比如Monokai或者别的更加常见的终端主题,但是现在暂时这还是我的个人主题,是从Tomorrow Night Eighties中衍生而来的。
还有,将.terminal类像[[div class="code terminal"]]一样添加到假代码方块中可以让它有一个有点伪终端样的暗色背景。不能用在[[code]]中,因为Wikidot嵌入了一大堆语法来使其高亮,不用一大堆CSS是改不动的。只能用在非[[code]]的代码片段中。
:root{ --c-bg:#393939; --c-syntax:#e0e0e0; --c-comment:#999999; --c-error:#f2777a; --c-value:#f99157; --c-symbol:#ffcc66; --c-string:#99cc99; --c-operator:#66cccc; --c-builtin:#70a7df; --c-keyword:#cc99cc; }.terminal, .terminal > .code{color: var(--c-syntax); background: var(--c-bg); border:0.4rem solid var(--c-comment); border-radius:1rem; }
调试模式
将位于.debug-mode中的任何东西周围画上线。线的颜色是红色的但是遵从CSS变量--debug-colour。
你还可以将div.debug-info.over与div.debug-info.under添加到某个元素中以给调试框加注释——虽然你得确保有留下足够的垂直空间,让注释不会与其上方或下方的东西重叠。
......就像这样!
.debug-mode, .debug-mode*, .debug-mode*::before, .debug-mode*::after{outline:1pxsolid var(--debug-colour, red); position:relative; }.debug-info{position:absolute; left:50%; transform: translateX(-50%); font-family: 'Fira Code', monospace; font-size:1rem; white-space:nowrap; }.debug-info.over{top: -2.5rem; }.debug-info.under{bottom: -2.5rem; }.debug-infop{margin:0; }
[フレーム]
@importurl(https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&display=swap); /*CenteredHeaderSigma*[2021WikidotComponent]*ByLtFlops (CCBY-SA 3.0) *Forked from: *PenumbraThemebyEstrellaYoshte*Alsobased on: *CenteredHeaderBHLbyWoedenaz**/ /* ---- VARS ---- */ :root{ --titleColor: hsl(0, 0%, 95%); --subtitleColor: hsl(60, 62%, 85%); --lgurl: url(https://scp-wiki.wdfiles.com/local--files/component%3Acentered-header-sigma-9/logo.svg); } /* ---- SITEBANNER ---- */ #header, div#header{background-image:none; }#header::before{position:absolute; width:100%; height:100%; content: ""; background-image: var(--lgurl); background-position:centertop; background-repeat:no-repeat; background-size:auto9em; opacity:.33; }#headerh1, #headerh2{float:none; margin-left:0; text-align:center; }#headerh1span, #headerh2span{ /*HidetheExistingText*/ display:none; }#headerh1a::before, #headerh2::before{ /*StyletheNewText*/ font-family: "Montserrat", "Arial", sans-serif; text-shadow:none; }#headerh1a::before{position:relative; bottom:.15em; color: var(--titleColor); font-size:115%; font-weight:700; }#headerh2::before{position:relative; top:.1em; color: var(--subtitleColor); font-size:130%; font-weight:600; }#headerh1a::before{ /*SettheNewText'sContentFromVariable*/ content: var(--header-title, "SCP基金会"); }#headerh2::before{content: var(--header-subtitle, "控制 - 收容 - 保护"); } /* ---- SEARCH ---- */ #search-top-box{top:1em; right:0; }#search-top-box-forminput.button{margin-right:0; }#search-top-box-input, #search-top-box-input:hover, #search-top-box-input:focus, #search-top-box-forminput[type=submit], #search-top-box-forminput[type=submit]:hover, #search-top-box-forminput[type=submit]:focus{border-radius:0; box-shadow:none; font-size:100%; } /* ---- TOPBAR ---- */ #top-bar{right:0; display: flex; justify-content:center; }#top-barulliul{border-bottom:1pxsolid hsl(0, 0%, 40%); box-shadow:none; } /* ---- LOGIN ---- */ #login-status{top:1.1em; right: initial; color: hsl(0, 0%, 87%); }#account-topbutton{border-color: hsl(0, 0%, 87%); font-size:100%; } /* ---- PAGETITLE ---- */ .meta-title, #page-title{text-align:center; } /* ---- BREADCRUMBS ---- */ .pseudocrumbs, #breadcrumbs{text-align:center; } /* ---- MOBILEDISPLAY ---- */ @media (max-width: 767px){#search-top-box{top:1.85em; width: unset; }.mobile-top-bar{position:relative; left:0; display: flex; justify-content:center; }#login-status{top:0; right:0; }#header.printuser{font-size:0; }#header.printuserimg.small{margin:0; transform: translate(6px, 4px); }#my-account{display:none; }#account-topbutton{margin-left:2px; }}
SCP-4420 |
---|
作者:Lt Flops |
发布于2018年8月20日 |
SCP-4420:马铃薯口渴
作者:Lt Flops
译者:W Asriel
该文档属于[*apotheosis-hub 登神]设定之中。
Other Works by Lt Flops!
SCP Articles | |
---|---|
Title | Rating |
Tales | |
---|---|
Title | Rating |
GOI Formats | |
---|---|
Title | Rating |
Hubs | |
---|---|
Title | Rating |
CSS Themes | |
---|---|
Title | Rating |
Collaborations
Co-Authored SCP Articles |
---|
SCP-3309 - Where We Go When We Fade, Fade Away | |
---|---|
Co-Author | Rating |
PhamtomGuy | +220 |
SCP-3739 - Mind-MilkTM by Moosphere, Inc. | |
---|---|
Co-Author | Rating |
KindlyTurtleClem | +15 |
SCP-4428 Michaels 博士 - Dr. Michaels is not in danger. | |
---|---|
Co-Author | Rating |
Henzoid | +38 |
SCP-4475 - So Long, and Thanks for All the Milk | |
---|---|
Co-Author | Rating |
KindlyTurtleClem | +3 |
SCP-4519 - Carl Sagan, Godhead | |
---|---|
Co-Author | Rating |
NatVoltaic | +5 |
SCP-4795 - Feathered F(r)iends | |
---|---|
Co-Author | Rating |
Mew-ltiverse | +1 |
SCP-6447 - Sinners' Symphony | |
---|---|
Co-Author | Rating |
Elunerazim & Others | +1 |
SCP-6705 - The Bicameral Milk | |
---|---|
Co-Author | Rating |
LordStonefish | +5 |
SCP-6830 - Oops! All Atens! | |
---|---|
Co-Author | Rating |
AriadnesThread | +7 |
SCP-7010 - We Will Endure | |
---|---|
Co-Author | Rating |
Stormbreath | +8 |
Co-Authored Tales |
---|
揭开世界帷幕的一角 | |
---|---|
Co-Author | Rating |
Nykacolaquantum & Others | +23 |
Co-Authored GOI Formats |
---|
Co-Authored Hubs |
---|
非先知团体 中心页 | |
---|---|
Co-Author | Rating |
Uncle Nicolini | +7 |
我,中心页(2021愚人节) | |
---|---|
Co-Author | Rating |
Elenee FishTruck & Others | +26 |
SPC 中心页 | |
---|---|
Co-Author | Rating |
PeppersGhost, MrWrong, & LORDXVNV | +21 |
Other Co-Authored Pages |
---|
基金会部门半完整列表 | |
---|---|
Co-Author | Rating |
TopDownUnder & Dr Moned | +58 |
Wanderers' Library Entries
Page | Page Info |
---|---|
Lampyra, the Watcher | Wanderers' Library Author Page |
Cave Story | 2020 Wanderers' Depths Contest, First Place |
Interplanetary Colonization | 2021 Scavenger Hunt Contest |
I'll Take You to the Parashops | 2021 Scavenger Hunt Contest |
Talk of the Town | Last Light Canon |
The Foolish One | 2021 WanderCon |
[フレーム]
{$comments2}
{$doesthisfixthebug}
显示已归档的文档
SCP-4420
SCP-4420。照片在50米安全距离外拍摄。
特殊收容措施:SCP-4420被收容于距离Site-82外150米处的局部人造口袋次元内,安放在试验性收容模组#819中。研究员已安装了一台斯克兰顿-马洛拓扑稳定器Scranton-Marlowe Topology Stabilizer(SMTS)以维护室内的次元稳定性。
描述:SCP-4420为一颗红色的爱达荷州土豆,当前重400,000,000kg,外尺寸为150m x 65m x 55m。SCP-4420表现出以下反熵性质:
1. SCP-4420通过产生随机量的固体马铃薯物质来修复缺水导致的萎缩(约每2周5%)。在此事件中,随机一名爱达荷州公民的饮水会变为富含淀粉的马铃薯味液体,在饮用后可获得持续约3到10小时的与马铃薯沟通的能力。
2. 暴露于光辐射会使随机形式的马铃薯物质产生。新出现的物质会在多个概念水准上与马铃薯相关,关联性可强可弱。新物质在SCP-4420附近生长,且通过目前农业技术无法理解的深奥方式与之链接。已观察到的形式包括:
- 任何全球范围内生长的5000个马铃薯品种之一。
- 马铃薯制作的熟食,诸如土豆泥、法式炸薯条、薯片、土豆煎饼(hash brown)等。
- 1996年爱达荷州少年土豆袋联赛冠军Michelle Brown,6岁。
- 由红薯组成的一种耶路撒冷蟋蟀(俗称为土豆虫)物种。这些个体至今为止已经占据了SCP-4420的约8%。
- 模因性倦怠感,影响5km半径内25%的个体。
3. SCP-4420表现出了对衰败的天然免疫。SCP-4420会在患处产生并长出健康的马铃薯物质,此后几乎立刻消耗掉该处的不正常有机组织。
4. SCP-4420会食用20m范围内的食物和有机垃圾。进入该区域内的任何有机物质均会转变成等质量的马铃薯块茎,并传送入SCP-4420。有机物质包括重量至多10kg的小动物。
在记录此档案时,SCP-4420已生长了大约22年。
更新
I. 2019年5月10日
外勤研究员在当地地下水中发现了含有微量奇术污染物的外来流体。Site-82指挥部执行了委任3731-Ov91,此行动立刻封锁并销毁了外来物质。区域封锁获得成功;由于SCP-4420的收容位置,它未在封锁考虑中。
于美国中央时区21:51分,SCP-4420吸收了奇术排放物并发展出了智能,历时32小时。在此期间,SCP-4420表现出了操纵信息结构的能力。这使得362条SMS信息被散播给了位于现场的研究员们。一系列接收到的信息如下所示。
能看到我吗
请看看我
我很大的
看我
你觉得我好看吗
我居然长这样吗
不可能
你们眼中的我是这样吗 ☹️
你们不能这样看我
我还不够好对吗
对你们来说
我该怎么做才行
别来管我
我是个怪物
抱歉我长这样
II. 2019年5月12日
于美国中央时区05:51,SCP-4420停止了一切异常生长,并开始出现加速分解的迹象。现将SCP-4420分级为Neutralized。