-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
218 lines (192 loc) · 6.75 KB
/
Copy pathindex.html
File metadata and controls
218 lines (192 loc) · 6.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Organization Home</title>
<style>
/* Modern reset and base layout */
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
line-height: 1.6;
color: #333;
margin: 0;
padding: 0;
background-color: #f9f9f9;
overflow-x: hidden;
}
/* Fluid liquid motion hero wrapper */
.hero-section {
position: relative;
width: 100%;
height: 50vh;
overflow: hidden; /* Prevents oversized background from causing scrollbars */
display: flex;
align-items: center;
justify-content: center;
}
.hero-background {
position: absolute;
top: 50%;
left: 50%;
width: 150vmax;
height: 150vmax;
margin-top: -75vmax;
margin-left: -75vmax;
/* Smooth conic transition using exact retro colors */
background: conic-gradient(
from 0deg,
#C81928 0deg, /* Red */
#4B508F 90deg, /* Blue */
#28C217 180deg, /* Green */
#D2B41E 270deg, /* Yellow */
#C81928 360deg /* Back to Red */
);
/* Slowed down from 10s to 30s for a calm, ambient feel */
animation: rotateGradient 30s linear infinite;
transform-origin: center center;
filter: blur(40px);
}
@keyframes rotateGradient {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
/* Centered logo container optimized to hide hard logo boundaries */
.logo-container {
position: relative;
z-index: 2;
background: transparent; /* Changed from #031326 to allow full transparency */
padding: 20px 40px;
box-shadow: none; /* Optional: Remove box-shadow if you don't want a card shadow outline */
display: flex;
align-items: center;
justify-content: center;
}
/* Responsive styling for your logo image */
.logo-image {
max-height: 120px;
width: auto;
display: block;
}
/* Bottom Half Content Section */
.content-section {
max-width: 800px;
margin: 0 auto;
padding: 50px 20px;
text-align: center;
}
h2 {
color: #111;
font-size: 2.2rem;
margin-top: 0;
}
p {
font-size: 1.15rem;
color: #555;
max-width: 600px;
margin: 0 auto 30px auto;
}
.cta-button {
display: inline-block;
background-color: #222;
color: #fff;
padding: 14px 28px;
text-decoration: none;
border-radius: 6px;
font-weight: 600;
transition: background-color 0.2s ease;
}
.cta-button:hover {
background-color: #444;
}
/* Container for the lineup */
.console-lineup {
display: flex;
justify-content: center;
align-items: center;
gap: 24px;
flex-wrap: wrap;
margin: 40px auto 20px auto;
}
/* Individual console card (borderless glassmorphism) */
.console-item {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 18px 24px;
min-width: 110px;
border-radius: 12px;
background: rgba(255, 255, 255, 0.6);
backdrop-filter: blur(8px);
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
}
/* Subtle float effect on hover */
.console-item:hover {
transform: translateY(-5px);
background: rgba(255, 255, 255, 0.9);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
/* Console logo sizing */
.console-logo {
height: 40px;
width: auto;
object-fit: contain;
filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
margin-bottom: 8px;
}
/* Label styling */
.console-name {
font-size: 0.85rem;
font-weight: 600;
color: #333;
letter-spacing: 0.5px;
}
</style>
</head>
<body>
<!-- Top Half: Animated Fluid Gradient & Logo -->
<section class="hero-section">
<!-- Dedicated animated element layer -->
<div class="hero-background"></div>
<div class="logo-container">
<img src="https://raw.githubusercontent.com/ExpansionPak/newpaks.github.io/refs/heads/main/271502946%20(1).png" alt="Organization Logo" class="logo-image">
</div>
</section>
<!-- Bottom Half: Clean Content Area -->
<main class="content-section">
<h2>ExpansionPak</h2>
<p>Hello there! Just a bunch of nerds doing what <b>Nintendon't</b>. </p>
<p>We make tools and projects for the: </p>
<div class="console-lineup">
<div class="console-item">
<img src="https://upload.wikimedia.org/wikipedia/en/2/2d/Nintendo_64_%28logo%29.svg?utm_source=en.wikipedia.org&utm_campaign=index&utm_content=original" alt="Nintendo 64" class="console-logo" />
<span class="console-name">Nintendo 64</span>
</div>
<div class="console-item">
<img src="https://upload.wikimedia.org/wikipedia/commons/7/72/Nintendo_GameCube_symbol_logo.svg?utm_source=commons.wikimedia.org&utm_campaign=index&utm_content=original" alt="GameCube" class="console-logo" />
<span class="console-name">GameCube</span>
</div>
<div class="console-item">
<img src="https://upload.wikimedia.org/wikipedia/commons/b/bc/Wii.svg?utm_source=en.wikipedia.org&utm_campaign=index&utm_content=original" alt="Wii" class="console-logo" />
<span class="console-name">Wii</span>
</div>
<div class="console-item">
<img src="https://upload.wikimedia.org/wikipedia/commons/7/7e/WiiU.svg?utm_source=en.wikipedia.org&utm_campaign=index&utm_content=original" alt="Wii U" class="console-logo" />
<span class="console-name">Wii U</span>
</div>
</div>
<section class="projects-section">
<h3>Our Projects</h3>
<div id="github-projects" class="projects-grid">
<p class="loading">Loading projects...</p>
</div>
</section>
<script src="script.js"></script>
</body>
</html>