-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
98 lines (85 loc) · 1.43 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
*{
background: #F3F5FC;
font-family: 'Inter';
font-weight: 400;
font-size: 32px;
line-height: 150%;
margin: auto;
}
.logo{
padding-top:10px;
margin-left: 10px;
width:4%;
}
#encriptar-desencriptar{
padding: 10px;
margin-left:10px;
font-size: medium;
block-size: auto;
}
main{
display: flex;
margin-bottom:50px;
margin-left: 80px;
}
#texto-original{
border: none;
color:#0A3871;
margin-top: 90px;
text-transform: lowercase;
}
::placeholder{color:#0A3871;}
#texto-original:focus{
outline:none;
}
#texto-resultante{
background: white;
background-image: url("Imagenes/Buscando.png");
background-repeat: no-repeat;
border: none;
border-radius: 24px;
color: #0A3871;
margin-left: 98px;
margin-top: 20px;
padding-left: 20px;
}
#texto-resultante:focus{
outline: none;
}
.hide-background{
background: image:none;
}
.botonEncripcion{
display: flex;
margin-top:18px;
}
#encriptar-desencriptar-btn{
font-size: medium;
background:#D8DFE8;
border: 1px solid #0A3871;
border-radius: 24px;
color: #0A3871;
cursor: pointer;
height: 57px;
margin-left: 30px;
width: 228px;
}
.información{
color:#495057;
font-size:13px;
}
.botonCopy{
display: flex;
margin-top:18px;
}
#copiar-resultado-btn{
font-size:medium;
background:#0A3871;
border: 1px solid #0A3871;
border-radius: 24px;
color: #D8DFE8;
cursor: pointer;
height: 57px;
margin-left: 30px;
width: 228px;
}