-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
300 lines (263 loc) · 5.65 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
*{
background-color: #040c2c;
font-family: 'Tai Heritage Pro', serif;
font-weight: 400;
font-size: 32px;
line-height: 150%;
color: #08F13A;
}
.logo {
margin-top: 25px;
margin-left: 0px;
text-shadow: 5px 5px 2px black, 0 0 #08F13A, 0 0 0.3em #08F13A;
line-height: 0%;
width: 9%;
}
main {
display: flex;
margin-left: 80px;
margin-bottom: 50px;
}
.section h1 {
position: absolute;
margin: 10px;
top: 20px;
left: 230px;
text-shadow: 5px 10px 2px black, 0 0 1em deepskyblue, 0 0 0.5em deepskyblue;
}
.text-area {
position: absolute;
width: 430px;
height: 55px;
left: 170px;
top: 140px;
border: 3px solid deepskyblue;
border-radius: 15px;
text-transform: lowercase;
text-align: center;
box-shadow: 20px 20px 30px -20px deepskyblue;
}
::placeholder { color:deepskyblue}
.text-area:focus {
outline: none;
}
.informacion {
position: absolute;
left: 280px;
top: 210px;
color: #08F13A;
font-size:small;
}
.informacion2 {
position: absolute;
left: 410px;
top: 360px;
color: #08F13A;
font-size: 9px;
}
.botones {
display: flex;
flex-direction: row;
align-items: flex-start;
padding: 0px;
gap: 24px;
position: absolute;
width: 700px;
height: 55px;
left: 173px;
top: 420px;
}
.btn-encriptar {
display: flex;
padding: 1px 27px;
border-radius: 15px;
flex: none;
order: 0;
flex-grow: 0;
border: 3px solid deepskyblue;
box-shadow: 20px 20px 30px -20px deepskyblue;
transition-duration: 0.4s;
cursor: pointer;
}
.btn-encriptar:hover {
background-color: #08F13A;
color: #040c2c;
transform: scale(1.1);
}
.btn-desencriptar {
display: flex;
background-color: #08F13A;
border-radius: 15px;
flex: none;
order: 1;
flex-grow: 0;
border: 3px solid deepskyblue;
color: darkblue;
box-shadow: 20px 20px 30px -20px deepskyblue;
transition-duration: 0.4s;
cursor: pointer;
}
.btn-desencriptar:hover {
background-color: #040c2c;
color: #08F13A;
transform: scale(1.1);
}
.mensaje {
background-image: url("https://raw.githubusercontent.com/josmanyel/Challenge-Oracle-Decoder/master/DECODER/Muneco_verde.png");
background-repeat: no-repeat;
background-position-x: center;
background-position-y: 90px;
background-size: 200px 200px;
position: absolute; /* lineas de posición */
padding: 10px 5px 0px 15px;
width: 200px;
height: 400px;
left: 750px;
top: 90px; /* lineas de posición */
border: 3px solid deepskyblue; /* lineas de borde*/
border-radius: 15px; /* lieas de borde*/
text-transform: lowercase; /* lineas de texto */
font-size: 20px;
text-align: center; /* lineas de texto */
box-shadow: 20px 20px 30px -20px deepskyblue; /* lineas de sombra */
}
.mensaje:focus {
outline: none;
}
.p1 {
position: absolute;
left: 800px;
top: 390px;
font-size: large;
color: yellow;
}
.p2 {
position: absolute;
left: 760px;
top: 455px;
font-size: xx-small;
color: yellow;
}
/* Popup container - can be anything you want */
.popup {
position: absolute;
left: 763px;
top: 530px;
display: inline-block;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
/* The actual popup */
.popup .popuptext {
visibility: hidden;
width: 210px;
background-color: rgb(6, 210, 247);
color: darkblue;
text-align: center;
border-radius: 6px;
padding: 8px 0;
position: absolute;
z-index: 1;
bottom: 125%;
left: 38%;
margin-left: -80px;
}
/* Popup arrow */
.popup .popuptext::after {
content: "";
position: absolute;
top: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: rgb(6, 210, 247) transparent transparent transparent;
}
/* Toggle this class - hide and show the popup */
.popup .show {
visibility: visible;
-webkit-animation: fadeIn 1s;
animation: fadeIn 1s;
}
/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
from {opacity: 0;}
to {opacity: 1;}
}
@keyframes fadeIn {
from {opacity: 0;}
to {opacity:1 ;}
}
.copiar {
display: inline-block;
width: 200px;
height: 55px;
left: 763px;
top: 530px;
border: 3px solid deepskyblue;
border-radius: 15px;
text-align: center;
box-shadow: 20px 20px 30px -20px deepskyblue;
transition-duration: 0.4s;
cursor: pointer;
}
.copiar:hover {
background-color: #08F13A;
color: #040c2c;
transform: scale(1.1);
}
.footer {
position: absolute;
top: 512px;
left: 170px;
width: 420px;
height: 60px;
padding: 4px;
border: 3px solid deepskyblue;
border-radius: 15px;
}
.byfor {
color: aqua;
font-size: small;
text-align: left;
margin: 5px 0px 0px 0px;
}
.redes {
position: absolute;
display: flex;
justify-content: space-around;
width: 150px;
height: 40px;
top: 20px;
left: 250px;
}
.fa-github {
display: inline-block;
font-size: 0px;
padding-bottom: 5px;
opacity: 0.1;
}
.fa-github:hover {
opacity: 1.0;
}
.fa-linkedin {
display: inline-block;
font-size: 0px;
padding-bottom: 5px;
opacity: 0.1;
}
.fa-linkedin:hover {
opacity: 1.0;
}
.fa-instagram {
display: inline-block;
font-size: 0px;
padding-bottom: 5px;
opacity: 0.1;
}
.fa-instagram:hover {
opacity: 1.0;
}