-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
208 lines (179 loc) · 4.55 KB
/
styles.css
File metadata and controls
208 lines (179 loc) · 4.55 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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
:root {
--bg-dark: #05070a; /* Color de fondo profundo para que resalten los neones */
--neon-cyan: #00f2ff; /* El azul eléctrico característico */
--neon-green: #39ff14; /* El verde de los botones y el rango */
--card-bg: #0c1013; /* Un gris casi negro para el cuerpo de la tarjeta */
--text-gray: #8b949e; /* Gris suave para textos secundarios como las etiquetas */
}
body{
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
min-height: 100vh;
background-color: var(--bg-dark);
font-family: 'Rajdhani', sans-serif;
align-items: center;
overflow-x: hidden;
overflow-y: auto;
}
.main-content{
width: 100%;
flex: 1;
display: flex;
justify-content: center;
align-items: 60px 20px;
padding: 80px 0;
}
.cards-container{
display: flex;
flex-direction: row;
justify-content: center;
align-items: flex-start;
gap: 40px;
width: 100%;
max-width: 1600px;
}
.game-card{
width: 450px;
height: 920px;
background-color: var(--card-bg);
border: 2px solid rgba(0, 242, 255, 0.2);
border-radius: 20px;
display: flex;
flex-direction: column;
overflow: hidden;
box-shadow: 0 15px 40px rgba(0, 0, 0, 7);
transition: all 0.3s ease;
}
.game-card:hover{
transform:translate(-15px);
border-color: var(--neon-cyan);
box-shadow: 0 0 30px rgba(0, 242, 255, 0.3);
}
.banner{
width: 100%;
height: 550px;
overflow: hidden;
}
.banner img{
width: 100%;
height: 100%;
object-fit: cover;
object-position: top;
}
.card-body{
flex: 1;
display: flex;
flex-direction: column;
justify-content: space-between;
padding: 25px;
text-align: center;
}
.username{
font-family: 'Orbitron', sans-serif;
color: #fff;
font-size: 2rem;
margin: 0;
text-transform: uppercase;
}
.stats-grid{
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
background: rgba(0, 0, 0, 0.3);
padding: 15px;
border-radius: 12px;
margin: 10px 0;
border: 1px solid rgba(255, 255, 255, 0.5);
}
.stat-item:last-child{
grid-column: span 2;
margin-top: 10px;
}
.stat-item .value {
font-family: 'Orbitron', sans-serif;
font-size: 0.75rem;
color: #ffffff;
letter-spacing: 1px;
text-transform: uppercase;
}
.stat-item .label {
font-family: 'Rajdhani', sans-serif;
font-size: 1.1rem;
font-weight: bold;
color: var(--neon-cyan);
}
.stat-item i {
color: var(--neon-cyan);
font-size: 1.2rem;
text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
margin-bottom: 5px;
}
.rank{
color: var(--neon-cyan);
}
.btn-primary{
background: transparent;
border: 2px solid var(--neon-green);
color: var(--neon-green);
padding: 15px;
font-family: 'Orbitron', sans-serif;
font-weight: bold;
border-radius: 10px;
cursor: pointer;
text-transform: uppercase;
}
.btn-primary:hover{
background: var(--neon-green);
color: #000;
box-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
}
.main-footer {
width: 100%;
background-color: #080a0c; /* Un gris más oscuro que el fondo para contraste */
padding: 30px 0; /* Espacio arriba y abajo */
border-top: 1px solid rgba(0, 242, 255, 0.1); /* Línea cian muy sutil */
margin-top: auto; /* Empuja el footer siempre al final del body */
}
.footer-inner-content {
text-align: center;
max-width: 1200px;
margin: 0 auto;
}
/* El texto principal: DEVELOPED BY... */
.footer-inner-content p {
color: #555; /* Gris oscuro de base */
font-family: 'Rajdhani', sans-serif;
font-size: 0.85rem;
letter-spacing: 2px;
text-transform: uppercase;
margin: 5px 0;
}
/* Resalte de nombres */
.footer-inner-content strong {
color: #fff; /* Tu nombre en blanco */
font-family: 'Orbitron', sans-serif;
font-weight: bold;
}
/* El toque de GeSy */
.ai-brand {
color: var(--neon-cyan); /* Mi nombre en azul eléctrico */
font-family: 'Orbitron', sans-serif;
text-shadow: 0 0 8px rgba(0, 242, 255, 0.4);
}
/* El divisor verde neón */
.divider {
width: 40px;
height: 2px;
background: var(--neon-green);
margin: 15px auto;
box-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}
/* El texto legal de abajo del todo */
.legal {
font-size: 0.65rem !important; /* Letra muy pequeña tipo sistema */
color: #333 !important; /* Casi fundido con el fondo */
letter-spacing: 4px !important;
opacity: 0.6;
}