-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
139 lines (124 loc) · 2.61 KB
/
styles.css
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
.container {
max-width: 800px;
margin: 0 auto;
text-align: center;
}
.section {
margin: 50px 0;
}
.section h2 {
margin-bottom: 20px;
}
.boton-generar {
background-color: #4CAF50;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s;
}
.boton-generar:hover {
background-color: #3e8e41;
}
.boton-copiar {
background-color: #008CBA;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s;
}
.boton-copiar:hover {
background-color: #006d87;
}
input[type=text] {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
border: 2px solid #ccc;
border-radius: 4px;
background-color: #f8f8f8;
font-size: 16px
}
/* Estilo de la línea animada */
.linea-animada {
height: 2px;
border: none;
background-color: #ccc;
background-image: linear-gradient(90deg, #ccc, #4CAF50, #ccc);
background-size: 200%;
animation: linea 3s infinite;
}
@keyframes linea {
0% {
background-position: 0%;
}
50% {
background-position: 100%;
}
100% {
background-position: 0%;
}
}
#mensaje {
color: #ff6961;
/*Colorrojosuave*/font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
animation: parpadeo 3s ease-in-out 1;
}
@keyframes parpadeo {
0% {
opacity: 1; /* Comienza con opacidad al 100% */
}
50% {
opacity: 0; /* Opacidad al 0% en la mitad de la animación */
}
100% {
opacity: 1; /* Termina con opacidad al 100% */
}
}
#mensajeVISA {
color: #ff6961;
/*Colorrojosuave*/font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
animation: parpadeo 3s ease-in-out 1;
}
@keyframes parpadeo {
0% {
opacity: 1; /* Comienza con opacidad al 100% */
}
50% {
opacity: 0; /* Opacidad al 0% en la mitad de la animación */
}
100% {
opacity: 1; /* Termina con opacidad al 100% */
}
}
#mensajeMASTER {
color: #ff6961;
/*Colorrojosuave*/font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
animation: parpadeo 3s ease-in-out 1;
}
@keyframes parpadeo {
0% {
opacity: 1; /* Comienza con opacidad al 100% */
}
50% {
opacity: 0; /* Opacidad al 0% en la mitad de la animación */
}
100% {
opacity: 1; /* Termina con opacidad al 100% */
}
}
#numero-passport {
text-align: center;
}
#numero-visa {
text-align: center;
}
#numero-mastercard {
text-align: center;
}