mirror of
https://github.com/nixietab/picodulce.git
synced 2025-04-03 15:08:58 +01:00
initial pages commit
This commit is contained in:
commit
dbc5d80ae8
155
index.html
Normal file
155
index.html
Normal file
@ -0,0 +1,155 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Picodulce Launcher - Simple FOSS Minecraft Launcher</title>
|
||||
<link rel="stylesheet" href="styles.css">
|
||||
<link rel="icon" href="https://github.com/nixietab/picodulce/assets/75538775/36fee78f-fb46-400c-8b14-dda5ec6191ef" type="image/png">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
|
||||
<script>
|
||||
document.addEventListener('DOMContentLoaded', (event) => {
|
||||
document.querySelectorAll('.step h3').forEach(header => {
|
||||
header.addEventListener('click', () => {
|
||||
const content = header.nextElementSibling;
|
||||
if (content.style.display === 'none' || content.style.display === '') {
|
||||
content.style.display = 'block';
|
||||
content.classList.add('unfold');
|
||||
} else {
|
||||
content.style.display = 'none';
|
||||
content.classList.remove('unfold');
|
||||
}
|
||||
header.querySelector('i').classList.toggle('rotate');
|
||||
});
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<nav class="navbar">
|
||||
<div class="nav-brand">
|
||||
<img src="https://github.com/nixietab/picodulce/assets/75538775/36fee78f-fb46-400c-8b14-dda5ec6191ef" alt="Picodulce Logo" class="logo">
|
||||
<span class="project-name">Picodulce</span>
|
||||
</div>
|
||||
<div class="nav-links">
|
||||
<a href="#features">Features</a>
|
||||
<a href="#installation">Installation</a>
|
||||
<a href="https://github.com/nixietab/picodulce-themes">Themes</a>
|
||||
<a href="https://github.com/nixietab/picodulce" class="github-link">
|
||||
<i class="fab fa-github"></i> GitHub
|
||||
</a>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<header id="home" class="hero">
|
||||
<div class="hero-content">
|
||||
<h1>Picodulce Launcher</h1>
|
||||
<p class="hero-subtitle">The simple FOSS launcher you've been looking for</p>
|
||||
<div class="stats">
|
||||
</div>
|
||||
<div class="cta-buttons">
|
||||
<a href="https://github.com/nixietab/picodulce/releases/latest" class="cta-button primary">Download</a>
|
||||
<a href="#installation" class="cta-button secondary">Installation Guide</a>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
<section id="features" class="features">
|
||||
<h2>Features</h2>
|
||||
<div class="feature-grid">
|
||||
<div class="feature-card">
|
||||
<i class="fas fa-gamepad"></i>
|
||||
<h3>Version Management</h3>
|
||||
<p>Download and launch all available game versions, from the latest updates to older versions.</p>
|
||||
</div>
|
||||
<div class="feature-card">
|
||||
<i class="fas fa-users"></i>
|
||||
<h3>Online & Offline Support</h3>
|
||||
<p>Play with or without Microsoft connection - enjoy your game in both offline and online modes.</p>
|
||||
</div>
|
||||
<div class="feature-card">
|
||||
<i class="fas fa-puzzle-piece"></i>
|
||||
<h3>Mod Manager</h3>
|
||||
<p>Built-in Marroc Mod Manager for effortless mod and texturepack management.</p>
|
||||
</div>
|
||||
<div class="feature-card">
|
||||
<i class="fas fa-paint-brush"></i>
|
||||
<h3>Custom Themes</h3>
|
||||
<p>Create and apply your own personalized themes with our theming system.</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section id="installation" class="installation">
|
||||
<h2>Installation</h2>
|
||||
<div class="installation-steps">
|
||||
<div class="step windows">
|
||||
<h3><i class="fas fa-angle-down"></i> <i class="fab fa-windows"></i> Windows</h3>
|
||||
<div style="display: none;">
|
||||
<p>Download and run the installer from our latest release:</p>
|
||||
<a href="https://github.com/nixietab/picodulce/releases/latest" class="install-button">Download Installer</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="step arch">
|
||||
<h3><i class="fas fa-angle-down"></i> <i class="fab fa-linux"></i> Arch Linux</h3>
|
||||
<div style="display: none;">
|
||||
<p>Install from AUR:</p>
|
||||
<pre><code>yay -S picodulce</code></pre>
|
||||
<p>Or manually:</p>
|
||||
<pre><code>git clone https://aur.archlinux.org/picodulce.git
|
||||
cd picodulce
|
||||
makepkg -si</code></pre>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="step other">
|
||||
<h3><i class="fas fa-angle-down"></i> <i class="fas fa-code"></i> Any OS</h3>
|
||||
<div style="display: none;">
|
||||
<pre><code># 1. Clone the repository
|
||||
git clone https://github.com/nixietab/picodulce
|
||||
|
||||
# 2. Create virtual environment
|
||||
python -m venv venv
|
||||
|
||||
# 3. Activate virtual environment
|
||||
# Linux/Mac:
|
||||
source venv/bin/activate
|
||||
# Windows:
|
||||
.\\venv\\Scripts\\activate
|
||||
|
||||
# 4. Install requirements
|
||||
pip install -r requirements.txt
|
||||
|
||||
# 5. Run the launcher
|
||||
python picodulce.py</code></pre>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<div class="footer-content">
|
||||
<div class="footer-section">
|
||||
<h4>Resources</h4>
|
||||
<a href="https://github.com/nixietab/picodulce-themes"><i class="fas fa-palette"></i> Themes Repository</a>
|
||||
<a href="https://github.com/nixietab/marroc"><i class="fas fa-cube"></i> Marroc Mod Manager</a>
|
||||
</div>
|
||||
<div class="footer-section">
|
||||
<h4>Community</h4>
|
||||
<a href="https://github.com/nixietab/picodulce/issues"><i class="fas fa-bug"></i> Report Issues</a>
|
||||
<a href="https://github.com/nixietab/picodulce/pulls"><i class="fas fa-code-branch"></i> Contribute</a>
|
||||
</div>
|
||||
<div class="footer-section">
|
||||
<h4>About</h4>
|
||||
<p class="about-text">Picodulce, named after a popular Argentinian candy, is a feature-rich Qt5-based Minecraft launcher providing a seamless gaming experience.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer-bottom">
|
||||
<p>© 2025 Picodulce Launcher. Licensed under GNU General Public License v2.0.</p>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
BIN
minetest.png
Normal file
BIN
minetest.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.2 MiB |
341
styles.css
Normal file
341
styles.css
Normal file
@ -0,0 +1,341 @@
|
||||
:root {
|
||||
--primary-color: #111314;
|
||||
--secondary-color: #4bb679;
|
||||
--accent-color: #4bb679;
|
||||
--background-color: #141d26;
|
||||
--text-color: #ecf0f1;
|
||||
--card-background: #0f1214;
|
||||
--feature-hover: #4bb679;
|
||||
}
|
||||
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
||||
line-height: 1.6;
|
||||
color: var(--text-color);
|
||||
background-color: var(--background-color);
|
||||
}
|
||||
|
||||
/* Navbar Styles */
|
||||
.navbar {
|
||||
background-color: var(--primary-color);
|
||||
padding: 0.8rem 2rem;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
top: 0;
|
||||
z-index: 1000;
|
||||
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
|
||||
}
|
||||
|
||||
.nav-brand {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.logo {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
}
|
||||
|
||||
.project-name {
|
||||
color: white;
|
||||
font-size: 1.3rem;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.nav-links {
|
||||
display: flex;
|
||||
gap: 2rem;
|
||||
}
|
||||
|
||||
.nav-links a {
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
transition: color 0.3s ease;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.nav-links a:hover {
|
||||
color: var(--secondary-color);
|
||||
}
|
||||
|
||||
/* Hero Section */
|
||||
.hero {
|
||||
position: relative;
|
||||
background: linear-gradient(rgba(17, 19, 20, 0.1), rgba(17, 19, 20, 0.9)),
|
||||
url('minetest.png') center/cover;
|
||||
height: 100vh;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
color: white;
|
||||
padding: 2rem;
|
||||
margin-top: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.hero-content {
|
||||
max-width: 800px;
|
||||
}
|
||||
|
||||
.hero-content h1 {
|
||||
font-size: 4rem;
|
||||
margin-bottom: 1rem;
|
||||
text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
|
||||
}
|
||||
|
||||
.hero-subtitle {
|
||||
font-size: 1.5rem;
|
||||
margin-bottom: 2rem;
|
||||
opacity: 0.9;
|
||||
}
|
||||
|
||||
.stats {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 2rem;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
.stats span {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.cta-buttons {
|
||||
display: flex;
|
||||
gap: 1rem;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.cta-button {
|
||||
padding: 1rem 2rem;
|
||||
border-radius: 5px;
|
||||
text-decoration: none;
|
||||
font-weight: bold;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.cta-button:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
|
||||
}
|
||||
|
||||
.primary {
|
||||
background-color: var(--secondary-color);
|
||||
color: white;
|
||||
}
|
||||
|
||||
.secondary {
|
||||
background-color: transparent;
|
||||
border: 2px solid white;
|
||||
color: white;
|
||||
}
|
||||
|
||||
/* Features Section */
|
||||
.features {
|
||||
padding: 5rem 2rem;
|
||||
background-color: var(--card-background);
|
||||
}
|
||||
|
||||
.features h2 {
|
||||
text-align: center;
|
||||
margin-bottom: 3rem;
|
||||
font-size: 2.5rem;
|
||||
color: var(--text-color);
|
||||
}
|
||||
|
||||
.feature-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
||||
gap: 2rem;
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.feature-card {
|
||||
padding: 2rem;
|
||||
text-align: center;
|
||||
background-color: var(--background-color);
|
||||
border-radius: 10px;
|
||||
transition: all 0.3s ease;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.feature-card:hover {
|
||||
transform: translateY(-5px);
|
||||
background-color: var(--feature-hover);
|
||||
color: white;
|
||||
}
|
||||
|
||||
.feature-card:hover i {
|
||||
color: white;
|
||||
}
|
||||
|
||||
.feature-card i {
|
||||
font-size: 2.5rem;
|
||||
color: var(--secondary-color);
|
||||
margin-bottom: 1rem;
|
||||
transition: color 0.3s ease;
|
||||
}
|
||||
|
||||
/* Installation Section */
|
||||
.installation {
|
||||
padding: 5rem 2rem;
|
||||
background-color: var(--background-color);
|
||||
}
|
||||
|
||||
.installation h2 {
|
||||
text-align: center;
|
||||
margin-bottom: 3rem;
|
||||
font-size: 2.5rem;
|
||||
color: var(--text-color);
|
||||
}
|
||||
|
||||
.installation-steps {
|
||||
max-width: 800px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.step {
|
||||
background-color: var(--card-background);
|
||||
padding: 2rem;
|
||||
margin-bottom: 2rem;
|
||||
border-radius: 10px;
|
||||
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
|
||||
}
|
||||
|
||||
.step h3 {
|
||||
color: var(--text-color);
|
||||
margin-bottom: 1rem;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.step h3 i.fas.fa-angle-down {
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
|
||||
.step h3 i.fas.fa-angle-down.rotate {
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
|
||||
.step div {
|
||||
display: none;
|
||||
overflow: hidden;
|
||||
transition: max-height 0.5s ease, opacity 0.5s ease;
|
||||
}
|
||||
|
||||
.step div.unfold {
|
||||
display: block;
|
||||
max-height: 1000px;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.install-button {
|
||||
display: inline-block;
|
||||
padding: 0.8rem 1.5rem;
|
||||
background-color: var(--secondary-color);
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
border-radius: 5px;
|
||||
margin-top: 1rem;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.install-button:hover {
|
||||
background-color: var(--feature-hover);
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
pre {
|
||||
background-color: #1f2a35;
|
||||
padding: 1rem;
|
||||
border-radius: 5px;
|
||||
overflow-x: auto;
|
||||
margin: 1rem 0;
|
||||
border: 1px solid #141d26;
|
||||
}
|
||||
|
||||
code {
|
||||
font-family: 'Consolas', 'Monaco', monospace;
|
||||
font-size: 0.9rem;
|
||||
color: #ecf0f1;
|
||||
}
|
||||
|
||||
/* Footer Styles */
|
||||
footer {
|
||||
background-color: var(--primary-color);
|
||||
color: white;
|
||||
padding: 4rem 2rem 2rem;
|
||||
}
|
||||
|
||||
.footer-content {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
||||
gap: 2rem;
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.footer-section h4 {
|
||||
margin-bottom: 1rem;
|
||||
color: var (--secondary-color);
|
||||
}
|
||||
|
||||
.footer-section a {
|
||||
display: block;
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
margin-bottom: 0.5rem;
|
||||
opacity: 0.8;
|
||||
transition: opacity 0.3s ease;
|
||||
}
|
||||
|
||||
.footer-section a i {
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
|
||||
.footer-section a:hover {
|
||||
opacity: 1;
|
||||
color: var(--secondary-color);
|
||||
}
|
||||
|
||||
.about-text {
|
||||
opacity: 0.8;
|
||||
font-size: 0.9rem;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
.footer-bottom {
|
||||
text-align: center;
|
||||
margin-top: 3rem;
|
||||
padding-top: 2rem;
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
||||
opacity: 0.8;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
/* Responsive Design */
|
||||
@media (max-width: 768px) {
|
||||
.nav-links {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.hero-content h1 {
|
||||
font-size: 3rem;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user