-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
64 lines (63 loc) · 1.23 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
body{
background: url(Imagenes/FondoWeb\ \(5\).jpg);
}
main{
display: flex;
margin-left: 80px;
margin-bottom: 50px;
}
.Encriptar , .Desencriptar, .CopiarMensaje{
width: 40%;
padding: 15px 0;
font-size: 18px;
font-weight: bold;
color: #0A3871;
background: white;
box-shadow: 10px 10px 30px 15px white;
border: none;
border-radius: 5px;
transition: 1s all;
cursor: pointer;
}
.Encriptar:hover{
background: linear-gradient(white, #888888);
font-weight: bold;
color: #0A3871;
transform: scale(1.2);
}
.Desencriptar:hover{
background: linear-gradient(white, #888888);
font-weight: bold;
color: #0A3871;
transform: scale(1.2);
}
.CopiarMensaje:hover{
background: linear-gradient(white, #888888);
font-weight: bold;
color: #0A3871;
transform: scale(1.2);
}
.IngreseTexto{
font-size: 18px;
font-weight: bold;
color: black;
opacity: 0.5;
}
.MensajeIngresado{
font-size: 18px;
font-weight: bold;
color: black;
opacity: 0.5;
}
.Informacion{
display: inline;
font-size: 18px;
color: white;
}
footer{
text-align: center;
font-size: 18px;
font-weight: bold;
font-style: italic;
color: white;
}