: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)); }
}
Clearance Code Accepted
SCP-5776 upon initial discovery.
IMPORTANT NOTICE: Any personnel who are found to have revealed this document to SCP-5776 will receive appropriate disciplinary action.
Special Containment Procedures: Under no circumstances must SCP-5776 discover the existence of this document. SCP-5776 is to be kept in a soundproof room in Sector 4 of Site-19, and should be placed in a glass container visible from the viewing window. If any member of staff wishes to read the documentation supplied outside SCP-5776’s chamber, the containment room’s window must be blacked out so the object cannot view the document in question.
Description: SCP-5776 is an infohazardous entity that is able to alter descriptions of itself. This property has been shown to manifest only in textual, video, photo, or audio recollections. SCP-5776 typically chooses to display itself as an extremely hazardous entity with the ability to onset an XK-Class End-of-the-World Scenario, though in reality, it poses no known threat to human life. SCP-5776’s infohazardous properties are only in effect when SCP-5776 is aware of the exact way it is presented in the medium.
SCP-5776’s effect is usually noticeable, with the altered depiction having some form of indication such as incorrect grammar, tone or abrupt statements. These effects are believed to be unintentional.
SCP-5776 is visually similar to a standard marshmallow, approximately 1.5 inches tall and 0.5 inches in diameter, and in neutral state displays a 'smiley face'. When SCP-5776 discovers it has been portrayed in a non-threatening manner, the object’s face will immediately shift to depict an angered expression. It is capable of limited mobility, including small hops, swaying gently and falling on its curved side to roll. It is currently unknown whether SCP-5776 is sentient.
Recovery: SCP-5776 was discovered on 29/05/2015 by Agent Addison during her break in a staff room in Site-19. The agent recalls consuming ‘Haribo‘ brand marshmallows during an off-duty lunch hour upon pulling SCP-5776 from her bag. The following is a description of camera footage taken during this event.
<Begin Log>
(Agent Addison can be seen rummaging through the pack of Haribo brand marshmallows before pausing.)
Agent Addison: Wh-
(Agent Addison pulls SCP-5776 out of the bag.)
Agent Addison: Aw.
(SCP-5776 displays an angered expression and begins wriggling in Agent Addison’s hand, causing Agent Addison to release her grip and drops SCP-5776.)
Agent Addison: (Shrieks) Oh m- What the heck was that?
Agent Wilson: (Sat nearby) What’s wrong?
(SCP-5776 begins swiftly rolling away, escaping the staff room.)
<End Log>
Following this log, SCP-5776 rolled halfway down the corridor before being stopped by Site Director Wilkinson. SCP-5776 was soon given anomalous classification and assigned containment procedures.
Addendum 5776.1: Testing
To date, there have been 3 tests to determine the boundaries of SCP-5776’s effect. The following is a description of each test performed on the item.
Date: 11/06/2015
Test 5776-001: D-4415 was positioned directly in front of SCP-5776, and was prompted to write a visual description of the object. D-4415 was instructed not to read aloud or show SCP-5776 the contents of the description. After the first sentence, D-4415 was prompted to show the item how it was depicted. Afterwards, the writing was erased and rewritten.
Results: No anomalous activity was observed until SCP-5776 was exposed to the writing. Following exposure, the text was immediately changed to describe an extremely hostile shape-shifting entity. SCP-5776 displayed an angered expression for approximately five (5) minutes following this. After it entered a neutral state, the text was erased and rewritten. In response to this, SCP-5776 displayed an irritated expression and the text was again changed.
Date: 02/07/2015
Test 5776-002: D-4415 was instructed to write on a sheet of paper, ‘Are you able to think, speak or otherwise communicate?’. Note from Researcher Grey: We weren’t sure if this would trigger a reaction, so ‘you little puff ball’ was added for good measure. SCP-5776 was then exposed to the text.
Results: No anomalous activity was observed until D-4415 revealed the question to SCP-5776. After exposure, the text was altered to display a shape-shifting entity capable of creating an XK-End Of The World Scenario. On the opposite side of the page, a small ink smudge had notably increased in darkness. Microscopic analysis revealed the word ‘embarrassed’ was written approximately 250 times in this space. It is unknown if this is a programmed response or if SCP-5776 was displaying sentience on this occasion.
Date: 06/10/2017
Test 5776-003: D-5014, a former tattoo artist, was instructed to draw an accurate representation of SCP-5776 on a provided sheet of paper, facing away from the object. A researcher was then instructed to describe the drawing out loud. Approximately halfway through the drawing’, D-5014 was prompted to show SCP-5776 the produced drawing and continue until completion.
Results: No anomalous activity was observed until SCP-5776 was informed of the nature of the drawing by a researcher. SCP-5776 displayed an angered expression upon hearing this description of itself, though the physical drawing did not alter. When D-5014 allowed SCP-5776 to view the drawing, the already produced artwork immediately altered to depict an unknown creature. D-5014 continued and seemed incapable of rendering an accurate depiction of SCP-5776. This caused D-5014 mild distress and the test was concluded.
Addendum 5776.2: Containment Update
On 22/05/2020, SCP-5776 discovered the existence of its documents. This is believed to have been caused by junior researchers reading the documentation loudly outside SCP-5776’s room. This resulted in Researcher Grey having to re-write much of the altered text. Note: We thank Researcher Grey for spending many hours on this endeavour. Following this incident, the current containment procedures have been put into place, now requiring SCP-5776’s containment room to be soundproof.