-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
97 lines (85 loc) · 1.75 KB
/
Copy pathstyle.css
File metadata and controls
97 lines (85 loc) · 1.75 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
88
89
90
91
92
93
94
95
96
97
*{
background: #94a7ebef;
font-family: "Inter";
font-weight: 400;
font-size: 32px;
line-height: 150%;
overflow-y: hidden;
}
.logo {
padding-top: 10px;
margin-left: 10px;
width: 10%;
}
main{
display: flex;
margin-bottom: 10px;
margin-left: 180px;
}
.text-area {
height: 400px;
border: none;
color: var(--dark-blue-dark-blue-300, #0A3871);
margin-top: 30px;
padding: 2px;
text-transform: lowercase;
}
::placeholder {color: #0a3871;}
.text-area:focus{
outline: none;
}
.mensaje{
height: 630px;
background: white;
background-image: url(imagenes/Muñeco.png);
background-repeat: no-repeat;
background-position: center;
border: none;
border-radius: 32px;
color: #0A3871;
margin-left: 120px;
margin-top: 20px;
padding-left: 20px;
position: fixed;
}
.mensaje:focus{
outline: none;
}
.botones{
display: flex;
margin-top: 18px;
}
.btn-encriptar{
width: 300px;
background: var(--dark-blue-dark-blue-300, #0A3871);
color: var(--white, #FFF);
height: 55px;
border-radius: 24px;
cursor: pointer;
border: 1px solid #0A3871;
}
.btn-desencriptar{
width: 300px;
background: #D8DFE8;
color: var(--dark-blue-dark-blue-300, #0A3871);
height: 55px;
border-radius: 24px;
border: 1px solid var(--dark-blue-dark-blue-300, #0A3871);
cursor: pointer;
margin-left: 10px;
}
.copiar {
width: 300px;
border: 1px solid var(--dark-blue-dark-blue-300, #0A3871);
border-radius: 24px;
color: #0A3871;
cursor: pointer;
height: 55px;
margin-left: 170px;
margin-top: 539px;
position: absolute;
}
.información{
color: var(--gray-gray-400, #495057);
font-size: 12px;
}