-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
122 lines (111 loc) 路 3.36 KB
/
Copy pathindex.html
File metadata and controls
122 lines (111 loc) 路 3.36 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Logo Web UI Design</title>
<style>
:root {
--bg-gradient: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
--accent-glow: rgba(56, 189, 248, 0.4);
}
* {
box-sizing: border-box;
}
body {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: var(--bg-gradient);
overflow: hidden;
}
.scene {
position: relative;
width: 400px;
height: 400px;
display: flex;
justify-content: center;
align-items: center;
}
/* Ambient glow behind the logo */
.glow {
position: absolute;
width: 300px;
height: 300px;
background: var(--accent-glow);
filter: blur(80px);
border-radius: 50%;
z-index: 0;
animation: pulse 4s ease-in-out infinite;
}
.logo-wrapper {
position: relative;
z-index: 1;
width: 280px;
height: 280px;
display: flex;
justify-content: center;
align-items: center;
}
.base-image {
width: 100%;
height: 100%;
object-fit: contain;
filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}
.icon-container {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 90px;
height: 90px;
display: flex;
justify-content: center;
align-items: center;
color: white;
}
.icon-container svg {
width: 85%;
height: 85%;
stroke-width: 1.8;
filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
}
/* Responsive */
@media (max-width: 480px) {
.scene {
width: 300px;
height: 300px;
}
.logo-wrapper {
width: 220px;
height: 220px;
}
.icon-container {
width: 70px;
height: 70px;
}
}
</style>
</head>
<body>
<div class="scene">
<div class="logo-wrapper">
<img src="emogi-circle-blue.png" alt="Base Image" class="base-image">
<div class="icon-container">
<!-- Icono de Estrella/Brillo (Sparkle) -->
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="m12 3-1.912 5.813a2 2 0 0 1-1.275 1.275L3 12l5.813 1.912a2 2 0 0 1 1.275 1.275L12 21l1.912-5.813a2 2 0 0 1 1.275-1.275L21 12l-5.813-1.912a2 2 0 0 1-1.275-1.275L12 3Z"/>
<path d="M5 3v4"/>
<path d="M19 17v4"/>
<path d="M3 5h4"/>
<path d="M17 19h4"/>
</svg>
</div>
</div>
</div>
</body>
</html>