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