engels quote, first push

This commit is contained in:
Tristan 2024-12-16 02:14:39 -05:00
commit 58debe0251
4 changed files with 97 additions and 0 deletions

3
README.MD Normal file
View file

@ -0,0 +1,3 @@
# capitalismkills.net
Small project website attempting to document the atrocities committed in the name of profits.

23
index.html Normal file
View file

@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>capitalism kills</title>
<link rel="stylesheet" href="styles.css?v=1.1">
</head>
<body>
<main>
<div class="container">
<img class="background-image" src="red_star.png" alt="Red Star">
<blockquote>
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.
</blockquote>
<p class="author">- Friedrich Engels</p>
<p class="source">
From: <a href="https://www.marxists.org/archive/marx/works/1845/condition-working-class/ch07.htm" target="_blank">Condition of the Working Class in England, 1845</a>
</p>
</div>
</main>
</body>
</html>

BIN
red_star.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

71
styles.css Normal file
View file

@ -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;
}