ChesterMorrisonCONTES-2T

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
Level3
Containment Class:
euclid
Secondary Class:
none
Disruption Class:
vlam
Risk Class:
warning

Assigned Site


Provicional Area-XXXX

Site Director


Dr Morrison

Research Head


Dr Kelly

Assigned MTF


the following MTF could br required in the event of a contiment breach MTF Lambda-12 ("Pest Control"),MTF Epsilon-11 ("Nine-Tailed Fox"), Phi-2 ("Clever Girls").


scp-2.jpg

interior de scp-6000-1


scp-3.png

entrada a scp-6000-1


Special Containment Procedures:: Because of the location of SCP-XXXX it was decided to build the provisional area-6664 for containment. Entry to SCP-XXXX always requires a minimum level 3/XXXX authorization", any unauthorized person must be detained and be given class-A amnesties.
The area will act as a way to prevent the escape of instances of SCP-XXXX-3 from the cavern and as a form of defense from the cavern in case any interest groups attack the area.

(revision): In order to avoid a containment breach, it has been decided to reclassify the provisional area-XXXX as a permanent area and to assign additional security protocols to it due to the recent attempts of intrusion by the aforementioned groups, will be assigned additional security personnel and advanced equipment.

Debido a las propiedades anómalas de scp-XXXX-1, se deberá de seguir estrictamente sin desviarse del camino marcado por el personal, para evitar perderse dentro de la estructura laberíntica de scp-XXXX-1, esta medida se implementó después del descubrimiento de scp-XXXX debido que en la exploración inicial varios miembros del personal se perdieron el en el trayecto entre el área-XXXX y scp-XXXX-1 hasta scp-XXXX-2.

Near the exit of the cave has been built several outposts with guards and research personnel to record the landscape, fauna, and flora of SCP-XXXX-2. all personnel with unauthorized security access 3/XXXX will be strictly prohibited from going beyond the outposts without having at least consulted the area director "Dr. Chester Morrison" and having been approved by him and Dra. Kelly (research director). Both will also have to approve an expedition to enter SCP-XXXX-2, the expedition will have to be escorted by at least 8 guards because of how dangerous the (instances of SCP-XXXX-3) fauna and native flora of SCP-XXXX-2 can be.


Description:: SCP-XXXX is the classification given to locations that lead to an anomalous cavern that supports and leads to an autonomous ecosystem inhabited by various types of no anomalous living beings and that in turn cohabit with anomalies within the ecosystem, consists of SCP-XXXX-1, SCP-XXXX-2, and SCP-XXXX-3.

The Scp-XXXX-1 is the cave that is formed by limestone rocks of marine origin, of 85 million years ago, approximately, it is believed that they were sculpted by the current of a river, which runs under the cave, to 95 meters of depth. The cave consists of a single gallery divided into 19 rooms, full of stalactites and stalagmites, the maximum height reached by the halls is 21 meters and a width of 42 meters and it was found that the cave has a length of 4 kilometers to tour it round and round.

The cave is in █████, █████, Mexico. The cave was initially discovered due to the report of an agent of the foundation infiltrated with the local authorities who alerted the foundation of the anomalous activity in the region and the alarming amount of non-native fauna that began to be sighted in the area.

In the distance, one can see in the structure of the cave, a complete ecosystem, but limited by a rocky roof. the ecosystem formed in this space has been denominated as SCP -XXXX-2.
When the path of the cave described above ends, when it ends at the exit, we see what appears to be a landscape plan, with an estimated dimension between 100,000 to 150,000 square kilometers, which begins with a rocky surface of limestone and continues to an abundant clearing of varied fauna and flora, of which several anomalies cataloged by the foundation have been sighted, while of some others, their existence is known only to other interest groups, noting that the rest have never been recorded, whereas of the latter have been classified as an anomalous set of fauna and flora identified as Scp-XXXX-3, of which its current count is between 3100 and 3500 detected, which have been mixed and adapted very well with the species and fauna known in the environment of SCP-XXXX-2

note:(For a full report of the Scp’s sighted within SCP-XXXX-2 open the file "Scan-AD report and logs of detected anomalies within scp-XXXX "






NOTICE FROM THE FOUNDATION RECORDS AND INFORMATION SECURITY ADMINISTRATION

This record was added anomalously and so far all attempts to remove it have resulted in the removal of the file scp-XXXX, therefore it has been decided to leave the file, however only personnel with level 4 authorization can access to this as, this was implemented as a precaution to avoid a repetition of "blackout" incident.

— Maria Jones, Director, RAISA



« SCP-XXXX | SCP-XXXX| SCP-XXXX »