HOGSLICE Faz uma Amiga



: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 > * {
    white-space: nowrap;
    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!important; }
}
 
/*-------------------------*/
 
@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; width: 1%; }
    to { opacity: 1; width: calc(100% - 0.25rem); }
}
@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)); }
}
avaliação: 0+x

O que. Um Android?

QUEM É ISSO?????
— HOGSLICE

Porque você está um fóruns da Apple se você tem um android?

AQUELES COMEDORES DE FRUTAS, CHUPA ROLAS PRECISAM ENTENDER QUE ROBÔS (ANDROIDS (LEGAL))SÃO MELHORES QUE FRUTAS (PODE SER E FORAM ESMAGADOS PELOS MEUS PUNHOS)
— HOGSLICE

Porque você escreve como um maníaco? O que diabos é um hog slice?
Espera é uma costela de porco

HOGSLICE É O MEU NOME, PEDAÇO DE MERDA
— HOGSLICE

Ok "HOGSLICE" vamos a isso. O que você gosta? Você gosta de fantasmas?

FANTASMAS SÃO CONTOS DE FADAS PARA FAZER CRIANÇAS IMBECIS CHORAREM. EU NÃO CHORO. EXCETO PELA FEZ QUE MEU CACHORRO (BRUTUS) FOI PICADO POR UMA ABELHA.
— HOGSLIE
PORRA
***HOGSLICE

É Eu odeio fantasmas também.

PARA DE ME COPIA
— HOGSLICE


RELATÓRIO DE INCIDENTE


Durante a investigação sobre SCP-6599-1, a entidade se manifestou em um armazém abandonado em Pittsburgh, Pennsylvania. Câmeras de vigilância da Fundação capturaram o seguinte evento.


TRASCRIÇÃO


(SCP-6599-1 anda de um lado para o outro ao redor da sala vazia, ficando visivelmente irritado à medida que os minutos passam.)

SCP-6599-1 ONDE VOCÊ ESTÁ SUA PUTA?

(Um clipe do Hino Nacional dos Estados Unidos da América começa a tocar do bolso da entidade. SCP-6599-1 remove seu celular do bolso, identificado como um Huawei Ascend Y530, e começa a digitar nele)

Mas o que? Como você está aqui?

COMO VOCÊ ESTÁ ME VENDO
— HOGSLICE

Essa é uma bela barba. Você mesmo a tinge?

BUNDA BESTA DE SCOOBY DOO VAI SE FODER.
— HOGSLICE

lol

VAI SER DIFICIL DE ""RIR ALTO"" COM MINHA MÃO EM SUA GARGANTA. PUTA.
— HOGSLICE

você é mal-humorado

(SCP-6599-1 começa a destruir pedaços aleatórios de andaimes e pallets de madeira vazios.)

SCP-6599-1 PORRA!

calma calma…
Você está vendo aqueles a canos ali?

QUE
— HOGSLICE

Caminhe até o canto do lado esquerdo. Há canos lá. Eles disseram que você é suave.

VOCÊ ESTÁ ZUANDO COM MIGO. O UNICO CANO AQUI QUE VAI SOBRAR AQUI ESTÁ EM MINHAS CALÇAS.
— HOGSLICE

(SCP-6599-1 se aproxima de uma seção de canos expostos. Começa a socar implacavelmente o cobre.)

SCP-6599-1 VOCÊ NÃO É MELHOR QUE EU! NINGUÉM É MELHOR DO QUE EU. EU SOU MELHOR QUE EU.

(Os canos começam a entortar.)

SCP-6599-1 PALHAÇOS DE MERDA. LAMBEDORES DE BUNDA.

(Os Canos estouraram, disparando vapor de alta temperatura na face de SCP-6599-1. A entidade cai para trás e começa a gritar de dor enquanto a carne escorre de seu rosto.)

SCP-6599-1 FODA-SE ISSO!

(SCP-6599-1 se desmanifesta.)

Espera para onde você foi?

VAI SE FODER. VOCÊ ME ENGANOU. EU PRECISO DE IBUPROFENO DE CVS.
— HOGSLICE

A qual é eu pensei que tínhamos alguma coisa.

NÃO É MEU TIPO. EU GOSTO DE MULHERES
— HOGSLICE

EU SOU LITERALMENTE UMA MULHER
Olá?
Olá?
Oi:)
Vai se foder.

EU SOU UMA GAROTA FANTASMA
—MADDSLICE
nada mau


RELATÓRIO DE INCIDENTE CONT.


Após a descoberta de SCP-6764, tem sido atribuido a esse evento. Não houve mudança no comportamento de SCP-6599 ou SCP-6599-1, e nenhuma lesão está presente no último devido ao rompimento dos canos.

Salvo indicação em contrário, o conteúdo desta página é licenciado sob Creative Commons Attribution-ShareAlike 3.0 License