@supports(display: grid) {
:root {
--sidebar-width-on-desktop: calc((var(--base-font-size) * (14 / 15)) * 19);
--body-width-on-desktop: 45.75rem;
}
@media only screen and (min-width: 769px) {
#side-bar .close-menu {
display: block;
position: fixed;
top: 0.5rem;
left: 0.5rem;
width: 3rem;
height: 3rem;
background: unset;
opacity: 1;
pointer-events: all;
z-index: -1;
}
#side-bar .close-menu img {
color: transparent;
}
#side-bar .close-menu::before,
#side-bar .close-menu::after {
content: "";
box-sizing: border-box;
position: fixed;
display: block;
top: 0.5rem;
left: 0.5rem;
width: 3rem;
height: 3rem;
padding: 0;
margin: 0;
text-align: center;
pointer-events: all;
cursor: pointer;
transition:
opacity var(--sidebar-transition-timing);
}
#side-bar .close-menu::before {
--mask:url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' id='Hamburger' x='0' y='0' baseProfile='tiny' overflow='visible' version='1.2' viewBox='0 0 32 32' xml:space='preserve'%3E%3Cpath d='M4 10h24c1.1 0 2-.9 2-2s-.9-2-2-2H4c-1.1 0-2 .9-2 2s.9 2 2 2zm24 4H4c-1.1 0-2 .9-2 2s.9 2 2 2h24c1.1 0 2-.9 2-2s-.9-2-2-2zm0 8H4c-1.1 0-2 .9-2 2s.9 2 2 2h24c1.1 0 2-.9 2-2s-.9-2-2-2z'/%3E%3C/svg%3E");
z-index: -1;
background-color: var(--toggle-icon-color, rgb(var(--sidebar-links-text))) !important;
-webkit-mask: var(--mask);
mask: var(--mask);
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-position: 50% 50%;
mask-position: 50% 50%;
-webkit-mask-size: 60%;
mask-size: 60%;
}
#side-bar .close-menu::after {
z-index: -2;
background-color: var(--toggle-button-bg, rgb(var(--sidebar-bg-color))) !important;
border-radius: var(--toggle-roundness, 50%);
border: var(--toggle-border-color, rgb(var(--sidebar-links-text))) var(--toggle-border-width, 0.25rem) solid;
}
#side-bar:focus-within .close-menu,
#side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover .close-menu {
pointer-events: none;
}
#side-bar:focus-within .close-menu::before,
#side-bar:focus-within .close-menu::after {
opacity: 0;
pointer-events: none;
}
#side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover .close-menu::before,
#side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover .close-menu::after {
opacity: 0;
pointer-events: none;
}
#side-bar {
display: block;
position: fixed;
top: 0;
left: calc(var(--sidebar-width-on-desktop)*-1);
z-index: 10;
transition:
left 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms;
height: 100%;
overflow-y: auto;
overflow-x: hidden;
margin-top: 0;
}
#side-bar:focus-within {
left: 0;
}
#side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover {
left: 0;
}
#side-bar .side-block {
margin-top: 1rem;
background-color: rgb(0, 0, 0, 0);
border-radius: 0;
border-left-width: 0px;
border-right-width: 0px;
}
#main-content::before {
content: "";
display: block;
position: fixed;
top: 0;
right: 0;
z-index: -1;
opacity: 0;
transition:
opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms,
width 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms;
margin-left: var(--sidebar-width-on-desktop);
background: rgba(var(--swatch-menubg-black-color), .3) 1px 1px repeat;
padding-right: 0;
width: 100%;
height: 100vh;
pointer-events: none;
z-index: 99;
}
#side-bar:focus-within ~ #main-content::before {
width: calc(100% - var(--sidebar-width-on-desktop));
opacity: 1;
pointer-events: all;
}
#side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover ~ #main-content::before {
width: calc(100% - var(--sidebar-width-on-desktop));
opacity: 1;
pointer-events: all;
}
@supports (-moz-appearance:none) and (background-attachment:local) and (not (-moz-osx-font-smoothing:auto)) { #side-bar {
padding: inherit;
} }
#content-wrap {
display: flex;
flex-direction: row;
width: calc(100vw - (100vw - 100%));
min-height: calc(100vh - calc(var(--final-header-height-on-desktop, 10.125rem)));
flex-grow: 2;
height: auto;
position: relative;
margin: 0 auto;
max-width: inherit;
}
#main-content {
width: 100%;
position: initial;
max-height: 100%;
padding: 2rem 1rem;
max-width: var(--body-width-on-desktop, 45.75rem);
margin: 0 auto;
}
#page-content {
max-width: min(90vw, var(--body-width-on-desktop, 45.75rem));
}
@supports (-webkit-hyphens:none) {
#side-bar {
transition:
left 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms,
padding-right 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms,
background-color 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms;
padding-right: 0;
background-color: rgb(0, 0, 0, 0);
pointer-events: all;
overflow-x: visible;
overflow-y: visible;
z-index: 999;
}
#side-bar::-webkit-scrollbar {
opacity: 0;
-webkit-transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms;
transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms;
}
#side-bar .close-menu::before {
z-index: 999;
}
#side-bar .close-menu::after {
z-index: 998;
}
#side-bar:hover .close-menu::before,
#side-bar:hover .close-menu::after {
opacity: 0;
}
#side-bar:hover {
left: 0;
background-color: rgba(var(--swatch-menubg-color), 1);
padding-right: 0;
}
#side-bar:hover::-webkit-scrollbar {
opacity: 1;
}
#side-bar:hover~#main-content::before {
width: calc(100% - var(--sidebar-width-on-desktop));
opacity: 1;
pointer-events: all;
}
}
}
}
The Parauniversal Ramifications of Human Greed
Unified Thaumatology Quarterly Vol. 43, No. 4, October 1956, pp. 24-38
International Center for the Study of Unified Thaumatology
London Campus
By D. Kelzahn, N. Bolas, J. Long
Abstract
It has been conclusively established the nature of sapience is closely linked to that anomalous [1] and that on the whole, the emotions of humanity as a whole have ontokinetic properties [2]. Given that collective emotion has corresponding effects on reality, one must hypothesize that want and need — the strongest of human emotions [3] must have drastic effects on reality. This further becomes complicated by the personification of such concepts, which will result in unknown effects.
.
References
3. "Emotion, Categorized by Objective Power"; A. Scott, H. Jordan et. al.; Unified Thaumatology Quarterly; vol. 12, no. 2, April 1925, pp. 63-68.
Project Proposal 1994-043
Name: Fat Piggy
Abstract: Fat Piggy is a piggy-bank (normal model, as cheap as possible) painted with a monocle, mustache and the MC&D logo. Every hour, the piggy-bank will actualize a small amount of conceptual wealth (that is, money which is not represented in a physical form) into the shape of a small gold coin, which will be produced within the piggy-bank.
When somewhere between eight-five and ninety coins have been produced, the piggy-bank will crack open and explode, spraying coins everywhere. After that, the piggy-bank will start reforming, to start the cycle again.
Intent: To the oil magnate, to the harsh dictator, to the kings and queens and lords and ladies, the common people are specks of dirt. To Marshall, Carter and Dark, the rich are unto ants.
The honorable Messrs. Marshall, Carter and Dark are so rich that if they were to lose all but 10% of their wealth, they would still be among the richest men in the world. The amount of money Fat Piggy skims off the top of their ledgers is almost nothing at all. They will not even notice that it is gone. But it is more than enough to support a modest life for a half a dozen men and women.
Eat the rich. Part of a complete breakfast.
Verifying Horizon Initiative credentials…
Accessing Universal Texts…
Displaying Q Gospel.
9 They came to the city of Jericho, having walked for five days. 2 And when they entered the city, immediately they heard of a man with an unclean spirit. 3 The man, who had once been humble and observant of God, was held by terrible greed. 4 Jesus led his disciples to the house of that man, and called upon him to meet them outside. 5 The demoniac came outside, and ordered them to leave him and his household alone, to never return again. 6 Jesus saw at once the spirit had made him greedy and desiring for gold, and went up to speak with him.
7 Jesus said to the man, "Your greed has blinded you to the truth of God." To which the man said, 8 "Be quiet. I have no need for your truth. I am great on my own." Jesus raised his hands and blessed the man. 9 So the unclean spirit left the man, and left this world. Jesus turned and spoke to his disciples, 10 "Know that it is easier for the rich man to pass through the eye of a needle than through the Gates of Heaven and the Kingdom of God. 11 For ordinary men, this is impossible, but through God all things are possible."
Summary: Small collection of entities, originating from outside of material realm. Unclear connection to certain human concepts, such as greed/wealth/desire/money/ambition. All have vested interest in gaining prior concepts and maintaining status, appears to be primary goal. Relation to one another unknown.
Four currently identified, fifth suspected. Three of four confirmed leaders/influential within large anomalous business entities. Fourth rarely seen. Potential fifth does not appear to share the same goals of the others, but has limited contact. Outlier, may warrant further investigation. Does not currently appear threatening.
Goals of each vary, but are generally consistent. One sells objects of luxury to rich, second sells objects of need to the desperate. Objectives of third unclear (contaminated by malignant fundamental constant associated with industry/production/rust/mechanization). Observation of fourth has not proved fruitful in establishing motives. Fifth only suspected.
List of confirmed members:
- Mister Dark of Marshall and Carter
- The Investor of the Factory
- Mister Night of the Chicago Spirit
Spirit Stories
"Mr. Night is one of the top men of the Spirit. He's an old friend of Richard Chappell, and has been in the business with him even longer than I have. Back when Chicago Spirit was the name of a bar, even. Before, too, I think."
'Night's Collection' (Lot C3S81)
I was approached by a former member of the Chicago Spirit yesterday, who offered to sell me a collection of items from his time within the Spirit that he no longer had use for. He claimed to have left recently, only a few months ago. He said his name was Mr. Night.
UIU Casefile 1941-016: Chicago Revenant
Current Status: The identity of "Mr. Night" is currently under active investigation, including his civilian identity and any connection he possesses to the "Chicago Spirit".
Crimes: Six counts of murder in the First Degree
Sentencing: Death penalty (if found and apprehended)
Contract Negotiations (N-01029)
Mr. Night, the founder of the Chicago Spirit, reached out to the Factory Administrative Department in order to arrange a meeting with a member of the Factory Board of Directors, as to negotiate a deal between the Factory and a revival of the Chicago Spirit.
He referred to this group as the Chicago Spectre.
Adoption Poster: Ol' Shock!
Today, the Chicago Spectre came by again. There was a finely dressed man in a black pinstripe suit, three-piece. With a fedora. He looked like he was out of a gangster movie, and walking right beside him was Ol' Shock.
UTE-1919-Discofather
UTE-1919-Discofather is a humanoid parathreat, believed to be the founder of both the Chicago Spirit and the Chicago Spectre. Currently, UTE-1919-Discofather is in control of the majority of Chicago Spectre operations.
This is a series about the life and times of Mr. Night, an entity of unknown and ancient power closely associated with greed. The series details his interactions with different groups over the years, from each of their different perspectives.
Night was originally the head honcho of the Chicago Spirit, but he saw that the scene where the Spirit had been operating was going to become a lot less open in the future, and left before things went south for the group. He spends the next couple of years wrapping up some loose ends, before going back to where he came from.
This is also an attempt at making a GoI-Format series, as opposed to a Tale Series or SCP series. This isn't really something that has been done before on the site, as far as I can tell. The original intent was that every instalment would be a GoI-Format, but then I had a good idea for a tale to submit to the Halloween contest, and made that the opening.
The works here present an new take on the Groups and characters involved. There is influence from outside works, which are normally linked, but there are some differences. Most notably, the depiction of the Chicago Spectre is decidedly not that of the Third Law canon, and is a new take on the group.
There are two articles set in the world of Black as Night, but not a part of the tale series. They are canon to the stories above, but are not a part of Mr. Night's story.
- Old Family Recipe — A prequel set sometime before Spirit Stories.
- SCP-4901 — An intermission set in between Chicago Revenant and Contract Negotiations.
Nota bene: Black as Night is explictly not in any canon on the site, or involved with any. It may reference other canons and draw on them, but it is entirely standalone from other canons.