-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
89 lines (80 loc) · 1.46 KB
/
style.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
*{
background: #F3F5FC;
font-family: 'Inter';
font-weight: 400;
font-size: 32px;
line-height: 150%;
}
.logo{
padding-top: 10px;
margin-left: 10px;
width: 10%;
}
main{
display: flex;
margin-bottom: 50px;
margin-left: 80px;
}
.text-area{
border: none;
color: #0A3871;
margin-top: 90px;
text-transform: lowercase;
}
::placeholder{ color: #0A3871}
.text-area:focus {
outline: none;
}
.mensaje{
background: white;
background-image: url("/home/benito/encriptador/imagenes/muneco.png");
background-repeat: no-repeat;
border: none;
border-radius: 24px;
color: #0A3871;
margin-left: 98px;
margin-top: 20px;
padding-left: 20px;
position: fixed;
}
.mensaje:focus {
outline: none;
}
.botones{
display: flex;
margin-top: 18px;
}
.btnDesencriptar{
background: #D8DFE8;
border: 1px solid #0A3871;
border-radius: 24px;
color: #0A3871;
cursor: pointer;
height: 67px;
margin-left: 30px;
width: 328px;
}
.btnEncriptar{
background: #0A3871;
border: 1px solid #0A3871;
border-radius: 24px;
color: white;
cursor: pointer;
height: 67px;
width: 328px;
}
.btnCopiar {
border: 1px solid #0A3871;
border-radius: 24px;
color: #0A3871;
cursor: pointer;
height: 67px;
margin-left: 108px;
margin-top: 402px;
position: absolute;
width: 336px;
}
.informacion {
color: #495057;
font-size: 18px;
}