Skip to content

Commit

Permalink
Update Site
Browse files Browse the repository at this point in the history
  • Loading branch information
stossy11 committed Sep 19, 2024
1 parent d68c1a9 commit f5a1ecf
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 116 deletions.
30 changes: 13 additions & 17 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,31 +12,30 @@
<!-- Header -->
<header>
<nav>
<div class="button">
<h1>Pomelo Emu</h1>

</div>
<h1>Pomelo Emu</h1>
</nav>
</header>

<!-- Hero Section -->
<section id="home" class="button">
<section id="home" class="hero-section">
<div class="hero-content">
<h2>Welcome to Pomelo Emu</h2>
<p>A Nintendo Switch Emulator.</p>
<a href="https://github.com/Pomelo-Emu/Pomelo/releases/download/1.6/Pomelo.ipa" class="button-85" role="button">Download</a>
<a href="https://pomelo-emu.github.io/working-games.html" class="button-85" role="button">Working Games</a>
<a href="https://github.com/Pomelo-Emu/Pomelo" class="button-85" role="button">Github</a>
<div class="button-group">
<a href="https://github.com/Pomelo-Emu/Pomelo/releases/download/1.6/Pomelo.ipa" class="button-85" role="button">Download</a>
<a href="https://pomelo-emu.github.io/working-games.html" class="button-85" role="button">Working Games</a>
<a href="https://github.com/Pomelo-Emu/Pomelo" class="button-85" role="button">Github</a>
</div>
</div>
</section>

<!-- Features Section -->
<section id="features">
<section id="features" class="features-section">
<div class="container">
<h2>Features</h2>
<div class="feature-grid">
<div class="feature-item">
<h3>Compatibilty</h3>
<h3>Compatibility</h3>
<p>We try and support as many devices as we can.</p>
</div>
<div class="feature-item">
Expand All @@ -45,27 +44,24 @@ <h3>Local Multiplayer</h3>
</div>
<div class="feature-item">
<h3>Trollstore</h3>
<p>Pomelo is compatible with Trollstore 2 for iOS 17.0/p>
<p>Pomelo is compatible with Trollstore 2 for iOS 17.0.</p>
</div>
<div class="feature-item">
<h3>And More</h3>
<p>We try to be open and talk with the community and add reqested features.</p>
<p>We try to be open and talk with the community and add requested features.</p>
</div>

</div>
</div>
</section>

<!-- About Section -->
<section id="about">
<section id="about" class="about-section">
<div class="container">
<h2>About Us</h2>
<p>We are Stossy11 and Tech Guy. We try to provide the best NX emulation that we can.</p>
<p>We are Stossy11 and Tech Guy. We aim to provide the best NX emulation possible.</p>
</div>
</section>



<!-- Footer -->
<footer>
<div class="container">
Expand Down
143 changes: 44 additions & 99 deletions styles.css
Original file line number Diff line number Diff line change
@@ -1,124 +1,69 @@
/* styles.css */
body {
font-family: Arial, sans-serif;
text-align: center;
background-image: url('background.png'); /* Replace with your image path */
background-size: cover; /* Ensures the image covers the entire background */
background-position: contain; /* Centers the image both horizontally and vertically */
background-repeat: no-repeat; /* Prevents the image from repeating */
background-color: #000; /* Fallback color in case image doesn't cover the entire screen */
margin: 0;
padding: 0;
color: #fff; /* Adjust text color for contrast */
font-family: 'Roboto', sans-serif;
text-align: center;
background-color: #1a1a1a;
color: #fff;
margin: 0;
padding: 0;
}

.content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: rgba(0, 0, 0, 0.5); /* Add transparency to make the text more readable */
padding: 20px;
border-radius: 10px;
}

h3 {
color: #bada55; /* Adjusted color for better visibility */
header {
background-color: #333;
padding: 20px 0;
}

h1 {
font-size: 2.5em;
color: #4169e1;
color: #4169e1;
margin: 0;
}

p {
color: #ddd;
.hero-section {
padding: 50px 20px;
background: linear-gradient(135deg, #000, #444);
}

a {
color: #222222;
.hero-content {
max-width: 800px;
margin: auto;
}

.buttons {
margin-top: 20px;
.button-group {
margin-top: 20px;
}

.button {
display: inline-block;
padding: 10px 20px;
margin: 5px;
border-radius: 25px;
text-decoration: none;
font-size: 1em;
color: white;
transition: background-color 0.3s ease;
.features-section, .about-section {
padding: 50px 20px;
background-color: #222;
}

/* CSS */
.button-85 {
padding: 0.6em 2em;
border: none;
outline: none;
color: rgb(255, 255, 255);
background: #111;
cursor: pointer;
position: relative;
z-index: 0;
border-radius: 10px;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
h2 {
margin-bottom: 20px;
color: #bada55;
}

.button-85:before {
content: "";
background: linear-gradient(
45deg,
#ff0000,
#ff7300,
#fffb00,
#48ff00,
#00ffd5,
#002bff,
#7a00ff,
#ff00c8,
#ff0000
);
position: absolute;
top: -2px;
left: -2px;
background-size: 400%;
z-index: -1;
filter: blur(5px);
-webkit-filter: blur(5px);
width: calc(100% + 4px);
height: calc(100% + 4px);
animation: glowing-button-85 20s linear infinite;
transition: opacity 0.3s ease-in-out;
border-radius: 10px;
.feature-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 20px;
}

@keyframes glowing-button-85 {
0% {
background-position: 0 0;
}
50% {
background-position: 400% 0;
}
100% {
background-position: 0 0;
}
.feature-item {
background-color: #333;
padding: 20px;
border-radius: 10px;
}

.button-85:after {
z-index: -1;
content: "";
position: absolute;
width: 100%;
height: 100%;
background: #222;
left: 0;
top: 0;
.button-85 {
padding: 0.6em 2em;
border: none;
color: #fff;
background: #4169e1;
border-radius: 10px;
cursor: pointer;
text-decoration: none;
transition: background-color 0.3s ease;
}

.button-85:hover {
background: #1e90ff;
}

0 comments on commit f5a1ecf

Please sign in to comment.