-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaccounts.html
More file actions
184 lines (160 loc) · 3.71 KB
/
accounts.html
File metadata and controls
184 lines (160 loc) · 3.71 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Accounts | Ballcat</title>
<style>
html, body {
margin: 0;
font-family: Arial, sans-serif;
color: white;
}
/* FONDO */
body::before {
content: "";
position: fixed;
inset: 0;
background-image: url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQnA2OlcLFmdr9XOR6auWlEGxqbPBc9icddzDfq1EB2gw&s=10");
background-size: cover;
background-position: center;
filter: saturate(60%);
z-index: -1;
}
/* BOTÓN VOLVER (ARRIBA DEL TÍTULO) */
.back-btn {
position: fixed;
top: 20px;
left: 18px;
z-index: 10;
}
/* BOTÓN VIVO – MÁS LARGO Y MÁS BAJO */
.nav-btn {
display: flex;
align-items: center;
gap: 8px;
background: linear-gradient(145deg, rgba(255,255,255,0.25), rgba(255,255,255,0.1));
border-radius: 12px;
padding: 8px 6px; /* ⬅️ más largo, menos alto */
cursor: pointer;
font-size: 13px;
color: white;
text-decoration: none;
box-shadow:
0 5px 0 rgba(0,0,0,0.45),
0 0 10px rgba(0,200,255,0.35);
animation: pulse 2s infinite ease-in-out;
transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.nav-btn img {
width: 20px;
height: 20px;
}
.nav-btn:hover {
transform: translateY(-2px) scale(1.05);
box-shadow:
0 7px 0 rgba(0,0,0,0.5),
0 0 16px rgba(0,220,255,0.7);
}
.nav-btn:active {
transform: translateY(3px) scale(0.96);
box-shadow:
0 2px 0 rgba(0,0,0,0.55),
0 0 8px rgba(0,200,255,0.4);
}
/* LOGO */
header {
text-align: center;
padding: 80px 20px 20px; /* ⬅️ espacio para el botón arriba */
}
header img {
width: 260px;
max-width: 90%;
}
/* CONTENEDOR */
main {
max-width: 900px;
margin: auto;
background: rgba(0,0,0,0.6);
padding: 25px;
border-radius: 18px;
}
/* CUENTAS */
.account {
background: rgba(255,255,255,0.15);
border-radius: 14px;
padding: 18px 22px;
margin: 16px 0;
display: flex;
justify-content: space-between;
align-items: center;
animation: popIn 0.4s ease;
transition: transform 0.15s ease, background 0.15s ease;
}
.account:hover {
background: rgba(255,255,255,0.28);
transform: scale(1.04);
}
.account-name {
font-size: 18px;
font-weight: bold;
}
.account-info {
font-size: 13px;
opacity: 0.85;
text-align: right;
}
/* ANIMACIONES */
@keyframes popIn {
0% { transform: scale(0.9); opacity: 0; }
100% { transform: scale(1); opacity: 1; }
}
@keyframes pulse {
0% {
box-shadow: 0 5px 0 rgba(0,0,0,0.45),
0 0 10px rgba(0,200,255,0.3);
}
50% {
box-shadow: 0 5px 0 rgba(0,0,0,0.45),
0 0 18px rgba(0,220,255,0.6);
}
100% {
box-shadow: 0 5px 0 rgba(0,0,0,0.45),
0 0 10px rgba(0,200,255,0.3);
}
}
</style>
</head>
<body>
<!-- BOTÓN VOLVER -->
<div class="back-btn">
<a href="index.html" class="nav-btn">
<img src="https://cdn.discordapp.com/attachments/1451134196935426110/1451357966753071211/arrow_left.png?ex=6945e1f0&is=69449070&hm=4d1cb31ff7d443e64b1733ab16e643d52cae6d5fb50561e3c360db0af4abbb41&">
<span>Volver al Dashboard</span>
</a>
</div>
<header>
<img src="https://cdn.discordapp.com/attachments/1451134196935426110/1451358747791196321/logo_-_Accounts.png?ex=6945e2aa&is=6944912a&hm=4101c46ead0ebc9adccabad5aaa53306b802f964ff895856f8b28938d08ec295&">
</header>
<main>
<div class="account">
<div class="account-name">Progresos</div>
<div class="account-info">
ID: 72<br>
Activa: Sí
</div>
</div>
<div class="account">
<div class="account-name">test</div>
<div class="account-info">
ID: 73<br>
Activa: Sí
</div>
</div>
</main>
</body>
<style>html{
color:darkviolet;
font-size:25px;
font-weight:600;
}
</style><script>/*Here write your javascript code*/</script></html>