-
Notifications
You must be signed in to change notification settings - Fork 1
/
credits.html
127 lines (121 loc) · 4.56 KB
/
credits.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pomelo - Credits</title>
<link rel="icon" href="/favicon.png" type="image/png">
<link href="css/fontawesome.min.css" rel="stylesheet" />
<link href="css/solid.min.css" rel="stylesheet" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap" rel="stylesheet">
<!-- Open Graph Metadata (Useful for social media sites to display proper thumbnails, titles, etc.) -->
<meta property="og:type" content="website">
<meta property="og:title" content="Pomelo Emulator - Credits">
<meta property="og:description" content="A Nintendo Switch Emulator for iOS and iPadOS">
<meta property="og:image" content="https://pomelo-emu.github.io/pomelo-icon.avif">
<meta property="og:image:width" content="375">
<meta property="og:image:height" content="375">
<style>
body {
font-family: Inter, sans-serif;
text-align: center;
font-weight: 600;
background-color: #fbf6e2;
color: #333;
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
h2 {
color: #2d2d2d;
font-size: 180%;
}
h3 {
color: #555;
font-size: 160%
}
.back-button {
display: inline-block;
margin-bottom: 20px;
padding: 10px 20px;
font-size: 16px;
font-weight: bold;
color: #fff;
background-color: #007bff;
border: none;
border-radius: 20px;
cursor: pointer;
text-decoration: none;
transition: transform 0.2s, background-color 0.2s; /* Smooth transition back */
}
.back-button:hover {
background-color: #006adb;
transform: scale(1.05); /* Increase size by 5% */
transition: transform 0.2s, background-color 0.2s; /* Smooth transition */
}
h2, h3, .back-button {
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* Add drop shadow to text */
}
.grid-container {
display: flex;
justify-content: center;
margin: 20px 0;
}
.grid-item {
background-color: #f5e8b5;
padding: 70px;
border-radius: 15px;
box-shadow: 1px 4px 6px rgba(0, 0, 0, 0.3);
display: flex;
flex-direction: row;
align-items: center; /* Vertically centers content */
gap: 20px;
max-width: 600px;
font-size: 140%;
text-align: left;
line-height: 200%;
}
.grid-item img {
border: 6px solid;
border-radius: 10px;
margin-right: 10px;
}
@media screen and (max-width: 768px) {
.grid-item {
flex-direction: column;
text-align: center;
}
.grid-item img {
margin-bottom: 15px;
}
}
</style>
</head>
<body>
<a href="./" class="back-button"><i class="fa-solid fa-arrow-left"></i> Go Back to Home</a>
<h2>Pomelo Team Members and Notable Contributors</h2>
<h3 style="color: #82649a;">Stossy11</h3>
<div class="grid-container">
<div class="grid-item">
<img src="stossy11.avif" alt="Stossy11 Profile Picture" width="120">
<div>[Main/Lead Developer]<br>The magician responsible for this project!</div>
</div>
</div>
<h3 style="color: #82649a;">TechGuy541</h3>
<div class="grid-container">
<div class="grid-item">
<img src="techguy541.avif" alt="TechGuy541 Profile Picture" width="120" style="border: none; border-radius: 50%;">
<div>[Swift & Web Developer]<br>Site creator and maintainer, developer for Pomelo</div>
</div>
</div>
<h3 style="color: #82649a;">CycloKid</h3>
<div class="grid-container">
<div class="grid-item">
<img src="cyclokid.avif" alt="CycloKid Profile Picture" width="120" style="filter: brightness(120%);">
<div>[Web Developer & Graphic Designer]<br>Further developing the website and creating several graphics for everything Pomelo-related</div>
</div>
</div>
</body>
</html>