-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapps.html
More file actions
160 lines (148 loc) · 4.91 KB
/
apps.html
File metadata and controls
160 lines (148 loc) · 4.91 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
<!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(274deg, rgb(255, 136, 0), rgb(245, 7, 226)) 0% 0% / 120% 120%;
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;
}
.app-card {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
width: 170px;
height: 200px;
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;
position: relative;
}
.app-card:hover {
transform: scale(1.08) translate(0, -9%);
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);
}
.app-card img {
width: 165px;
height: 165px;
border-radius: 15%;
transition: transform 0.3s ease;
}
.app-card p {
margin: 7px 0 0;
color: white;
font-size: 14px;
font-weight: bold;
transition: font-size 0.4s ease, color 0.5s ease;
}
.app-card:hover p {
font-size: 15px;
}
.search-bar {
text-align: center;
margin: 20px;
}
.search-bar input {
font-size: 18px;
width: 420px;
padding: 10px 15px 10px 10px;
border: 2px solid rgba(51, 51, 51, 0.575);
border-radius: 15px;
outline: none;
color: white;
background-color: rgba(22, 22, 22, 0.637);
text-align: center;
transition: padding-left 0.3s ease, text-align 0.3s ease;
}
.no-app-message {
text-align: center;
font-size: 30px;
color: white;
margin-top: 30px;
}
.badge-new {
position: absolute;
top: 10px;
right: 0px;
background-color: rgba(225, 50, 50, 1);
color: white;
font-size: 16px;
padding: 4px 7px;
border-radius: 10px 0px 0px 10px;
z-index: 1;
}
.badge-fixed {
position: absolute;
top: 10px;
right: 0px;
background-color: rgba(220, 170, 0, 1);
color: white;
font-size: 16px;
padding: 4px 7px;
border-radius: 10px 0px 0px 10px;
z-index: 1;
}
</style>
</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 selected href="/apps.html">Apps</a></div>
<div class="navitem"><a href="/proxys.html">Proxys</a></div>
<div class="navitem"><a href="/extra.html">Extra</a></div>
<div class="navitem"><a href="/settings.html">Settings</a></div>
</div>
</nav>
<br>
<h1>Apps</h1>
<div class="search-bar">
<input id="searchInput" type="text" placeholder="Search for an app..." />
</div>
<div id="appGroups" class="group-container">
<!-- apps load here -->
</div>
<div id="noAppMessage" class="no-app-message" style="display: none;">No App found. ¯\_(0 - o)_/¯</div>
</div>
<script src="assets/data/apps.js"></script>
<script src="assets/js/app-search.js"></script>
<script src="assets/js/ab.js"></script>
</body>
</html>