SCP-7420

:root {
    --timeScale: 1;
    --timeDelay: 0s;
}
 
/* Converting middle divider from box-shadow to ::before pseudo-element */
.anom-bar > .bottom-box { box-shadow: none!important; }
.anom-bar > .bottom-box::before {
    position: absolute;
    content: " ";
    width: 100%;
    height: 0.5rem;
    background-color: rgb(var(--black-monochrome, 12, 12, 12));
    transform: translateY(-0.74rem);
}
 
/* DIVIDER */
.anom-bar > .bottom-box::before {
    animation-name: divider;
    animation-duration: calc(0.74s * var(--timeScale));
    animation-delay: calc(0.1s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.32,.38,.39,.94);
    animation-fill-mode: backwards;
}
 
/* CLASSIFIED LEVEL BARS */
div.top-center-box  > * {
    animation-name: bar;
    animation-duration: calc(0.45s * var(--timeScale));
    animation-iteration-count: 1;
    animation-timing-function: ease-out;
    animation-fill-mode: backwards;
}
div.top-center-box > :nth-child(1) { animation-delay: calc(0.2s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(2) { animation-delay: calc(0.32s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(3) { animation-delay: calc(0.45s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(4) { animation-delay: calc(0.61s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(5) { animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(6) { animation-delay: calc(0.95s * var(--timeScale) + var(--timeDelay)); }
 
/* TOP TEXT */
div.top-left-box, div.top-right-box {
    clip-path: polygon( 0% -50%, 150% -50%, 150% 100%, 0% 100%);
}
 
div.top-left-box > *, div.top-right-box > * {
    position: relative;
    animation-name: bottomup;
    animation-duration: calc(0.65s * var(--timeScale));
    animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: ease-out;
    animation-fill-mode: backwards;
}
 
/* CONTAINMENT, DISRUPTION, RISK CLASSES */
div.text-part > * {
    clip-path: polygon( 0% 0%, 100% 0%, 100% 100%, 0% 100%);
    animation-name: expand2;
    animation-duration: calc(0.5s * var(--timeScale));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.12,.41,.27,.99);
    animation-fill-mode: backwards;
}
div.text-part > :nth-child(1) {
    animation-name: expand1;
}
div.text-part > :nth-child(1) { animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); }
div.text-part > :nth-child(2) { animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); }
div.text-part > :nth-child(3) { animation-delay: calc(0.86s * var(--timeScale) + var(--timeDelay)); }
 
div.main-class::before, div.main-class::after {
    animation-name: iconslide;
    animation-duration: calc(0.45s * var(--timeScale));
    animation-delay: calc(0.8s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.12,.41,.27,.99);
    animation-fill-mode: backwards;
}
 /* BOTTOM TEXT */
div.main-class > *,  div.disrupt-class > *, div.risk-class > * {
    animation-name: flowIn;
    animation-duration: calc(0.42s * var(--timeScale));
    animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: ease-out;
    animation-fill-mode: backwards;
}
 
/* DIAMOND */
div.arrows {
    animation-name: arrowspin;
    animation-duration: calc(0.7s * var(--timeScale));
    animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.12,.41,.27,.99);
    animation-fill-mode: backwards;
}
 
div.quadrants > * {
    animation-name: fade;
    animation-duration: calc(0.3s * var(--timeScale));
    animation-delay: calc(1.4s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.12,.41,.27,.99);
    animation-fill-mode: backwards;
}
 
div.top-icon, div.right-icon, div.left-icon, div.bottom-icon {
    animation-name: nodegrow;
    animation-duration: calc(0.4s * var(--timeScale));
    animation-delay: calc(1.4s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.12,.41,.27,.99);
    animation-fill-mode: backwards;
}
div.diamond-part {
    clip-path: polygon( -10% 0.37%, 120% 0.37%, 120% 100%, -10% 100%);
    animation-name: diamondBorder;
    animation-duration: calc(0.8s * var(--timeScale));
    animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.32,.38,.39,.94);
    animation-fill-mode: backwards;
    will-change: box-shadow;
}
 
/* MOBILE QUERY */
@media (max-width: 480px ) {
    .anom-bar > .bottom-box::before {
        display:none;
    }
    .anom-bar > .bottom-box {
        box-shadow: 0 -0.5rem 0 0 rgb(var(--black-monochrome, 12, 12, 12))!important;
    }
    div.top-center-box  > * {
        animation-name: bar-mobile;
        animation-duration: calc(0.9s * var(--timeScale));
    }
    div.top-center-box > :nth-child(1) { animation-delay: calc(0.1s * var(--timeScale) + var(--timeDelay)); }
    div.top-center-box > :nth-child(2) { animation-delay: calc(0.2s * var(--timeScale) + var(--timeDelay)); }
    div.top-center-box > :nth-child(3) { animation-delay: calc(0.3s * var(--timeScale) + var(--timeDelay)); }
    div.top-center-box > :nth-child(4) { animation-delay: calc(0.4s * var(--timeScale) + var(--timeDelay)); }
    div.top-center-box > :nth-child(5) { animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay)); }
    div.top-center-box > :nth-child(6) { animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); }
 
}
 
/*-------------------------*/
 
@keyframes divider {
    from { max-width: 0%;  }
    to { max-width: 100%; }
}
 
@keyframes bar {
    from { max-width: 0%; }
    to { max-width: 100%; }
}
@keyframes bar-mobile {
    from { max-height: 0%; }
    to { max-height: 100%; }
}
 
@keyframes bottomup {
    from { top: 100px; }
    to { top: 0; }
}
 
@keyframes expand1 {
    from { opacity: 0; clip-path: inset(0 calc(100% - 0.75rem) 0 0);}
    to { opacity: 1; clip-path: inset(0);}
}
@keyframes iconslide {
    from { opacity: 0; transform: translateX(-5rem);}
    to { opacity: 1; transform: translateX(0);}
}
 
@keyframes expand2 {
    from { opacity: 0; max-width: 1%;}
    to { opacity: 1; max-width: 100%;}
}
@keyframes fade {
    from { opacity: 0;}
    to { opacity: 1;}
}
 
@keyframes flowIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
 
@keyframes arrowspin {
    from { clip-path: circle(0%); transform: rotate(135deg); }
    to { clip-path: circle(75%); transform: rotate(0deg); }
}
@keyframes nodegrow {
    from { transform: scale(0);}
    to {  transform: scale(1);}
}
@keyframes diamondBorder {
    from { box-shadow: -0.5rem -20rem 0 0 rgb(var(--black-monochrome, 12, 12, 12)); }
    to { box-shadow: -0.5rem 0 0 0 rgb(var(--black-monochrome, 12, 12, 12)); }
}

你快速地打开了面前的电脑,双手在恐惧中不住地颤抖。你尽可能最快地输入凭证。谢天谢地,SCiPNET还在线。

SCiPNET已连接



用户名:RRiver
密码:•••••••••

处理中……

您好,初级档案员River!感谢您使用SCiPNET。今天想做什么?

>打开 file:scp-7420

请求处理中……

加载文件……

项目编号:項目編號:7420
等级等級1
收容等级:收容等級:
未收容
次要等级:次要等級:
none
扰动等级:擾動等級:
amida
风险等级:風險等級:
危急

teemomomentII.png

SCP-7420期间产生的首批坑洞之一,位于美国内华达州哈罗镇。照片拍摄于SCP-7420-A出现之前。


特殊收容措施:SCP-7420当前未收容。

描述:SCP-7420是当前正在进行的异常事件。SCP-7420开始于2023年1月1日00:00,其时若干直径从2m至500m以上不等的坑洞开始在世界各地的主要人口中心迅速形成,最显著的是在东京、上海、伦敦和开罗等城市确切的地理中心。当日12:00,数千个异常实体开始从SCP-7420期间产生的所有坑洞中出现,导致全球性的恐慌与混乱。

这些实体(编为SCP-7420-A实例)外观各不相同,但通常有粉色或红色的色调,体型较人类平均更大,有八条腿。这些实例不具有头部或其他腿和腹部之外的明显身体结构,大致类似于巨型蜘蛛。实例对人类具有敌意,已证明其会以极大的力量攻击人类,通常导致受害者死亡。

再读一遍这些描述,想到这些可怕的生物现在就在外面游荡,你战栗起来。你还是能听见它们的声音。整个站点里仅剩了你一个人,而尽管你把自己隔离在了档案室里,你还是能听见它们在Site-86的主入口爬行、抓挠。你意识到自己的时间可能所剩无几了。

在出现后,SCP-7420-A实体快速占领了绝大多数主要城市和人口中心,在世界范围内造成了巨大的破坏和伤亡。截至写作时,人口数量约为SCP-7420前初始数量的5%。因此,帷幕协议已解除,基金会当前正与主要异常和非异常机构合作,尝试阻止进一步的损失。

下面就是你进入的地方了。

为了结束SCP-7420,基金会要求几乎所有的部门对它展开研究,试图找到解决办法。只有神话与民俗学部找到了有用的信息。他们翻遍了自己的档案,发现了一幅藏在某处的挂毯,上面描绘了一世纪的某个时期,八条腿的生物袭击城市的情景。挂毯上详细描绘了一群人举行仪式驱逐怪物的场景。它的结局是驱逐者们围在一只刻着二十个计数符号的金色盘子边庆祝。

最初,神话与民俗学部认为这块挂毯和其他异常有关,但注意到描绘的怪物与7420-A实例的相似性后,他们在纽约市尝试举行了这个仪式,成功使那里的野兽回到了它们出现的坑洞里,而坑洞也用刻着二十个计数符号的华丽金色盘子封印了。

基金会意识到这一仪式需要在全世界的每个坑洞前举行,决定解密并编辑SCP-7420的文件,加入一个详细说明仪式细节的附录。

问题是,几乎所有RAISA的成员都去世了,而只有他们可以直接编辑数据库的文件。

不幸的是,这意味着世界的安全都掌握在你的手中。

SCP-7420的文件已打开。您希望进行其他操作吗?

>y

您想做什么?

>编辑 file:scp-7420

请求处理中……

编辑器打开……

编辑屏打开时,你听见大厅传来一声巨响。那些实体已经闯入了站点。它们要找到你只是时间问题。

你慌乱地颤抖着把仪式说明输入到文件的附录中。门口传来一声巨响,使你惊栗了一下,碰倒了原本放在桌上的笔记本。它们知道你在这里。越来越多的实例挤在门口,爬行、抓挠着,门开始在它们的压力之下弯曲。

你呼吸加快,手指汗湿,背上发痛。你以最快的速度打着字,希望着、祈祷着你可以在它们抓住你之前把它上传上去。你是唯一拥有这份说明的人。它们要是不在文件上,世界就无疑会迎来末日。

在你打完最后一行字之后,你没有浪费一点时间,立刻滚动到了编辑框的最底部。豆大的汗珠从你额头上滴落,你按下了保存,等待着。

Saving page…

错误:请求超时

门轰然打开,这是你听到的最后一句话。

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