-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
121 lines (104 loc) · 2.07 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
*{
background: #c1abeb;
font-family: 'Inter';
font-weight: 400px;
font-size: 30px;
line-height: 150%;
overflow-y: hidden;
}
h1{
font-size: 40px;
width: 250px;
height: 50px;
margin-left: 200px;
}
p{
margin-left: 38px;
margin-top: 100px;
font-weight: bold ;
font-size: 25px;
}
.logo{
padding-top: 31px;
margin-left: 38px;
width: 30px;
}
main{
display: flex;
margin-bottom: 10px;
margin-left: 30px;
}
.text-area{
height: 400px;
border: none;
color: #f0f2f3;
font-weight: bold;
margin-top: 30px;
margin-left: 30px;
padding: 2px;
text-transform: lowercase;
}
::placeholder { color: #000000;}
.text-area:focus {
outline: none;
}
.mensaje{
background: rgb(219, 206, 248);
background-image: url("/imagen/Muñeco.png");
background-repeat: no-repeat;
background-position: center;
border: 50px;
border-radius: 32px;
color: #380177;
font-weight: bold;
margin-left: 190px;
margin-top: 25px;
padding-left: 45px;
position: fixed;
}
.mensaje:focus {
outline: none;
}
.botones{
display: flex;
margin-top: 15px;
position: fixed;
}
.btn-encriptar{
background-color: #5913a8;
border: 4px solid #120227;
border-radius: 24px;
color: white;
cursor: pointer;
height: 67px;
width: 328px;
}
.btn-desencriptar {
background: rgb(130, 95, 226);
border: 4px solid #120227;
border-radius: 24px;
color: #fcfdff;
cursor: pointer;
margin-left: 30px;
height: 67px;
width: 328px;
}
.copiar{
background: rgb(140, 82, 194);
border: 4px solid #120227;
border-radius: 24px;
color: #ffffff;
font-size: bold;
cursor: pointer;
margin-left: 216px;
margin-top: 550px;
position: fixed;
height: 67px;
width: 328px;
}
.informacion {
color: #2d3236;
font-size: 18px;
margin-left: 20px;
margin-bottom: 20px;
}