Day Counter
:root {
--bg: #0e1116;
--panel: #151a22;
--panel-2: #1b2230;
--text: #e6e8ee;
--muted: #9aa4b2;
--accent: #7fd3ff;
--accent-2: #9cff8f;
--danger: #ff6b6b;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
background: linear-gradient(180deg, #0b0e13, #0e1116);
color: var(--text);
line-height: 1.6;
}
a {
color: var(--accent);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.container {
max-width: 1100px;
margin: 0 auto;
padding: 48px 24px 96px;
}
/* Hero */
.hero {
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 40px;
align-items: center;
margin-bottom: 72px;
}
.hero h1 {
font-size: 52px;
line-height: 1.1;
margin: 0 0 16px;
}
.hero p {
font-size: 18px;
color: var(--muted);
max-width: 520px;
}
.badges img {
margin-right: 12px;
margin-top: 16px;
}
.hero-image img {
width: 100%;
border-radius: 20px;
box-shadow: 0 40px 80px rgba(0,0,0,.6);
}
/* Sections */
section {
margin-top: 72px;
}
section h2 {
font-size: 32px;
margin-bottom: 20px;
}
.panel {
background: linear-gradient(180deg, var(--panel), var(--panel-2));
border-radius: 20px;
padding: 28px 32px;
box-shadow: 0 20px 40px rgba(0,0,0,.35);
}
/* Features */
.features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 20px;
}
.feature {
background: rgba(255,255,255,.02);
border-radius: 16px;
padding: 20px;
}
.feature span {
font-size: 28px;
display: block;
margin-bottom: 8px;
}
/* Warning */
.warning {
border-left: 4px solid var(--danger);
background: rgba(255,107,107,.08);
}
/* Showcase */
.showcase img {
width: 100%;
border-radius: 20px;
box-shadow: 0 30px 70px rgba(0,0,0,.5);
}
/* Footer */
footer {
margin-top: 96px;
text-align: center;
color: var(--muted);
font-size: 14px;
}
@media (max-width: 900px) {
.hero {
grid-template-columns: 1fr;
}
.hero h1 {
font-size: 40px;
}
}
<!-- Hero -->
<div class="hero">
<div>
<h1>⏳ Day Counter</h1>
<p>
A minimalistic survival datapack & mod that tracks how many days you have already survived in your Minecraft world.
Built for long-term and hardcore gameplay.
</p>
<div class="badges">
<a href="https://www.curseforge.com/minecraft/data-packs/day-counter" target="_blank">
<img src="https://cf.way2muchnoise.eu/full_1255394_downloads.svg" alt="CurseForge Downloads" />
</a>
<a href="https://modrinth.com/datapack/day-counter-1b7" target="_blank">
<img src="https://img.shields.io/modrinth/dt/XbSc0Kgo?color=00AF5C&label=downloads&logo=modrinth" alt="Modrinth Downloads" />
</a>
<img src="https://cf.way2muchnoise.eu/versions/1255394.svg" alt="Versions" />
</div>
</div>
<div class="hero-image">
<img src="https://media.forgecdn.net/attachments/description/1255394/description_c142a5f0-d484-4ff1-8973-6e79dd1408d9.png" alt="Day Counter Banner" />
</div>
</div>
<!-- About -->
<section>
<h2>About</h2>
<div class="panel">
<p>
<strong>Day Counter</strong> shows the total number of days already played in your world.
I originally created it for my own hardcore survival run because I wanted a clean, immersive way to measure progress
without breaking immersion.
</p>
</div>
</section>
<!-- Features -->
<section>
<h2>Features</h2>
<div class="panel features">
<div class="feature"><span>📅</span>Tracks total played days</div>
<div class="feature"><span>💀</span>Perfect for Hardcore worlds</div>
<div class="feature"><span>⚙️</span>No configuration required</div>
<div class="feature"><span>🪶</span>Lightweight & performance-friendly</div>
</div>
</section>
<!-- Info -->
<section>
<h2>Important Info</h2>
<div class="panel warning">
<p>
For best results, install the datapack <strong>before creating the world</strong>.
The mod version can also be safely added to existing worlds.
</p>
</div>
</section>
<!-- Mod -->
<section>
<h2>Mod Version</h2>
<div class="panel">
<p>
Prefer a full mod instead of a datapack?<br />
➜ <a href="https://www.curseforge.com/minecraft/mc-mods/day-counter-mod" target="_blank">
Day Counter (Fabric / Forge / Quilt / NeoForge)</a>
</p>
</div>
</section>
<!-- Showcase -->
<section class="showcase">
<h2>Showcase</h2>
<img src="https://cdn.modrinth.com/data/cached_images/64834ae7fa6ceaed263628563a074ec49a5b4131_0.webp" alt="Day Counter Showcase" />
</section>
<!-- Footer -->
<footer>
© 2025 <strong>Reewfe</strong> · Licensed under
<a href="https://creativecommons.org/licenses/by-nc/4.0/" target="_blank">CC BY-NC 4.0</a>
<br /><br />
<a href="https://x.com/derreewfe" target="_blank">X</a> ·
<a href="https://bsky.app/profile/reewfe.bsky.social" target="_blank">Bluesky</a> ·
<a href="https://discord.gg/bTVsPRC2Fq" target="_blank">Discord</a>
</footer>