-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added a page for my MineTimer project
- Loading branch information
Showing
1 changed file
with
258 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,258 @@ | ||
<html> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Goofert | MineTimer</title> | ||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;900&display=swap" rel="stylesheet"> | ||
<style> | ||
:root { | ||
--navy: #001f3f; | ||
--navy-light: #183153; | ||
--accent: #4a9eff; | ||
} | ||
|
||
* { | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
font-family: 'Inter', sans-serif; | ||
} | ||
|
||
body { | ||
background-color: var(--navy); | ||
color: white; | ||
line-height: 1.6; | ||
} | ||
|
||
.nav-bar { | ||
position: fixed; | ||
top: 0; | ||
left: 0; | ||
width: 100%; | ||
padding: 1rem 2rem; | ||
background: rgba(0, 31, 63, 0.9); | ||
backdrop-filter: blur(10px); | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
z-index: 1000; | ||
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2); | ||
} | ||
|
||
.nav-logo { | ||
font-size: 1.5rem; | ||
font-weight: 900; | ||
letter-spacing: -1px; | ||
background: linear-gradient(45deg, var(--accent), #ffffff); | ||
-webkit-background-clip: text; | ||
-webkit-text-fill-color: transparent; | ||
text-decoration: none; | ||
} | ||
|
||
.nav-links { | ||
display: flex; | ||
gap: 2rem; | ||
} | ||
|
||
.nav-links a { | ||
color: white; | ||
text-decoration: none; | ||
font-weight: 600; | ||
position: relative; | ||
padding: 0.5rem 0; | ||
} | ||
|
||
.nav-links a::after { | ||
content: ''; | ||
position: absolute; | ||
bottom: 0; | ||
left: 0; | ||
width: 0; | ||
height: 2px; | ||
background: var(--accent); | ||
transition: width 0.3s ease; | ||
} | ||
|
||
.nav-links a:hover::after { | ||
width: 100%; | ||
} | ||
|
||
.project-header { | ||
padding: 120px 20px 60px; | ||
text-align: center; | ||
background: var(--navy-light); | ||
} | ||
|
||
.project-title { | ||
font-size: 3rem; | ||
margin-bottom: 1rem; | ||
color: var(--accent); | ||
} | ||
|
||
.project-subtitle { | ||
font-size: 1.2rem; | ||
opacity: 0.8; | ||
max-width: 600px; | ||
margin: 0 auto 2rem; | ||
} | ||
|
||
.project-links { | ||
display: flex; | ||
gap: 1rem; | ||
justify-content: center; | ||
margin-bottom: 2rem; | ||
} | ||
|
||
.project-link { | ||
padding: 0.8rem 1.5rem; | ||
border-radius: 5px; | ||
text-decoration: none; | ||
font-weight: 600; | ||
transition: transform 0.3s ease; | ||
} | ||
|
||
.project-link:hover { | ||
transform: translateY(-3px); | ||
} | ||
|
||
.primary-link { | ||
background: var(--accent); | ||
color: white; | ||
} | ||
|
||
.secondary-link { | ||
background: rgba(255, 255, 255, 0.1); | ||
color: white; | ||
} | ||
|
||
.project-content { | ||
max-width: 1000px; | ||
margin: 0 auto; | ||
padding: 60px 20px; | ||
} | ||
|
||
.content-section { | ||
margin-bottom: 40px; | ||
} | ||
|
||
.section-heading { | ||
font-size: 2rem; | ||
color: var(--accent); | ||
margin-bottom: 1rem; | ||
} | ||
|
||
.feature-grid { | ||
display: grid; | ||
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); | ||
gap: 2rem; | ||
margin: 2rem 0; | ||
} | ||
|
||
.feature-card { | ||
background: rgba(255, 255, 255, 0.05); | ||
padding: 1.5rem; | ||
border-radius: 10px; | ||
transition: transform 0.3s ease; | ||
} | ||
|
||
.feature-card:hover { | ||
transform: translateY(-5px); | ||
} | ||
|
||
.feature-icon { | ||
font-size: 2rem; | ||
margin-bottom: 1rem; | ||
color: var(--accent); | ||
} | ||
|
||
.tech-stack { | ||
display: flex; | ||
flex-wrap: wrap; | ||
gap: 1rem; | ||
margin: 1rem 0; | ||
} | ||
|
||
.tech-badge { | ||
background: rgba(255, 255, 255, 0.1); | ||
padding: 0.5rem 1rem; | ||
border-radius: 20px; | ||
font-size: 0.9rem; | ||
} | ||
|
||
@media (max-width: 768px) { | ||
.project-title { | ||
font-size: 2rem; | ||
} | ||
|
||
.project-links { | ||
flex-direction: column; | ||
padding: 0 20px; | ||
} | ||
|
||
.project-link { | ||
width: 100%; | ||
text-align: center; | ||
} | ||
|
||
.feature-grid { | ||
grid-template-columns: 1fr; | ||
} | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<nav class="nav-bar"> | ||
<a href="#" class="nav-logo">GOOFERT</a> | ||
<div class="nav-links"> | ||
<a href="#">Home</a> | ||
<a href="#projects">Projects</a> | ||
<a href="https://status.goofert.org/">Status</a> | ||
</div> | ||
</nav> | ||
|
||
<header class="project-header"> | ||
<h1 class="project-title">MineTimer</h1> | ||
<p class="project-subtitle">Record your Minecraft playtime with ease</p> | ||
<div class="project-links"> | ||
<a href="https://minetimer.com" class="project-link primary-link">View on GitHub</a> | ||
<a href="https://github.com/goofert/minetimer" class="project-link secondary-link">Direct Download</a> | ||
</div> | ||
</header> | ||
|
||
<main class="project-content"> | ||
<section class="content-section"> | ||
<h2 class="section-heading">About MineTimer</h2> | ||
<p>MineTimer is a simple program that records Minecraft playtime, as there is no native was to do this. It provides a simple ui, easy setup, and it's simple design won't have any performance impacts on the game.</p> | ||
</section> | ||
|
||
<section class="content-section"> | ||
<h2 class="section-heading">Key Features</h2> | ||
<div class="feature-grid"> | ||
<div class="feature-card"> | ||
<div class="feature-icon">✨</div> | ||
<h3>Simple UI</h3> | ||
<p>MineTimers simple and sleek design is built for everyone to use.</p> | ||
</div> | ||
<div class="feature-card"> | ||
<div class="feature-icon">🎮</div> | ||
<h3>Game Integration</h3> | ||
<p>Seamless integration with Minecraft client.</p> | ||
</div> | ||
<div class="feature-card"> | ||
<div class="feature-icon">⚡</div> | ||
<h3>Performance</h3> | ||
<p>Lightweight and optimized for minimal impact.</p> | ||
</div> | ||
</div> | ||
</section> | ||
|
||
<section class="content-section"> | ||
<h2 class="section-heading">Technology Stack</h2> | ||
<div class="tech-stack"> | ||
<span class="tech-badge">Pyhton</span> | ||
<span class="tech-badge">Tkinter</span> | ||
<span class="tech-badge">Pystray</span> | ||
</div> | ||
</section> | ||
</main> | ||
</body> | ||
</html> |