-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathestilos3.css
101 lines (93 loc) · 1.58 KB
/
estilos3.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
*{
background: purple;
font-family: Georgia;
line-height: 150%;
font-size: 25px;
overflow-y: hidden;
}
.logo {
margin-top: 10px;
}
main {
display: flex;
margin-bottom: 15px;
margin-left: 100px;
}
.texto {
height: 370px;
border: none;
color:blueviolet;
margin-top: 30px;
padding: 2px;
text-transform: lowercase;
}
.texto:focus {
outline: none
}
::placeholder {
color: blueviolet;
}
h6 {
font-size: 15px;
margin: 0;
}
.mensaje {
height: 530px;
background: palevioletred;
background-image: url("Muñeco.png");
background-repeat: no-repeat;
background-position: center;
border: none;
border-radius: 24px;
color: blueviolet;
margin-left: 125px;
margin-top: 2px;
padding-left: 20px;
position: fixed;
}
.mensaje:focus {
outline: none;
}
.botones {
display: flex;
margin-top: 5px;
}
.boton-desencriptar {
background: violet;
border: none;
border-radius: 24px;
color: purple;
cursor: pointer;
height: 63px;
margin-left: 30px;
width: 328px;
}
.boton-encriptar {
background-color: blueviolet;
border: none;
border-radius: 24px;
color: white;
cursor: pointer;
height: 63px;
width: 328px;
}
.boton-copiar {
background: violet;
border: none;
border-radius: 24px;
color: purple;
cursor: pointer;
height: 63px;
margin-left: 120px;
margin-top: 440px;
position: absolute;
width: 310px;
}
footer{
text-align: center;
}
.copyright{
color: black;
font-size: 13px;
margin: 1px;
}