-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbluepanda.html
118 lines (112 loc) · 4.6 KB
/
bluepanda.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Bluepanda</title>
<!-- Favicon for the page title -->
<link rel="icon" type="image/png" href="https://images-ext-1.discordapp.net/external/rHuY0SJRu2p8_Oc2_gK8edjCvgXYYTzciKhz1_cszM8/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/818814991770845216/37baa813ea16c5ffa856bd2db06da67c.png?format=webp&quality=lossless" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap" />
<style>
body {
font-family: 'Roboto', sans-serif;
font-weight: 300; /* Light weight */
font-size: 18px; /* Larger font size */
background-color: #09001f; /* Dark background */
color: #f5f5f5; /* Light text */
margin: 0;
padding: 20px;
}
h1 {
color: #c4c0ff;
}
h2 {
font-family: 'Roboto', sans-serif;
font-weight: 300;
font-size: 17px;
margin: 0;
padding: 20px;
color: #ffffff; /* Change color to match the theme */
}
h3 {
font-family: 'Roboto', sans-serif;
font-weight: 300; /* Light weight */
font-size: 20px; /* Larger font size */
background-color: #09001f; /* Dark background */
color: #f5f5f5; /* Light text */
margin: 0;
padding: 0px;
}
.simple-button {
display: inline-block;
padding: 10px 15px;
font-size: 18px;
color: #ffffff; /* Light purple text */
text-decoration: none;
border-bottom: 2px solid transparent;
transition: color 0.3s ease, border-color 0.3s ease;
}
.simple-button:hover {
color: #ffffff; /* Change text color on hover */
border-bottom: 2px solid #ffffff; /* Underline on hover */
}
.simple-button:active {
color: #ffffff; /* Same color when pressed */
border-bottom: 2px solid #ffffff; /* Underline remains while pressed */
}
.links {
color: #00ccff;
text-decoration: none;
}
a {
color: #93e9ff; /* Match theme color for links */
text-decoration: none;
}
a.underline-on-hover:hover {
text-decoration: underline; /* Underline on hover */
}
footer {
position: fixed; /* Fix position at the bottom */
left: 0;
bottom: 0;
width: 100%; /* Full width */
background-color: rgb(178, 136, 255); /* White background */
color: #000000; /* Purple text color */
text-align: center; /* Center the text */
padding: 0px 0; /* Add some padding */
font-size: 16px; /* Font size */
line-height: 1;
box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.2); /* Add slight shadow for depth */
}
</style>
</head>
<body>
<h1>🐼 Bluepanda</h1>
This page includes all of Bluepanda's stuff, including socials and downloads.<br><br><br>
<h3>Texture Packs</h3><br><br>
<!-- Hyperlink wrapped around the h2 -->
Download: (.zip format 🤐) <a href="https://github.com/AquaCobalt/aquacobalt.github.io/raw/refs/heads/main/Files/PandaFault-V1.zip" download>
<span class="underline-on-hover">PandaFault V1.zip - Bloxd.io Texture pack</span>
</a>
<br><br><br>
<h3>Socials</h3><br><br>
Bluepanda's YouTube:
<a href="https://youtube.com/@bluepandaiscool">
<span class="underline-on-hover">https://youtube.com/@bluepandaiscool</span>
</a>
<br>
Bluepanda's Discord server:
<a href="https://discord.gg/PwGrwFMjeM">
<span class="underline-on-hover">https://discord.gg/PwGrwFMjeM</span>
</a>
<br><br><br>
<a href="https://aquacobalt.github.io/" class="simple-button">Go Back to Homepage</a>
<meta property="og:title" content="AquaCobalt's Website - Bluepanda" />
<meta property="og:description" content="🚧 This website is still in development!" />
<meta property="og:image" content="https://images-ext-1.discordapp.net/external/rHuY0SJRu2p8_Oc2_gK8edjCvgXYYTzciKhz1_cszM8/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/818814991770845216/37baa813ea16c5ffa856bd2db06da67c.png?format=webp&quality=lossless" />
<meta property="og:url" content="https://aquacobalt.github.io/bluepanda" />
<meta property="og:type" content="website" />
</body>
<footer>
<p>© 2024 Methuja Randira. All rights reserved.</p>
</footer>
</html>