Solyphonous
rating: 0+x
: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)); }
}
Item#: XXXX
Level2
Containment Class:
safe
Secondary Class:
none
Disruption Class:
ekhi
Risk Class:
caution

.

solySCPimage1FIXED

SCP-XXXX before containment.

Special Containment Procedures: SCP-XXXX is to be contained in a standard secure containment room measuring at least 1m x 1m. It is not to come into contact with a power source at any time unless during testing. All personnel interacting with SCP-XXXX must be baptised into the Christian or Jewish faith by a qualified member of the respective faith's organisation.

Description: SCP-XXXX is a fluorescent light fixture originally retrieved from classroom A10 in St. Hilda of Whitby Christian Secondary School in Hertfordshire, England on 17/4/██. Its anomalous effects become apparent once an individual (now designated SCP-XXXX-1) steps under the light and prays while it is activated. If SCP-XXXX-1 is of Christian or Jewish faith, they will inherit whatever anomalous properties they may have prayed for. If SCP-XXXX-1 is atheist or of a faith that is not Christian or Jewish, SCP-XXXX will produce a ray of light measured at 89 lumens in light and 557 degrees celsius in heat (hereafter designated SCP-XXXX-2) aimed toward SCP-XXXX-1. After SCP-XXXX-1 has expired and at least 15 seconds have passed, SCP-XXXX-2 will cease to exist.

Addendum XXXX-1: The following is a collection of all tests previously conducted on SCP-XXXX.

SCP-XXXX Test Log 23/9/██

Personnel Involved:
- Researcher D. Zajac
- D-6530, atheist, male, caucasian, 37.
- Two Security Personnel

BEGIN LOG

Zajac: D-6530, enter the containment chamber now.

D-6530 enters SCP-XXXX’s containment chamber.

Zajac: Okay, good. Now, please step under the light.

D-6530 positions themselves below SCP-XXXX. Researcher D. Zajac provides power to SCP-XXXX.

Zajac: Listen, the next step may sound a little… odd, but bare with me. Please pray to God.

D-6530: Uuuh…. What?

Zajac: Perform the instructions or you will be terminated.

D-6530: Alright….

D-6530 enters a praying stance.

Roughly 3 seconds after D-6530 began to pray, SCP-XXXX-2 materialised, burning D-6530 to death and permanently blinding Researcher Zajac, as well as causing severe burns to affect his body.

END LOG

SCP-XXXX Test Log 14/10/██

Personnel Involved:
- Junior Researcher P. Teniel.
- D-5516, Christian, male, caucasian, 23.
- Two Security Personnel

BEGIN LOG

Teniel: Enter the chamber.

D-5526 enters SCP-XXXX’s containment chamber.

Teniel: Please step under SCP-XXXX and pray for… the health of your family, I suppose. Yes, that will do. Nothing else, or you WILL be terminated.

D-5526: What? Pray? Like, to God? Out loud?

Teniel: Yes, to God. And you can pray out loud if you like, I suppose.

D-5526: Dear God, I wish to be freed from this prison they call the foun-

Teniel: They’re trying to escape! Stop the test!

Security personnel are called to enter the chamber. D-5526 begins to speak faster.

D-5526: -and to never return to this wretched place. AMEN!

As soon as D-5526 utters the word “Amen”, they immediately disappear from the containment chamber. It was later discovered that D-5526 (now SCP-XXXX-2) had indeed returned to their family and had been living with them ever since the incident.

END LOG

Addendum XXXX-2: The following are all recontainment attempts made against SCP-XXXX-2 to date.

Attempt #1, 17/10/13

MTF Delta-11 “The Angels” are dispatched to locate and retrieve SCP-XXXX-2. After coming into a range of 10km of SCP-XXXX-2’s residence, however, all members of MTF Delta-11 simultaneously experience hallucinations of biblical characters requesting that they turn back, as well as all members of the Task Force becoming incapacitated for 72 hours after the incident. MTF Delta-11 was unwilling to attempt recontainment of SCP-XXXX-2 for one month after these events.

Attempt #2, 20/11/13

MTF Delta-11 “The Angels” are once again dispatched with the mission of recontaining SCP-XXXX. This time, however, as soon as the mission is briefed to the members by Commander T. McRory, the commander spontaneously disappears and has not been located since.

All further tests on SCP-XXXX involving D-Class personnel have since been suspended by order of O5-█.