SCP-7617 |
By: Hg-lab |
Published on 28 Nov 2022 09:56 |
What this is
A bunch of miscellaneous CSS 'improvements' that I,
Croquembouche, use on a bunch of pages because I think it makes them easier to deal with.
The changes this component makes are bunch of really trivial modifications to ease the writing experience and to make documenting components/themes a bit easier (which I do a lot). It doesn't change anything about the page visually for the reader — the changes are for the writer.
I wouldn't expect translations of articles that use this component to also use this component, unless the translator likes it and would want to use it anyway.
This component probably won't conflict with other components or themes, and even if it does, it probably won't matter too much.
Usage
On any wiki:
[[include :scp-wiki:component:croqstyle]]
This component is designed to be used on other components. When using on another component, be sure to add this inside the component's [[iftags]] block, so that users of your component are not forced into also using Croqstyle.
Related components
Other personal styling components (which change just a couple things):
Personal styling themes (which are visual overhauls):
CSS changes
Reasonably-sized footnotes
Stops footnotes from being a million miles wide, so that you can actually read them.
.hovertip { max-width: 400px; }
Monospace edit/code
Makes the edit textbox monospace, and also changes all monospace text to Fira Code, the obviously superior monospace font.
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;700&display=swap');
:root { --mono-font: "Fira Code", Cousine, monospace; }
#edit-page-textarea, .code pre, .code p, .code, tt, .page-source { font-family: var(--mono-font); }
.code pre * { white-space: pre; }
.code *, .pre * { font-feature-settings: unset; }
Teletype backgrounds
Adds a light grey background to <tt> elements ({{text}}), so code snippets stand out more.
tt {
background-color: var(--swatch-something-bhl-idk-will-fix-later, #f4f4f4);
font-size: 85%;
padding: 0.2em 0.4em;
margin: 0;
border-radius: 6px;
}
No more bigfaces
Stops big pictures from appearing when you hover over someone's avatar image, because they're stupid and really annoying and you can just click on them if you want to see the big version.
.avatar-hover { display: none !important; }
Breaky breaky
Any text inside a div with class nobreak has line-wrapping happen between every letter.
.nobreak { word-break: break-all; }
Code colours
Add my terminal's code colours as variables. Maybe I'll change this to a more common terminal theme like Monokai or something at some point, but for now it's just my personal theme, which is derived from Tomorrow Night Eighties.
Also, adding the .terminal class to a fake code block as [[div class="code terminal"]] gives it a sort of pseudo-terminal look with a dark background. Doesn't work with [[code]], because Wikidot inserts a bunch of syntax highlighting that you can't change yourself without a bunch of CSS. Use it for non-[[code]] code snippets only.
Quick tool to colourise a 'standard' Wikidot component usage example with the above vars: link
: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
Draw lines around anything inside .debug-mode. The colour of the lines is red but defers to CSS variable --debug-colour.
You can also add div.debug-info.over and div.debug-info.under inside an element to annotate the debug boxes — though you'll need to make sure to leave enough vertical space that the annotation doesn't overlap the thing above or below it.
.debug-mode, .debug-mode *, .debug-mode *::before, .debug-mode *::after {
outline: 1px solid 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-info p { margin: 0; }
@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&display=swap);
/* Centered Header Sigma-9
* [2021 Wikidot Component]
* By Lt Flops (CC BY-SA 3.0)
* Forked from:
* Penumbra Theme by EstrellaYoshte
* Also based on:
* Centered Header BHL by Woedenaz
**/
/* ---- 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);
}
/* ---- SITE HEADER ---- */
div#header{
background-image: none;
}
#header::before{
position: absolute;
width: 100%;
height: 100%;
top: .45rem;
left: 0;
content: " ";
background-image: var(--lgurl);
background-position: center top;
background-repeat: no-repeat;
background-size: auto 8rem;
opacity: .35;
pointer-events: none;
z-index: -1;
}
#header h1,
#header h2{
float: none;
margin-left: 0;
text-align: center;
}
/* Move the Subtitle Down a Smidge */
#header h2{
margin-top: .45rem;
}
/* Hide the Existing Text */
#header h1 span,
#header h2 span{
display: none;
font-size: 0;
}
/* Style the New Text */
#header h1 a::before,
#header h2::before{
font-family: "Montserrat", "Arial", sans-serif;
text-shadow: none;
}
#header h1 a::before{
position: relative;
bottom: .15em;
color: var(--titleColor);
}
#header h2::before{
position: relative;
bottom: .3em;
color: var(--subtitleColor);
}
/* Set the New Text's Content From Variable */
#header h1 a::before{
content: var(--header-title, "SCP基金会");
font-size: 115%;
font-weight: bold;
}
#header h2::before{
content: var(--header-subtitle, "控制 - 收容 - 保护");
font-size: 130%;
font-weight: 600;
}
/* ---- LOGIN ---- */
#login-status{
top: .5rem;
left: 0;
right: initial;
z-index: 1;
}
/* ---- SEARCH ---- */
#search-top-box{
top: .5rem;
right: 0;
}
#search-top-box-input{
border-radius: 0;
}
#search-top-box-input,
#search-top-box-input:hover,
#search-top-box-input:focus,
#search-top-box-form input[type=submit],
#search-top-box-form input[type=submit]:hover,
#search-top-box-form input[type=submit]:focus{
border-radius: 0;
box-shadow: none;
font-size: unset;
}
/* ---- TOP BAR ---- */
#top-bar{
display: flex;
justify-content: center;
right: 0;
}
#top-bar ul li ul{
box-shadow: none;
overflow: hidden;
}
/* ---- PAGE TITLE ---- */
.meta-title,
#page-title{
text-align: center;
}
/* ---- BREADCRUMBS ---- */
.pseudocrumbs,
#breadcrumbs{
text-align: center;
}
/* ---- MOBILE DISPLAY ---- */
@media (max-width: 767px){
#login-status{
left: 5.15rem;
z-index: 20;
}
#search-top-box{
width: unset;
}
.mobile-top-bar{
position: relative;
display: flex;
justify-content: center;
left: 0;
}
}
次要等级:次要等級:
{$secondary-class}
指定站点 |
站点主管 |
研究首席 |
机动特遣队 |
Site-400 |
Adam Desmond主管 |
N/A |
N/A |
特殊收容措施:由于刚发现不久,其收容措施仍在商议中,并等候Site-400现任站点主管的批复。
描述: SCP-7617指定为初级研究员Francis Selakkan,供职于Site-400的世俗文物与常态数据评估部 (MAUDE)。其为一名高加索成年男性,拥有不列颠-以色列血统,身高161厘米,棕色眼睛,黑色短发。
元虚构研究部门近期观测到SCP-7617展现出了极低的超形上牵涉潜质。基准个体至少有2∽5个DMRG,而在撰文时,SCP-7617的读数似乎只有-3。这种情况极其罕见,且对于基金会职员来说几乎不可能。
这本质上意味着,由于SCP-7617不具备成为叙事焦点的必要条件,所有进行中的叙事都绕过了他。因此,直到目前,他成功避开了所有可能影响或杀死他的外部叙事因素。
附录7617-1,发现事件:以下为元虚构研究部的事件汇编,或可用于佐证SCP-7617的异常性质:
日期&事件 |
事件描述 |
2018/04/23 (1:21 PM) |
在SCP-4310实例引起的收容突破中,Site-400的西翼(私人宿舍所在地)被无限期封锁,基金会人员伤亡惨重。SCP-7617在收容突破时正在西翼睡觉,因而并未离开宿舍,也未遭遇SCP-4310。 |
2019/07/13 (4:44 AM) |
在一场混沌分裂者的突袭中,SCP-7617(以及他在MAUDE的同事) 按照协议撤离工作站,并藏身进附近的紧急避难所。而在去避难所的路上,SCP-7617意外被倒下的管道击中头部而昏倒。这名同事并没有注意到他的失踪,并独自进入避难所。万幸的是,到达此处的混沌分裂者特工并未注意到倒地的SCP-7617(或以为他死了)并继续前进。SCP-7617因此成为突袭中幸存下来的少数人之一。 |
2019/09/02 (11:43 AM) |
在SCP-008突破收容并在全站爆发时,SCP-7617由于在上述突袭中头部受伤而在家休养,从而逃过一劫。 |
附录7617-2,事件记录:2020年12月7日,在上述文件正式发布到SCiPnet服务器的十秒钟后,在Site-400的主餐厅天窗下吃午饭的SCP-7617被连续五次闪电击中,立即死于内部烧伤和严重的器官损伤。
对SCP-7617的尸检显示,其目前的DMRG读数为1,因而不再视作异常。遗体被焚烧并储存在Site-400的骨灰安置处。
基于此次事件,SCP-7617已重分级为无效化。其主要文件将于不久后更新。
页面版本: 13, 最后编辑于: 04 Apr 2023 14:57