-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathestilo.css
More file actions
88 lines (75 loc) · 1.29 KB
/
estilo.css
File metadata and controls
88 lines (75 loc) · 1.29 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
body
{
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
background-color: #ffffff;
background-image: url('fondo.jpg');
color:#ffffff;
}
header, main, footer
{
text-align: center;
width: 90%;
max-width: 800px;
color:#ffffff;
}
textarea, button, .mensaje-texto, .tarjeta-contenedor
{
background-color: #f0e398;
border: 1px solid #0044ff;
padding: 10px;
margin: 10px 0;
border-radius: 5px;
}
button:hover
{
background-color: #005BBB;
color: #ffffff;
transition: background-color 0.5s, color 0.5s;
}
button
{
cursor: pointer;
transition: background-color 0.5s, color 0.5s;
}
main
{
display: flex;
flex-direction: row;
justify-content: center;
align-items: flex-start;
flex-wrap: wrap;
gap: 20px;
width: 100%;
}
.encriptar, .tarjeta-salida
{
flex-basis: 45%;
max-width: 45%;
}
@media (max-width: 768px)
{
main
{
flex-direction: column;
}
.encriptar, .tarjeta-salida
{
flex-basis: 100%;
max-width: 100%;
}
}
footer
{
position: absolute;
bottom: 0;
width: 100%;
text-align: center;
padding: 20px 0;
color: #ffffff;
}