-
Notifications
You must be signed in to change notification settings - Fork 0
/
Style-challege.css
106 lines (102 loc) · 1.78 KB
/
Style-challege.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
*{
margin: 0;
padding: 0;
}
.input-encriptador{
position: absolute;
width: 50%;
height: 40%;
left: 8%;
top: 20%;
border: none;
font-family: 'Inter';
font-style: normal;
font-weight: 400;
font-size: 32px;
line-height: 150%;
}
.restriccion{
position: absolute;
left: 8%;
top: 70%;
}
.encriptar{
display: block;
width: 20%;
padding: 10px;
font-size: 18px;
font-weight: bold;
color:white;
background: blue;
border:none;
border-radius: 15px;
transition: 1s all;
cursor:pointer;
position: absolute;
top: 80%;
left: 8%;
}
.encriptar:hover {
background: darkblue;
}
.desencriptar{
display: block;
width: 20%;
padding: 10px;
font-size: 18px;
font-weight: bold;
color:white;
background: gray;
border:none;
border-radius: 15px;
transition: 1s all;
cursor:pointer;
position: absolute;
top: 80%;
left: 30%;
}
.desencriptar:hover{
background: darkgrey;
}
.textoencriptado{
display: flex;
position: absolute;
width: 30%;
height: 95%;
left: 60%;
top: 2%;
box-shadow: 0px 24px 32px -10px;
border-radius: 15px;
}
.output-encriptado{
position: absolute;
display: flex;
flex-direction: column;
width: 85%;
height: 55%;
left: 5%;
top: 5%;
border: none;
font-family: 'Inter';
font-style: normal;
font-weight: 400;
font-size: 32px;
line-height: 150%;
}
.textoencriptado img{
position: absolute;
width: 50%;
height: 30%;
top: 55%;
left: 15%;
}
.textoencriptado h2{
position: absolute;
top: 85%;
left: 10%;
text-align: center;
font-family: 'Inter';
font-size: 24px;
font-style: normal;
color: darkblue
}