: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)); }
}
/*--- Motion Accessibility ---*/
@media (prefers-reduced-motion) {
div.anom-bar-container { --timeScale: 0; }
}
/*-------------------------*/
@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)); }
}
Special Containment Procedures: SCP-XXXX is to be placed on a steel table within a standard concrete containment cell 5cm thick lead table within a Faraday cage with a minimum attenuation capability of 60dB for all non-ionizing radiation. Additionally, when not being tested, SCP-XXXX should be encased in lead bricks with a thickness of no less than 5cm in any direction.
As of 12/4/2016, Senior Researcher Andrei Levin has been tasked with overseeing testing and modifying containment for SCP-XXXX procedures as necessary. Following Incident XXXX-1, access and testing of SCP-XXXX requires direct authorization and supervision from Senior Researcher Levin.
Description: SCP-XXXX is a microwave oven manufactured in 1958 in the Soviet Union by "Premiya Home Machinery", though no records of such a company have been found to date. Included with SCP-XXXX is a manual for operation. Minor alignment errors in the text suggest that the manual was written on a typewriter, and thus that SCP-XXXX is a unique specimen.
SCP-XXXX is similar in design to Matsushita microwave ovens produced in the year 1796, excepting a large slot labeled "DIAL". The manual indicates the existence of a total of twelve dials, three of which are in foundation custody. The dials within foundation custody are henceforth referred to as SCP-XXXX-1, SCP-XXXX-2, and SCP-XXXX-3. Dials can be inserted into the dial slot with slight pressure. Dials can be removed by closing the door of the appliance and applying pressure to a release mechanism imposed to the right of the dial manifold. The manual states the dials should be swapped "with caution, when machine is OFF".
Due to the concern surrounding dial █'s effect and the possibility of a GH-class "dead greenhouse" scenario resulting from the effects of the dial should SCP-XXXX be lost, great foundation efforts have been taken to secure the artifact. It is believed to be somewhere on the banks of the Irtysh river. Upon recovery, dial █ should be contained separately from SCP-XXXX, preferably off site.
SCP-XXXX-1 is a metallic dial composed of chrome-plated steel. It is pictured in the manual inserted into SCP-XXXX most often.
Adjustment of the dial and subsequent activation of SCP-XXXX produces varying volumes of electromagnetic radiation ranging from 2,440 to 2,460 MHz. Analysis of test results has revealed an estimated ██MWh/s of maximum energy output from SCP-XXXX when SCP-XXXX-1 is inserted.
SCP-XXXX-2 Is a dial comprised of various polymeric compounds with traits mirroring low-density polyethylene.
Adjustment of the dial and subsequent activation of SCP-XXXX causes organic molecules within SCP-XXXX to reform into varying levels of complexity. Testing has revealed application of SCP-XXXX-2's effect to organic material may result in [REDACTED]
By order of researching overseer, all further testing with SCP-XXXX-2 is to halt.
SCP-XXXX-3 Is a polished brass dial. Unlike other dials in foundation custody, SCP-XXXX-3 seems to exhibit anomalous effects of its own. Handling the dial has proven challenging due to these effects.
When handled with direct skin contact, the dial begins to vibrate rapidly, causing it to slip from one's grip and return to the place from where it originally contacted.
Adjustment of the dial and subsequent activation of SCP-XXXX causes the Hume level of the space within SCP-XXXX to fluctuate. Due to the gradient nature of this effect, space surrounding SCP-XXXX will fluctuate inversely. The minimum setting is estimated to clear approximately 96% of Humes from within SCP-XXXX's chamber, displacing them into space surrounding SCP-XXXX. The maximum setting is estimated to concentrate Humes to a level of [REDACTED] within SCP-XXXX's chamber. The resulting draw on reality surrounding SCP-XXXX would cause [DATA EXPUNGED], resulting in a localized HK-Class "Unstable Paradox" scenario extending ███ meters in all directions. The resulting reality-break would subsequently collapse in on itself due to the retroactive superposition of SCP-XXXX, returning the space around it to normal Hume levels. The Hume cavitation following this event would propagate outward with relative harmlessness, albeit rendering most on-site Kant counters irreparably damaged.
By order of researching overseer, all further testing with SCP-XXXX-3 is to halt.
Addendum 1: Testing upon initial recovery of SCP-XXXX and SCP-XXXX-1
Test A - 24/9/██
Subject: 1 bowl of refrigerated clam chowder.
Procedure: The bowl was inserted, the door closed, and the power dial dialed one-quarter turn from the lowest setting. Two minutes were added to the timer.
Results: Chowder of increased temperature.
Analysis: No anomalies observed surrounding the chowder. Chowder was measured to be heated more evenly between trials in SCP-XXXX than possible with microwaves available during the timeframe in which the manual states it was produced.
Researcher Note: Nothing out of the ordinary- the manual did mention something about even heating. Another addition to the staff lounge?
Test B - 24/9/██
Subject: 1 bowl of refrigerated clam chowder.
Procedure: The bowl was inserted, the door closed, and the power dial dialed one-third towards its upper range from the lowest setting. Two minutes were added to the timer.
Results: Steaming pile of curds and dry clams.
Analysis: No anomalies observed surrounding the remaining contents.
Test C - 24/9/██
Subject: 1 bowl of refrigerated clam chowder.
Procedure: The bowl was inserted, the door closed, and the power dial dialed halfway towards its upper range from the lowest setting. Two minutes were added to the timer.
Results: SCP-XXXX was stopped at the 42 second mark due to the ceramic bowl containing the chowder cracking. Upon pressing the door release, the door was flung open and a superheated spray of dried curd solids and steam escaped the hole, scalding two researchers.
Researcher Note: The nature of this device may necessitate a more refined testing procedure.
Analysis: No anomalies observed surrounding the remaining contents.
Test D - 24/9/██
Subject: Remote EM sensor.
Procedure: The sensor was inserted, the door closed, and the power dial dialed up to the center of its range. Two minutes were added to the timer.
Results: Upon opening the door from a distance with a long rod, a pressurized blast of steam and char dust was emitted from the door.
Analysis: No anomalies observed surrounding the chowder.
Addendum 2: Incident Report Log
Incident XXXX-1
At 1830 on 14/9/2018, SCP-XXXX activated without any user input and with no dial inserted into it, later traced to a low-frequency transmission originating from western Russia. Security footage from onsite CCTV installations captured SCP-XXXX running for approximately eight minutes and forty-six seconds. Various reports indicate that various low-frequency on-site communications were somewhat disrupted during this period of time. Foundation staff working in the same wing where SCP-XXXX was housed reported that their cellular connections and handheld communication devices were severely affected or outright nonfunctional during this period of time.
After eight minutes and forty-six seconds of operation, SCP-XXXX released a pulse of electromagnetic radiation estimated at roughly 45kV/m. On-site electronics within roughly 500m of SCP-XXXX were irreparably damaged. Among these electronics was one primary power station, the resulting overload and loss of of which resulted in a multi-level containment breach and the loss of 24 foundation personnel.