first draft

This commit is contained in:
jtbx 2024-03-10 21:12:56 +01:00
parent fe3676ab98
commit cbb964a970
5 changed files with 71 additions and 1 deletions

View file

@ -1,6 +1,6 @@
MIT License MIT License
Copyright (c) [year] [fullname] Copyright (c) 2024 c3cat
Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal

View file

@ -9,3 +9,5 @@ This is a single page website, so just serve the HTML and CSS files.
## License ## License
Website source code is licensed under MIT license, images might have different licenses. Website source code is licensed under MIT license, images might have different licenses.
[Pico CSS](https://picocss.com) is licensed under the MIT License.

28
assets/css/style.css Normal file
View file

@ -0,0 +1,28 @@
body {
font-family: system-ui,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,Helvetica,Arial,"Helvetica Neue",sans-serif;
text-align: center;
}
.container {
max-width: 900px;
margin: 0 auto;
padding: 0 5px;
}
footer {
margin-top: 4rem;
}
img {
width: 100%;
}
.hero-img {
max-width: 500px;
}
p.bigger {
font-size: 1.2rem;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 98 KiB

40
index.html Normal file
View file

@ -0,0 +1,40 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="assets/css/style.css" />
<link rel="me" href="https://chaos.social/@c3cat" />
<title>c3cat</title>
</head>
<body>
<main class="container">
<h1>c3cat &ndash; Cat Ears Operation Center</h1>
<img src="assets/img/c3cat-c3sign-cccamp23.jpg" alt="C3CAT with a cat ear headband around the 'A'" class="hero-img">
<h2>Resources</h2>
<p class="bigger">The "original" cat ear model we used was borrowed from <a href="https://www.printables.com/de/model/35076-cat-ears">Printables</a>.
Since then, some people started to develop an <a href="https://git.hamburg.ccc.de/c3cat/scad">improved and parametrized version</a> with OpenSCAD.</p>
<p class="bigger">See the <a href="https://wiki.hamburg.ccc.de/club:c3cat:start">CCCHH wiki</a> for the latest information on signs, 3D models, etc.</p>
<h2>History</h2>
<p>A few people from Hamburg started to 3D-print and wear cat ear headbands at <a href="https://eh20.easterhegg.eu">EH20</a> which lead to some "can I get one, too" reactions.
They continued at <a href="https://entropia.de/GPN21">GPN21</a> and <a href="https://events.ccc.de/camp/2023/infos/index.html">cccamp23</a> with a spreadsheet-based ordering system.
At camp, three 3D printers were operating more or less non-stop, but weren't enough to fulfill the demand.
</p>
<p>The camp got some more people interested in the topic of printing cat ears and two of them pre-printed a lot before the <a href="https://events.ccc.de/congress/2023/">37c3</a>.
But even 1500 cat ears were sold-out in the first two days.
So demand is high, let's disrupt gender stereotypes!
</p>
</main>
<footer>
<p>
Don't feel pressured to wear cat ears &ndash; you're perfectly fine without them.<br>
And remember: Trans rights are human rights.
</p>
<p>
Find us in the feediverse at <a href="https://chaos.social/@c3cat">c3cat@chaos.social</a>.
</p>
</footer>
</body>
</html>