Skip to content

Commit e2440c8

Browse files
committed
front improvements
1 parent e8a3d7b commit e2440c8

File tree

7 files changed

+670
-384
lines changed

7 files changed

+670
-384
lines changed
Lines changed: 60 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,65 @@
11
/* Estilo del mensaje y confeti que se mueve hacia arriba */
22
.animated-message {
3-
transition: opacity 1s ease-out, transform 4s ease-out;
4-
}
5-
6-
.animated-message.fade-out {
3+
transition: opacity 1s ease-out, transform 4s ease-out;
4+
}
5+
6+
.animated-message.fade-out {
7+
opacity: 0;
8+
transform: translateY(-100%); /* Mueve el contenido hacia arriba */
9+
}
10+
11+
/* Herramientas avanzadas */
12+
.advanced-tools-container {
13+
position: relative;
14+
top: 0;
15+
animation: slideUp 3s forwards;
16+
}
17+
18+
/* Animación para que las herramientas avanzadas suban */
19+
@keyframes slideUp {
20+
0% {
21+
transform: translateY(100%);
722
opacity: 0;
8-
transform: translateY(-100%); /* Mueve el contenido hacia arriba */
9-
}
10-
11-
/* Herramientas avanzadas */
12-
.advanced-tools-container {
13-
position: relative;
14-
top: 0;
15-
animation: slideUp 3s forwards;
1623
}
17-
18-
/* Animación para que las herramientas avanzadas suban */
19-
@keyframes slideUp {
20-
0% {
21-
transform: translateY(100%);
22-
opacity: 0;
23-
}
24-
100% {
25-
transform: translateY(0);
26-
opacity: 1;
27-
}
24+
100% {
25+
transform: translateY(0);
26+
opacity: 1;
2827
}
29-
28+
}
29+
30+
.colorScale {
31+
width: 72px;
32+
height: 72px;
33+
}
34+
35+
.color-list {
36+
display: flex;
37+
flex-direction: column;
38+
background: white;
39+
border-radius: 16px;
40+
padding: 24px;
41+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
42+
}
43+
44+
.preview-section {
45+
flex-grow: 1;
46+
}
47+
.preview-card {
48+
width: 384px;
49+
background: white;
50+
border-radius: 24px;
51+
overflow: hidden;
52+
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
53+
}
54+
.preview-header {
55+
padding: 24px;
56+
color: white;
57+
}
58+
.preview-header-top {
59+
display: flex;
60+
justify-content: space-between;
61+
margin-bottom: 16px;
62+
}
63+
.preview-content {
64+
padding: 24px;
65+
}

0 commit comments

Comments
 (0)