-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextra.html
More file actions
133 lines (122 loc) · 4.33 KB
/
extra.html
File metadata and controls
133 lines (122 loc) · 4.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dashboard</title>
<link rel="icon" href="/assets/img/Canvas.ico" type="image/png">
<link rel="stylesheet" href="/assets/css/navbar.css">
<style>
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
background: linear-gradient(475deg, rgba(21, 211, 91, 1) 0%, rgba(0, 0, 0, 1) 50%);
background-attachment: fixed;
background-size: 100% 100%;
background-repeat: no-repeat;
min-height: 100vh;
}
h1, h2 {
color: white;
text-align: center;
margin: 10px 0;
}
.button-container {
padding: 15px;
display: flex;
flex-wrap: wrap;
justify-content: center;
margin: 20px auto;
width: 95%;
max-width: 1800px;
gap: 20px; /* Space between cards */
}
.game-card {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
width: 170px;
height: 200px; /* Fixed height to avoid layout shifting */
background-color: rgba(255, 255, 255, 0.2);
border: 3px solid rgba(230, 230, 230, 0.1);
border-radius: 10px;
transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
padding: 10px;
}
.game-card:hover {
transform: scale(1.08) translate(0, -9%); /* Combine scale and translate */
background-color: rgba(200, 200, 200, 0.4);
border: 3px solid rgba(230, 230, 230, 1);
transition: transform 0.2s ease, background-color 0.2s ease;
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4); /* Add shadow on hover */
}
.game-card img {
width: 165px;
height: 165px;
border-radius: 15%;
transition: transform 0.3s ease;
}
.game-card p {
margin: 7px 0 0;
color: white;
font-size: 14px;
font-weight: bold;
transition: font-size 0.4s ease, color 0.5s ease;
}
.iframe-container {
display: flex;
justify-content: center;
margin: 20px auto;
}
iframe {
width: 80%;
height: 500px;
border: 3px solid rgba(255, 255, 255, 0.3);
border-radius: 10px;
background-color: rgba(0, 0, 0, 0.6);
}
</style>
<script>
function openUrl(url) {
window.location.href = url;
}
</script>
</head>
<body>
<div id="content">
<nav>
<div class="logo">
<img src="assets/img/logo.png" alt="Logo" draggable="false" />
<h1>CAP_PRIME</h1>
</div>
<div class="navitems">
<div class="navitem"><a href="/">Home</a></div>
<div class="navitem"><a href="/game.html">Games</a></div>
<div class="navitem"><a href="/apps.html">Apps</a></div>
<div class="navitem"><a href="/proxys.html">Proxys</a></div>
<div class="navitem"><a selected href="/extra.html">Extra</a></div>
<div class="navitem"><a href="/settings.html">Settings</a></div>
</div>
</nav>
<br>
<h1>Extra</h1>
<h2>Partners:</h2>
<div class="button-container">
<div class="game-card" onclick="openUrl('https://bluespace118.vercel.app')">
<img src="" alt="Dont Know what their image is...">
<p>BlueSpace</p>
</div>
<div class="game-card" onclick="openUrl('https://capprime-three.vercel.app')">
<img src="" alt="CAP_PRIME Cloaked">
<p>CAP_PRIME Cloaked</p>
</div>
</div>
<div class="iframe-container">
<iframe src="https://cap-prime-links.vercel.app/" frameborder="0"></iframe>
</div>
</div>
</body>
</html>
<script src="https://cap-oneko-cat.vercel.app/oneko.js"></script>