Delete cute directory

This commit is contained in:
zyqunix 2025-01-20 18:53:42 +01:00 committed by GitHub
parent 318c60271a
commit ab98e6329b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 0 additions and 179 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 92 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 73 KiB

View file

@ -1,59 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Femboy Haven</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>✨ Femboy Haven ✨</h1>
<p>Where cuteness and charm collide 💖</p>
</header>
<nav>
<a href="#about">About</a>
<a href="#gallery">Gallery</a>
<a href="#contact">Contact</a>
</nav>
<main>
<section id="about">
<h2>About Us 💕</h2>
<p>Welcome to your ultimate femboy sanctuary! Here we celebrate self-expression, cuteness, and positivity
with an overdose of pink and sparkles.</p>
</section>
<section id="gallery">
<h2>Gallery 🌸</h2>
<div class="gallery">
<div class="card">
<img src="img/1.jpg" alt="Pink Bliss">
<p>Me and my socks :3 (by kiki_femboy)</p>
</div>
<div class="card">
<img src="img/2.jpg" alt="Soft Vibes">
<p>My cute lingerie :3 (by pocketsora_)</p>
</div>
<div class="card">
<img src="img/3.jpg" alt="Cute Moments">
<p>Cute pajamas :3 (by german_femboy17)</p>
</div>
<div class="card">
<img src="img/4.jpg" alt="Cute Moments">
<p>My makeuppppp (by findfemboys)</p>
</div>
</div>
</section>
<section id="contact">
<h2>Contact Us 💌</h2>
<p>We'd love to hear from you! Send your thoughts, love, or memes to <a
href="mailto:femboy@drugsellers.com">femboy@drugsellers.com</a> :3</p>
</section>
</main>
<footer>
<p>&copy; 2024 Femboy Haven | Made with 💖 and sparkles :3 <a href="#top">Back to Top</a></p>
</footer>
</body>
</html>

View file

@ -1,120 +0,0 @@
body {
background: linear-gradient(to bottom, #ffd6e0, #ffb3c6, #ff8fab);
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
color: #333;
}
header {
background-color: #ff8fab;
text-align: center;
padding: 30px 20px;
}
header h1 {
color: #fff;
font-size: 3rem;
margin: 0;
text-shadow: 2px 2px 5px #f06a91;
}
header p {
color: #ffe6ef;
font-size: 1.2rem;
margin: 10px 0 0;
}
nav {
background-color: #ffb3c6;
display: flex;
justify-content: center;
padding: 10px 0;
}
nav a {
color: #fff;
font-size: 1.1rem;
text-decoration: none;
margin: 0 15px;
transition: transform 0.1s, color 0.3s;
}
nav a:hover {
color: #ffe6ef;
transform: scale(1.1);
}
main {
padding: 20px;
text-align: center;
}
section {
margin: 20px 0;
}
h2 {
font-size: 2rem;
color: #ff6f9c;
}
p {
font-size: 1.1rem;
line-height: 1.6;
color: #555;
}
a {
color: #5f6077;
}
.gallery {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
margin-top: 20px;
}
.card {
background-color: #fff;
border-radius: 12px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
max-width: 200px;
padding: 15px;
text-align: center;
transition: scale 0.1s ease-out;
}
.card:hover {
scale: 1.3;
}
.card img {
max-width: 100%;
border-radius: 10px;
}
.card p {
margin: 10px 0 0;
color: #ff6f9c;
}
footer {
background-color: #ff8fab;
color: #fff;
text-align: center;
padding: 15px;
font-size: 0.9rem;
margin-top: 20px;
}
footer a {
color: #ffcce7;
text-decoration: none;
}
footer a:hover {
color: #fff;
}