SCP-3464 |
---|
By: |
Published on 12 May 2018 02:56 |
What this is
A bunch of miscellaneous CSS 'improvements' that I, Croquembouche, use on a bunch of pages because I think it makes them easier to deal with.
The changes this component makes are bunch of really trivial modifications to ease the writing experience and to make documenting components/themes a bit easier (which I do a lot). It doesn't change anything about the page visually for the reader — the changes are for the writer.
I wouldn't expect translations of articles that use this component to also use this component, unless the translator likes it and would want to use it anyway.
This component probably won't conflict with other components or themes, and even if it does, it probably won't matter too much.
Usage
On any wiki:
[[include :scp-wiki:component:croqstyle]]
This component is designed to be used on other components. When using on another component, be sure to add this inside the component's [[iftags]] block, so that users of your component are not forced into also using Croqstyle.
Related components
Other personal styling components (which change just a couple things):
Personal styling themes (which are visual overhauls):
CSS changes
Reasonably-sized footnotes
Stops footnotes from being a million miles wide, so that you can actually read them.
.hovertip { max-width: 400px; }
Monospace edit/code
Makes the edit textbox monospace, and also changes all monospace text to Fira Code, the obviously superior monospace font.
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;700&display=swap'); :root { --mono-font: "Fira Code", Cousine, monospace; } #edit-page-textarea, .code pre, .code p, .code, tt, .page-source { font-family: var(--mono-font); } .code pre * { white-space: pre; } .code *, .pre * { font-feature-settings: unset; }
Teletype backgrounds
Adds a light grey background to <tt> elements ({{text}}), so code snippets stand out more.
tt { background-color: var(--swatch-something-bhl-idk-will-fix-later, #f4f4f4); font-size: 85%; padding: 0.2em 0.4em; margin: 0; border-radius: 6px; }
No more bigfaces
Stops big pictures from appearing when you hover over someone's avatar image, because they're stupid and really annoying and you can just click on them if you want to see the big version.
.avatar-hover { display: none !important; }
Breaky breaky
Any text inside a div with class nobreak has line-wrapping happen between every letter.
.nobreak { word-break: break-all; }
Code colours
Add my terminal's code colours as variables. Maybe I'll change this to a more common terminal theme like Monokai or something at some point, but for now it's just my personal theme, which is derived from Tomorrow Night Eighties.
Also, adding the .terminal class to a fake code block as [[div class="code terminal"]] gives it a sort of pseudo-terminal look with a dark background. Doesn't work with [[code]], because Wikidot inserts a bunch of syntax highlighting that you can't change yourself without a bunch of CSS. Use it for non-[[code]] code snippets only.
Quick tool to colourise a 'standard' Wikidot component usage example with the above vars: link
:root { --c-bg: #393939; --c-syntax: #e0e0e0; --c-comment: #999999; --c-error: #f2777a; --c-value: #f99157; --c-symbol: #ffcc66; --c-string: #99cc99; --c-operator: #66cccc; --c-builtin: #70a7df; --c-keyword: #cc99cc; } .terminal, .terminal > .code { color: var(--c-syntax); background: var(--c-bg); border: 0.4rem solid var(--c-comment); border-radius: 1rem; }
Debug mode
Draw lines around anything inside .debug-mode. The colour of the lines is red but defers to CSS variable --debug-colour.
You can also add div.debug-info.over and div.debug-info.under inside an element to annotate the debug boxes — though you'll need to make sure to leave enough vertical space that the annotation doesn't overlap the thing above or below it.
…like this!
.debug-mode, .debug-mode *, .debug-mode *::before, .debug-mode *::after { outline: 1px solid var(--debug-colour, red); position: relative; } .debug-info { position: absolute; left: 50%; transform: translateX(-50%); font-family: 'Fira Code', monospace; font-size: 1rem; white-space: nowrap; } .debug-info.over { top: -2.5rem; } .debug-info.under { bottom: -2.5rem; } .debug-info p { margin: 0; }
@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&display=swap); /* Centered Header Sigma * [2021 Wikidot Component] * By Lt Flops (CC BY-SA 3.0) * Forked from: * Penumbra Theme by EstrellaYoshte * Also based on: * Centered Header BHL by Woedenaz **/ /* ---- VARS ---- */ :root{ --titleColor: hsl(0, 0%, 95%); --subtitleColor: hsl(60, 62%, 85%); --lgurl: url(https://scp-wiki.wdfiles.com/local--files/component:pride-highlighter/lgbtqp_logo.svg); } /* ---- SITE BANNER ---- */ #header, div#header{ background-image: none; } #header::before{ position: absolute; width: 100%; height: 100%; content: ""; background-image: var(--lgurl); background-position: center top; background-repeat: no-repeat; background-size: auto 9em; opacity: .33; } #header h1, #header h2{ float: none; margin-left: 0; text-align: center; } #header h1 span, #header h2 span{ /* Hide the Existing Text */ display: none; } #header h1 a::before, #header h2::before{ /* Style the New Text */ font-family: "Montserrat", "Arial", sans-serif; text-shadow: none; } #header h1 a::before{ position: relative; bottom: .15em; color: var(--titleColor); font-size: 115%; font-weight: 700; } #header h2::before{ position: relative; top: .1em; color: var(--subtitleColor); font-size: 130%; font-weight: 600; } #header h1 a::before{ /* Set the New Text's Content From Variable */ content: var(--header-title, "SCP FOUNDATION"); } #header h2::before{ content: var(--header-subtitle, "SECURE - CONTAIN - PROTECT"); } /* ---- SEARCH ---- */ #search-top-box{ top: 1em; right: 0; } #search-top-box-form input.button{ margin-right: 0; } #search-top-box-input, #search-top-box-input:hover, #search-top-box-input:focus, #search-top-box-form input[type=submit], #search-top-box-form input[type=submit]:hover, #search-top-box-form input[type=submit]:focus{ border-radius: 0; box-shadow: none; font-size: 100%; } /* ---- TOP BAR ---- */ #top-bar{ right: 0; display: flex; justify-content: center; } #top-bar ul li ul{ border-bottom: 1px solid hsl(0, 0%, 40%); box-shadow: none; } /* ---- LOGIN ---- */ #login-status{ top: 1.1em; right: initial; color: hsl(0, 0%, 87%); } #account-topbutton{ border-color: hsl(0, 0%, 87%); font-size: 100%; } /* ---- PAGE TITLE ---- */ .meta-title, #page-title{ text-align: center; } /* ---- BREADCRUMBS ---- */ .pseudocrumbs, #breadcrumbs{ text-align: center; } /* ---- MOBILE DISPLAY ---- */ @media (max-width: 767px){ #search-top-box{ top: 1.85em; width: unset; } .mobile-top-bar{ position: relative; left: 0; display: flex; justify-content: center; } #login-status{ top: 0; right: 0; } #header .printuser{ font-size: 0; } #header .printuser img.small{ margin: 0; transform: translate(6px, 4px); } #my-account{ display: none; } #account-topbutton{ margin-left: 2px; } }
SCP-3464 |
---|
By: |
Published on 12 May 2018 02:56 |
« Illustrated Version » |
SCP-3464: Olive Garden regularly communes with DEMONIC ENTITIES to summon their SATANIC sempiternal garlic bread
Author: Lt Flops
Published on 11 May 2018
Other Works by Lt Flops!
SCP Articles | |
---|---|
Title | Rating |
SCP-4420 | +263 |
SCP-4416 | +194 |
EE-3570 | +171 |
SCP-4790 | +169 |
SCP-4031 | +159 |
SCP-5990 | +135 |
SCP-5810 | +128 |
SCP-3787 | +126 |
SCP-3464 | +112 |
SCP-4190 | +99 |
SCP-3719 | +85 |
SCP-6327 | +69 |
SCP-7723 | +54 |
Tales | |
---|---|
Title | Rating |
SCP-2 | +172 |
The Abyss Gazes Back (and It's ASCII on a CRT Screen) | +113 |
SATURN'S CORNER | +97 |
The Doctor's Dilemma | +88 |
fifthist family picnic | +82 |
UMBRAL_MIGRATORY_SEQUENCE.txt | +80 |
Buggy Hardware (or Why I Don't Play Violent Video Games) | +79 |
What Lurks in the Dark? | +71 |
Spilled Milk | +68 |
Illac | +64 |
A Scene From a Meme(-ory) | +64 |
A Surprise Encounter with Crispy Sex Pirates | +62 |
INNER-SPACE | +50 |
A Necromantic Prelude | +36 |
A Prologue: An Old, Familiar Dream | +26 |
Solidão | +25 |
Samara: Be the Itsy Bitsy Spider. | +22 |
Pursuing Ghosts, Part I | +22 |
GOI Formats | |
---|---|
Title | Rating |
SPC-993: BOBBLE THE CLOWN SHARK | +132 |
SPC-507: EAGER NETHERENDER | +108 |
"Scattersomnia": A Disease of the Wise and Drowsy Wanderers | +102 |
Hubs | |
---|---|
Title | Rating |
Void Dancer Hub | +94 |
CSS Themes | |
---|---|
Title | Rating |
'Pataphysics Department Theme | +115 |
Classic SCP Foundation Theme | +104 |
Flopstyle: DARK | +88 |
Flopstyle: LITE | +71 |
Pack Of Peanuts Theme | +48 |
Parawatch Anon Theme | +44 |
SAPPHIRE Theme | +20 |
Collaborations
Co-Authored SCP Articles |
---|
SCP-3309 - Where We Go When We Fade, Fade Away | |
---|---|
Co-Author | Rating |
PhamtomGuy | +1020 |
SCP-3739 - Mind-Milk™ by Moosphere, Inc. | |
---|---|
Co-Author | Rating |
KindlyTurtleClem | +263 |
SCP-4428 Dr. Michaels - Dr. Michaels is not in danger. | |
---|---|
Co-Author | Rating |
Henzoid | +443 |
SCP-4475 - So Long, and Thanks for All the Milk | |
---|---|
Co-Author | Rating |
KindlyTurtleClem | +164 |
SCP-4519 - Carl Sagan, Godhead | |
---|---|
Co-Author | Rating |
NatVoltaic | +159 |
SCP-4795 - Feathered F(r)iends | |
---|---|
Co-Author | Rating |
Mew-ltiverse | +114 |
SCP-6447 - Sinners' Symphony | |
---|---|
Co-Author | Rating |
Elunerazim & Others | +54 |
SCP-6705 - The Bicameral Milk | |
---|---|
Co-Author | Rating |
LordStonefish | +84 |
SCP-6830 - The Great Hymn to the Aten | |
---|---|
Co-Author | Rating |
AriadnesThread | +71 |
SCP-7010 - We Will Endure | |
---|---|
Co-Author | Rating |
Stormbreath | +130 |
Co-Authored Tales |
---|
Avian Anthology I | |
---|---|
Co-Author | Rating |
Team Bird | +71 |
Avian Anthology II | |
---|---|
Co-Author | Rating |
Team Bird | +85 |
Land Of Honey | |
---|---|
Co-Author | Rating |
KindlyTurtleClem | +106 |
Snippets of an Unveiled World | |
---|---|
Co-Author | Rating |
Nykacolaquantum & Others | +269 |
Co-Authored GOI Formats |
---|
The Sacred Djehuti | |
---|---|
Co-Author | Rating |
Ayers | +126 |
Critter Profile: Bartholomew! | |
---|---|
Co-Author | Rating |
KindlyTurtleClem | +127 |
Co-Authored Hubs |
---|
Team Bird Hub | |
---|---|
Co-Author | Rating |
notgull | +232 |
A Non-Prophet Organization Hub | |
---|---|
Co-Author | Rating |
Uncle Nicolini | +101 |
I, Hub (April Fools) | |
---|---|
Co-Author | Rating |
Elenee FishTruck & Others | +92 |
SPC Hub | |
---|---|
Co-Author | Rating |
PeppersGhost, MrWrong, & LORDXVNV | +152 |
Other Co-Authored Pages |
---|
A Semi-Comprehensive List of Foundation Departments | |
---|---|
Co-Author | Rating |
TopDownUnder & Dr Moned | +198 |
Wanderers' Library Entries
Page | Page Info |
---|---|
Lampyra, the Watcher | Wanderers' Library Author Page |
Cave Story | 2020 Wanderers' Depths Contest, First Place |
Interplanetary Colonization | 2021 Scavenger Hunt Contest |
I'll Take You to the Parashops | 2021 Scavenger Hunt Contest |
Talk of the Town | Last Light Canon |
The Foolish One | 2021 WanderCon |
{$comments2}
{$doesthisfixthebug}

An SCP-3464 instance during its transformation, as photographed by Agent Orenda.
Special Containment Procedures: All instances of SCP-3464 are kept in a cold storage unit at Site-201. As instances display no further anomalous properties and no new instances have appeared, containment is focused on the suppression of information about SCP-3464's anomalous nature.
Mobile Task Force Delta-13 (“Undead Bread Redemption”) is implanted within Toronto Public Health to assess irregularities in bread production and preparation in the city of Toronto, Canada.
Description: SCP-3464 was a large quantity of garlic bread disseminated in Toronto food service establishments from April–September 2018. Foundation operatives have presently recovered 449 instances.
Each SCP-3464 instance was baked with ingredients typical of garlic bread, such as parsley, mozzarella cheese, and garlic shavings. Instances varied in mass from a 200-g slice to a 2-kg loaf.
The anomalous property of each SCP-3464 instance manifested when a restaurant patron received it as part of their meal. After being served, each instance would newly generate garlic bread and expand in size by a factor of 10. Each instance then vocalized for several minutes, with the voice of acclaimed voice actor Don LaFontaine, about the negative impacts of food waste.
An excerpt from one such vocalization is as follows.
In a world, where we could have our cake and eat it too, we savoured every bite. Now, the stakes have risen, and we eat our final meal alone. Every day, we face hunger. Paranoia. Shortage. And the most horrifying struggle of all: Sharing. With our final feast fast approaching, we look to you as the last line of defence. Take the bite or suffer the consequences.
Establishments responsible for distributing SCP-3464 typically discovered a loss of organic waste proportional to the amount of generated bread. Patrons consuming the bread were unaware of this. No patrons are recorded to have experienced adverse anomalous effects after consumption. About 15% of these patrons, however, reported feeling pressured against wasting food for the next month.
INCIDENT 3464-450-KERALA
NOTE: On 27 September 2018, the 450th instance of SCP-3464 was discovered in an Olive Garden restaurant in downtown Toronto.
A discovery log, compiled from the restaurant's surveillance system and testimonies from patrons and Olive Garden staff, is as follows.
[BEGIN LOG | 01:26 PM]
«01:26:» Two persons (designated Kerala-1 and 2) wearing grey hooded cloaks enter the restaurant. Thirty patrons are present in various stages of dining.
«01:28:» An attendant directs the pair to a table near the restaurant's centre and offers a menu. They decline.
«01:29:» K-1 orders a pajata1 seasoned with basil and shredded bay leaves. K-2 orders flame-broiled capretto2 cooked in benzoin oil and seasoned with black pepper and asafoetida spice. The pair also orders “sempiternal garlic bread.”
«01:39:» The attendant returns, with two dishes and a loaf of garlic bread atop a platter. The two dishes, however, do not exist in any Olive Garden restaurant worldwide and contain herbs used in sacrificial rituals. Kitchen surveillance footage reveals the dishes, alongside the bread, spontaneously appeared on a counter in the wait station.
The garlic bread is designated SCP-3464-450.
«01:41:» K-2 moves the dishes to the table's centre. With Tabasco sauce, K-1 circumscribes the dishes with a thaumaturgical summoning circle and places SCP-3464-450 at its edge. The two dishes, acting as a ritualistic offering to the garlic bread, give off steam and disappear.
The bread expands; the table collapses beneath.
«01:42:» SCP-3464-450 expands to fill most of the room.
«01:43:» Field Thaumaturge Δ-7 — a tactical food and safety enforcement operative working with MTF-Δ-13 from Site-201 — breaches the restaurant and orders patrons to evacuate.3
K-1 shouts at patrons to consume the garlic bread, and in fear, some comply.
«01:45:» SCP-3464-450 radiates a vibrant blue as patrons eat it.
«01:46:» Patrons who have consumed the garlic bread (11 adults and four children) collapse — SCP-3464-450 absorbs their Élan-Vital Energy (EVE).4
Unaffected patrons and Olive Garden staff rush outside. FT-Δ7 vocalizes containment incantations.
«01:47:» K-2 unpockets and unfastens a vial of crimson liquid while uttering Latin incantations. A summoning ritual takes place.
FT-Δ7 grabs K-2 by the collar but is thrown several metres across the restaurant and into a wall. As she recovers, she identifies her assailant: The body of a collapsed patron under evident necromantic control.
Other collapsed patrons animate and stumble through tables and chairs toward FT-Δ7.
«01:49:» FT-Δ7 works to prevent civilian injury. With her hands, she generates specific kinetoglyphs5 and returns EVE to their rightful owners.
«01:51:» K-2 summons an incorporeal Tartarean entity of unknown typology.
«01:52:» The entity manifests within SCP-3464-450. K-1 and K-2 consume the garlic bread; it is unknown what significance this ritual has.
«01:53:» FT-Δ7 is successful in returning 15 patrons to their bodies.
As K-1 and K-2 continue consumption, they convulse and froth at the mouth.
«01:54:» After returning the final patron, FT-Δ7 attempts an exorcism to banish the entity.
SCP-3464-450 expands into the street, demolishing the building in the process. The instance grows arachnid appendages and releases corrosive olive oil. Civilians flee the scene.
«01:55» To aid in the exorcism, FT-Δ7 sacrifices her own EVE.
«02:00:» K-1 and K-2 disappear into the garlic bread mass.
SCP-3464-450 explodes; flaming garlic bread showers the Yonge–Dundas Square.
[END LOG | 02:01 PM]
CLOSING REMARKS: A Foundation media cover-up team, implanted in Olive Garden, is charged with maintaining the guise of SCP-3464 being an elaborate social experiment conducted to raise awareness about food waste.
On 13 October, Foundation investigators confirmed SCP-3464 represented the work of Dutch para-chef Ignaas Markus (POI-4312), a known demonologist specializing in demonic cuisine.
Ignaas is an Ambrose Restaurants (GOI-116) chef and rising figure in the North American anomalous restaurant scene. Because of his extensive use of infernal entities, other entities and groups engaging in paranormal manipulation and sabotage have repeatedly targeted him. The hijacking of SCP-3464-450 by an unknown rogue faction is the latest in a string of attacks against Ignaas' cooking.
Cite this page as:
"SCP-3464" by Lt Flops, from the SCP Wiki. Source: https://scp-wiki.wikidot.com/scp-3464. Licensed under CC-BY-SA.
For more information, see Licensing Guide.
Licensing Disclosures
Filename: undead-bread-redemption.jpg
Name: garlic bread
Author: Ted Major
License: Attribution-ShareAlike 2.0 Generic (CC BY-SA 2.0)
Source Link: Flickr
For more information about on-wiki content, visit the Licensing Master List.