commit 58debe0251ebab9b3c8541d774e0654c883c56f9 Author: Tristan Smith Date: Mon Dec 16 02:14:39 2024 -0500 engels quote, first push diff --git a/README.MD b/README.MD new file mode 100644 index 0000000..620f0a8 --- /dev/null +++ b/README.MD @@ -0,0 +1,3 @@ +# capitalismkills.net + +Small project website attempting to document the atrocities committed in the name of profits. diff --git a/index.html b/index.html new file mode 100644 index 0000000..cb608ac --- /dev/null +++ b/index.html @@ -0,0 +1,23 @@ + + + + + + capitalism kills + + + +
+
+ Red Star +
+ When one individual inflicts bodily injury upon another such that death results, we call the deed manslaughter; when the assailant knew in advance that the injury would be fatal, we call his deed murder. But when society places hundreds of proletarians in such a position that they inevitably meet a too early and an unnatural death, one which is quite as much a death by violence as that by the sword or bullet; when it deprives thousands of the necessaries of life, places them under conditions in which they cannot live – forces them, through the strong arm of the law, to remain in such conditions until that death ensues which is the inevitable consequence – knows that these thousands of victims must perish, and yet permits these conditions to remain, its deed is murder just as surely as the deed of the single individual; disguised, malicious murder, murder against which none can defend himself, which does not seem what it is, because no man sees the murderer, because the death of the victim seems a natural one, since the offence is more one of omission than of commission. But murder it remains. +
+

- Friedrich Engels

+

+ From: Condition of the Working Class in England, 1845 +

+
+
+ + diff --git a/red_star.png b/red_star.png new file mode 100644 index 0000000..e8da0a7 Binary files /dev/null and b/red_star.png differ diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..edd58d4 --- /dev/null +++ b/styles.css @@ -0,0 +1,71 @@ +html, body { + height: 100%; + margin: 0; + font-family: 'Georgia', serif; + background-color: #121212; + color: #f5f5f5; + position: relative; +} + +.container { + width: 60%; + max-width: 950px; + margin: auto; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + height: 100vh; + text-align: center; + position: relative; + z-index: 1; +} + +.background-image { + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + width: 100%; + height: auto; + opacity: 0.2; + z-index: 0; + pointer-events: none; +} + + +blockquote { + font-size: 1.8rem; + font-style: italic; + margin: 0; + line-height: 1.5; + z-index: 1; +} + +.author { + margin-top: 1.5rem; + font-size: 1.2rem; + font-style: italic; + color: #bbbbbb; + z-index: 1; +} + +.source { + margin-top: 1rem; + font-size: 1rem; + color: #999999; + z-index: 1; +} + +.source a { + color: #f5f5f5; + text-decoration: none; + font-weight: bold; + border-bottom: 2px solid #f5f5f5; + transition: color 0.3s, border-color 0.3s; +} + +.source a:hover { + color: #d1d1d1; + border-color: #d1d1d1; +}