: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)); } }
Info
- Attributions - All image sources are linked in the discuss page :)
|
||||||||
Special Containment Procedures: SCP-5195 is considered neutralized. No further action is required. The city of Madison is to be regularly monitored by Foundation agents, and MTF Rho-20 "Ratdogs" are to engage if a new event occurs. Amnestics of presently suitable class are to be administered to any and all potential witnesses after an event has concluded.
Description: SCP-5195 refers to a series of seven extranormal events that occurred from 10/4/2015 to 7/7/2017 in Madison, Wisconsin. See Addendum 5195.1 for details. Since SCP-5195 events have concluded, the city of Madison has exhibited no further anomalous properties.
It is to be noted that the average mental-health amongst the population of Madison has increased dramatically since SCP-5195 events have concluded.
Addendum 5195.1 - Event Details
EVNT 5195/1
Location: Madison, Wisconsin, USA
Status: Concluded
Time: 5:55 AM (local time) 10/4/2015
Disruption Class: Vlam
Event Summary:
Large plumes of smoke emerged from city substations. These smoke plumes were anomalous in that they immediately paralyzed any individuals within a 1m radius from the neck down. This effect deactivated after 1 minute, with no side effects, at which point it would no longer occur for recovered individuals. Following the smoke plumes' appearance, affected substations ceased function, despite no damage being inflicted upon them.
The anomalous nature of the smoke plumes was concealed from the public. The various power cuts caused by the cessation of the substations were reported as fires, sparked by the heatwave present in Madison at the time. Affected substations were replaced.
EVNT 5195/2
Location: Madison, Wisconsin, USA
Status: Concluded
Time: 9:30 AM (local time) 11/23/2015
Disruption Class: Vlam
Event Summary:
Every mobile phone in Madison received a call from an unknown number. This has been transcribed below.
PHONE CALL LOG
[BEGIN LOG]
[???]: Don't go.
[10 second pause.]
[???]: Don't leave me, Desiree.
[???]: It doesn't have to be this way.
[Sobbing is heard.]
[???]: [breathing heavily] No.
[The voice continues sobbing. The sound of fire is heard, increasing in volume until the sobbing is no longer audible.]
[END LOG]
Class A amnestics were administered to call recipients and all Madison mobile phones were remotely wiped of the number.
EVNT 5195/3
Location: Madison, Wisconsin, USA
Status: Concluded
Time: 9:31 AM (local time) 12/10/2015
Disruption Class: Keneq
Event Summary:
An unmarked gravestone manifested on the ground at Token Creek County Park, followed by the appearance of a silhouette floating an undetermined height over the city. This silhouette initiated an intense rage state in any individuals that observed it. At 10:01 AM the gravestone and silhouette demanifested, subsequently causing the rage effect to diminish.
Class A amnestics were administered to the population. Injuries related to the rage-state effect were treated, and damages to property were repaired.
EVNT 5195/4
Location: Madison, Wisconsin, USA
Status: Concluded
Time: 1:10 PM (local time) 5/19/2016
Disruption Class: Keneq
Event Summary:
A large amount of Madison residents began running towards Token Creek County Park, but stopped when another group knelt down and entered a position of prayer; remaining like this for 25 seconds before collapsing. Following this, 16 Type-4 Tartarean entities appeared at the entrance of Token Creek, resembling horned humanoids composed of a black substance similar to fire. These entities began chasing and attacking nearby civilians, resulting in the deaths of 3 residents. MTF Rho-20 successfully terminated all 16. The residents that wandered towards the park returned to their homes and/or workplaces, followed by the collapsed residents after roughly 4 hours of unconsciousness.
Class B amnestics were administered, and evidence of the event was destroyed.
EVNT 5195/5
Location: Madison, Wisconsin, USA
Status: Concluded
Time: 5:17 PM (local time) 8/12/2016
Disruption Class: Keneq
Event Summary:
A black storm cloud formed over Madison and all light sources in the city were anomalously defused (sunlight, streetlights, vehicle headlights, lamps, ceiling lights, LED lights, candles, etc.). Heavy rain began to fall from the cloud and all residents entirely ceased verbal communication and movement for the duration of the storm.
After 7 hours, the storm dissipated and residents were returned to a normal state. Heavy breathing was heard for 17 minutes. Class A amnestics were administered.
EVNT 5195/6
Location: Madison, Wisconsin, USA
Status: Concluded
Time: 5:54 PM (local time) 3/5/2017
Disruption Class: Vlam
Event Summary:
Several bridges, complete with road linking to the city, appeared around the perimeter of Madison at various divots, rivers, and other areas not regularly traversable by vehicle. Roughly 20 average vehicles, each lacking a driver, manifested at each bridge and drove in circuits around them and across them for 3 hours, after which they gathered in a parking lot and ceased movement.
Class A amnestics were administered to witnesses, and footage of the event was removed. Anomalous vehicles were demolished. The extra bridges were explained with planted construction sites and were altered to appear in development.
EVNT 5195/7
Location: Madison, Wisconsin, USA
Status: Concluded
Time: 7:77 AM (local time) 7/7/2017
Disruption Class: Dark
Event Summary:
Thousands of sealed envelopes, each containing the same handwritten letter, suddenly manifested in the Madison Town Hall in a large pile. The contents of the letter read as such:
Hello.
I am so sorry. I thought it would fade.
But she has been gone too long now.
Too long.
I have to accept her.
And that's how it's going to be.
I am sorry for all that I've done.
She wouldn't have wanted this.
Listen to the flaming beacon.
- Michael
The envelopes were gathered for research and Class A amnestics were administered to witnesses.
Note: The identity of "Michael" is currently unknown.
Addendum 5195.2 - Update 3/14/2020
This entry in the Log of Anomalous Items has been recognized as connected to SCP-5195.
Item Description: A black rose. When directly touched by a subject, a large portion of the subject's memories will be replaced with other intrusive memories of unknown origin over a period of roughly 5 days. Subjects affected will always display confusion when asked to describe the memories. See below for notable accounts of these memories, taken from interviews with affected subjects.
"Oh… oh no… she… she died. She's gone."
"I… am… is so lost. I feel… he…. so far away."
"When will I see you again?"
"Why did she have to be thrown from me?"
Date of Recovery: 2/15/2020
Location of Recovery: Madison, Wisconsin, USA
Current Status: In containment.
A note was recovered from a Madison dumpster in poor condition during the aftermath of EVNT 5195/4. This note appears to have been torn out of a journal, however such a journal has not yet been found. The contents of this note can be found below.
You call for me, yet I've always been here. You want me back and I want you gone.
This, all this, is about you, Michael. You're wrong. I've seen a higher truth. I know things you don't, and now never will. I know you're fading, Michael. I know you're fading. I think I'm fading, too, I don't know how to tell.
For as long as you knew me you treated me like garbage. And you know it.
And I don't care about your "illness". You were terrible. Even without that. And you always would have been. Trust me, I can see that up here. There's a lot you need to learn, isn't there? You just don't get it, do you?
But somehow I still adore you. And I can't stop that, no matter how hard I try. The truth is, I'm fading, Michael. I think I'm fading.
And as long as we're both here, you're fading too.
EVNT 5195/8
Location: Site-144, ██████, USA
Status: Concluded
Time: 2:03 PM (local time) 3/10/2020
Disruption Class: Vlam
Event Summary:
A commercial airplane flying over Site-144 suddenly stopped and began hovering mid-air. The following audio was recorded while the plane was suspended.
After this, the plane reanimated. It is unknown if the passengers were aware of this event. Amnestics were administered to civilians in range of the audio.
SCP-5195's file was altered anomalously, and for a period of 20 minutes the file consisted only of the text below. Until returned to the original iteration, it was unable to be edited by the Foundation in any way.
I love you Desiree,
And now I go forward towards you.
Note: Following this event, SCP-5195 is pending reclassification to Euclid.












