-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
128 lines (108 loc) · 1.95 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
122
123
124
125
126
127
128
* {
background: #E9E9E9;
font-family: "Inter";
font-weight: 400;
font-size: 32px;
line-height: 150%;
overflow-y: hidden;
}
.titulo{
text-align: center;
width: 940px;
margin: 0 auto;
font-size: 1em;
margin: 0 auto;
font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-style: cursive;
text-shadow: 20px 10px 7px fuchsia
}
.logo {
padding-top: 10px;
margin-left: 10px;
width: 10%;
}
main {
display: flex;
margin-bottom: 10px;
margin-left: 180px;
}
.text-area {
height: 250px;
color: #000000;
border-radius: 5%;
margin-top: 20px;
text-transform: lowercase;
box-shadow: 6px 20px 10px black;
}
::placeholder {
color: #0a3871;
}
.text-area:focus {
color: #000000;
}
.mensaje {
background: #caafb8;
background-image: url("imagenes/Muñeco.png");
background-repeat: no-repeat;
border-radius: 24px;
color: #0a3871;
margin-left: 50px;
margin-top: 20px;
padding-left: 15px;
position: fixed;
box-shadow: 6px 20px 10px black;
}
.mensaje focus {
outline: none;
}
.botones {
display: flex;
margin-top: 18px;
}
.btn-desencriptar {
background: #d8dfe8;
border: 1px solid #0a3871;
border-radius: 24px;
color: #0a3871;
cursor: pointer;
height: 67px;
margin-left: 30px;
width: 328px;
}
.btn-encriptar {
background-color: #0a3871;
border: 1px solid #0a3871;
border-radius: 24px;
color: white;
cursor: pointer;
height: 67px;
width: 328px;
}
.copiar {
border: 1px solid #0a3871;
border-radius: 24px;
color: #0a3871;
cursor: pointer;
height: 67px;
margin-left: 70px;
margin-top: 402px;
position: absolute;
width: 336px;
}
.informacion {
color: #495057;
font-size: 18px;
}
.copyright{
text-align: center;
color: #000000;
font-size: 13px;
margin: 20px;
font-style: italic;
}
.responsable{
text-align: center;
margin-top: 10px;
font-size: 13px;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}