-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.scss
191 lines (172 loc) · 3.63 KB
/
style.scss
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
body{
font-family: 'Roboto', sans-serif;
font-family: 'Roboto Mono', monospace;
position: relative;
min-height: 100%;
margin: 0;
padding-bottom: 200px; /* Ajusta el padding inferior según la altura del footer */
box-sizing: border-box;
background-color: #050801;
}
.contenedor {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 20px;
}
h1 {
font-family: 'Space Mono', monospace;
font-size: 6rem;
color: white;
place-items: center;
margin-bottom: 100px;
}
.titulo {
font-size: 70px;
}
.alura_logo {
position: absolute;
top: 0;
left: 0;
margin: 10px; /* Ajusta el margen según sea necesario */
background-image: url(Imagenes/Vector.png);
background-position: top left;
background-repeat: no-repeat;
margin: 33px 50px ;
width: 25px;
height: 25px;
}
.inputs {
display: flex;
flex-direction: column;
align-items: center;
}
.campo_ingreso{
font-family: biko;
letter-spacing: 4px;
width: 100%;
border: 0;
border-bottom: 2px solid #a7a7a7;
outline: 0;
font-size: 1.3rem;
color: #fff;
padding: 7px 0;
background: transparent;
transition: border-color 0.2s;
}
.campo_ingreso{
width: 75%;
padding: 10px;
margin-bottom: 10px;
}
.campo_salida {
width: 75%; /* Establece el ancho al 75% */
margin: 0 auto; /* Centra horizontalmente */
}
.b_encriptar{
margin-right: 30px;
padding: 12px 20px;
background-color: transparent;
color: #03e9f4;
font-weight: bold;
border: none;
border-radius: 2px;
letter-spacing: 4px;
overflow: hidden;
transition: 0.5s;
cursor: pointer;
}
.b_encriptar:hover{
background: #03e9f4;
color: #050801;
box-shadow: 0 0 5px #03e9f4,
0 0 25px #03e9f4,
0 0 50px #03e9f4,
0 0 200px #03e9f4;
-webkit-box-reflect:below 1px linear-gradient(transparent, #0005);
}
.b_desencriptar{
margin-right: 30px;
padding: 12px 20px;
background-color: transparent;
color: #E9F403;
font-weight: bold;
border: none;
border-radius: 2px;
letter-spacing: 4px;
overflow: hidden;
transition: 0.5s;
cursor: pointer;
}
.b_desencriptar:hover{
background: #E9F403;
color: #050801;
box-shadow: 0 0 5px #E9F403,
0 0 25px #E9F403,
0 0 50px #E9F403,
0 0 200px #E9F403;
-webkit-box-reflect:below 1px linear-gradient(transparent, #0005);
}
.campo_salida{
font-family: biko;
letter-spacing: 4px;
width: 75%;
margin-top: 80px;
border: 0;
border-bottom: 2px solid #a7a7a7;
outline: 0;
font-size: 1.3rem;
color: #ffff56;
padding: 7px 0;
background: transparent;
transition: border-color 0.2s;
}
.b_copiar{
margin-right: 30px;
padding: 12px 20px;
background-color: transparent;
color: #F403E9;
font-weight: bold;
border: none;
border-radius: 2px;
letter-spacing: 4px;
overflow: hidden;
transition: 0.5s;
cursor: pointer;
}
.b_encriptar,.b_desencriptar,.b_copiar {
padding: 10px 20px;
margin-bottom: 10px;
width: 150px;
}
.b_copiar:hover{
background: #F403E9;
color: #050801;
box-shadow: 0 0 5px #F403E9,
0 0 25px #F403E9,
0 0 50px #F403E9,
0 0 90px #F403E9;
-webkit-box-reflect:below 1px linear-gradient(transparent, #0005);
}
.footer {
color: #fff;
position: absolute;
bottom: 0;
left: 0;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
height: 100px; /* Ajusta la altura según tus necesidades */
transform: translateY(50%);
}
/* Media query para pantallas pequeñas */
@media (max-width: 768px) {
.titulo {
font-size: 40px;
}
.alura_logo {
margin: 10px;
}
}