Skip to content

Commit c44ebf5

Browse files
committed
Update README
1 parent 120fb84 commit c44ebf5

File tree

3 files changed

+35
-65
lines changed

3 files changed

+35
-65
lines changed

README.md

Lines changed: 35 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,52 @@
1-
<h3 align="center">¡Bienvenid@s al Encriptador de Textos! - Welcome to Text Encrypter</h3>
21

3-
<p align="center">
4-
Una aplicación para cifrar y descifrar mensajes de manera creativa - An application for encrypting and decrypting messages in a creative way.
5-
<br />
6-
<br />
7-
<a href="https://dansware03.github.io/encriptador-one">Ver Demo - View Demo</a>
8-
</p>
9-
</div>
2+
# ¡Bienvenid@s al Encriptador de Textos! - Welcome to Text Encrypter
103

11-
<!-- ACERCA DEL PROYECTO -->
4+
Una aplicación para cifrar y descifrar mensajes de manera creativa - An application for encrypting and decrypting messages in a creative way.
5+
## Versiones en Desarrollo
126

13-
<h1 align="center">
14-
Acerca del Proyecto - About The Project <img src="https://media.giphy.com/media/v1.Y2lkPTc5MGI3NjExZHZ5ZmhhYzJyNGlpY200cDM2dzd5amJuN21rMHp5bm55Ym12dmswYyZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/SvFocn0wNMx0iv2rYz/giphy.gif">
15-
</h1>
7+
Utiliza esta sección para informar a los usuarios sobre las versiones de desarrollo actualmente en progreso y cualquier actualización de seguridad.
168

17-
La aplicación "Encriptador de Textos" te permite cifrar y descifrar mensajes utilizando un método único. Transformamos ciertas letras en palabras especiales. ¡Diviértete compartiendo mensajes secretos con tus amigos!
9+
| Versión | Estado |
10+
| --------- | ------------------ |
11+
| 1.0.49 | :white_check_mark: |
1812

19-
- La letra "e" se convierte en "enter"
20-
- La letra "i" se convierte en "imes"
21-
- La letra "a" se convierte en "ai"
22-
- La letra "o" se convierte en "ober"
23-
- La letra "u" se convierte en "ufat"
13+
## Demo
2414

25-
<h1 align="center">
26-
Construido Con - Built With <img src="https://media0.giphy.com/media/uhQuegHFqkVYuFMXMQ/giphy.gif" width="30px">
27-
</h1>
15+
[Ver Demo - View Demo](https://dansware03.github.io/encriptador-one/)
16+
## Acerca del Proyecto - About The Project
2817

29-
Este proyecto utiliza CSS y Vanilla JS.
18+
La aplicación "Encriptador de Textos" te permite cifrar y descifrar mensajes utilizando CryptoJS, una librería de JavaScript para realizar operaciones criptográficas. Ahora puedes encriptar tus mensajes con una clave personalizada para mayor seguridad.
19+
## Licencia
3020

31-
<!-- COMENZANDO -->
32-
<h1 align="center">
33-
Comenzando - Getting Started <img src="https://media1.giphy.com/media/QvpqIQAAl66EfoTJj8/giphy.gif" width="30px">
34-
</h1>
21+
[![MIT License](https://img.shields.io/badge/License-MIT-green.svg)](https://github.com/Dansware03/encriptador-one?tab=MIT-1-ov-file#readme)
22+
23+
24+
25+
## Construido Con - Built With
26+
27+
Este proyecto utiliza para la encriptación de mensajes.
28+
- CSS
29+
- Vanilla JS
30+
- CryptoJS
31+
32+
33+
## Comenzando - Getting Started
3534

3635
Para empezar, puedes instalar el proyecto localmente. Aquí tienes los pasos:
3736

3837
1. Clona el repositorio:
39-
```sh
38+
```sh
4039
git https://github.com/Dansware03/encriptador-one.git
40+
```
41+
42+
## Support
4143

4244
[Oracle Next Education](https://www.oracle.com/lad/education/oracle-next-education/)
4345

4446
[Alura LATAM](https://www.aluracursos.com/)
47+
48+
49+
## Authors
50+
51+
- [Dansware](https://github.com/Dansware03/)
52+

src/css/styles.css

Lines changed: 0 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -62,31 +62,6 @@
6262
border-color: #0a3871;
6363
}
6464

65-
.terminos {
66-
display: flex;
67-
flex-direction: row;
68-
align-items: center;
69-
padding: 0px;
70-
gap: 8px;
71-
position: absolute;
72-
width: 80%;
73-
left: 12%;
74-
top: 81%;
75-
}
76-
77-
.terminos p {
78-
font-family: "inter";
79-
font-style: normal;
80-
font-weight: 400;
81-
font-size: 12px;
82-
line-height: 150%;
83-
color: #495057;
84-
opacity: 0.8;
85-
flex: none;
86-
order: 1;
87-
flex-grow: 0;
88-
}
89-
9065
.botones {
9166
display: flex;
9267
flex-direction: row;
@@ -243,16 +218,6 @@
243218
top: 40%;
244219
}
245220

246-
.terminos {
247-
width: 80%;
248-
left: 10%;
249-
top: 48%;
250-
}
251-
252-
.terminos p {
253-
font-size: 16px;
254-
}
255-
256221
.botones {
257222
width: 80%;
258223
left: 10%;

src/index.html

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,6 @@
2626
id="clave-cifrado"
2727
placeholder="Ingresa la clave de cifrado"
2828
/>
29-
<div class="terminos">
30-
<p>Solo Letras Minúsculas y Sin Acentos</p>
31-
</div>
3229
<div class="botones">
3330
<button class="btn-encriptar" type="button" onclick="encriptar()">
3431
Encriptar

0 commit comments

Comments
 (0)