Skip to content

Commit b8484d7

Browse files
Merge pull request 4GeeksAcademy#119 from josemoracard/jose1-titles
fixed titles
2 parents f25ac13 + 7f0adc1 commit b8484d7

File tree

25 files changed

+41
-37
lines changed

25 files changed

+41
-37
lines changed

exercises/01-Hello-World/README.es.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# `01` Hello World en CSS
2+
# `01` Hello World in CSS
33

44
CSS trata sobre estilos (styles). Para aplicar estilos, siempre debes seguir estos pasos:
55

exercises/01.1-The-Style-Tag/README.es.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# `01.1` Etiqueta Style
2+
# `01.1` The Style Tag
33

44
Si quieres añadir estilos a tu sitio web escribiendo CSS siempre debes hacerlo dentro de una etiqueta `<style>`.
55
Puedes tener cuantas etiquetas `<style>` quieras, pero se recomienda solo tener una al principio del código de tu sitio web.

exercises/01.2-Your-First-Style/README.es.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# `01.2` Tu Primer Estilo
1+
# `01.2` Your First Style
22

33
Cuando usas CSS, la idea es aplicar `reglas css` a tus `elementos html`, siempre debes seleccionar primero el elemento y luego especificar qué reglas deseas aplicarle:
44

exercises/01.3-Your-Second-Style/README.es.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# `01.3` Tu Segundo Estilo
1+
# `01.3` Your Second Style
22

33
Cuando usas CSS, la idea es aplicar `reglas css` a tus `elementos html`, siempre debes seleccionar primero el elemento y luego especificar qué reglas deseas aplicarle:
44

exercises/02-Separate-Stylesheet/README.es.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# `02` Hoja de estilos separada
1+
# `02` Separate Stylesheet
22

33
Si usas la etiqueta html `<link>`, puedes tener tus estilos en un archivo separado que normalmente se llama `styles.css`.
44

exercises/02.1-Background/README.es.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# `02.1` Background (fondo)
1+
# `02.1` Background
22

3-
La regla `background` del CSS nos permite asignar y trabajar con el background de cualquier contenedor (container). Los valores de background pueden ser `color` o una `imagen`.
3+
La regla `background` (fondo) de CSS nos permite asignar y trabajar con el background de cualquier contenedor (container). Los valores de background pueden ser `color` o una `imagen`.
44

55
Si es una imagen, puedes especificar si quieres que la imagen se repita horizontalmente, verticalmente, ambas o ninguna, y también puedes especificar si quieres cambiar el tamaño y ajustar su tamaño al contenedor completo, entre otras propiedades, eso puede modificarse.
66

exercises/03-Inline-Styles/README.es.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# `03` Inline Styles (estilos en línea)
1+
# `03` Inline Styles
22

3-
Los estilos `inline` son una muy mala idea a menos que no tengas otra opción (y esa es una situación muy poco común). Lamentablemente, tenemos que enseñarte cómo hacerlo porque existe la posibilidad de que necesites usarlos en algún momento.
3+
Los estilos `inline` (estilos en línea) son una muy mala idea a menos que no tengas otra opción (y esa es una situación muy poco común). Lamentablemente, tenemos que enseñarte cómo hacerlo porque existe la posibilidad de que necesites usarlos en algún momento.
44

55
Para usar estilos inline, en lugar de declarar una etiqueta `<style>` en el `<head>` del documento, debes establecer el atributo `style` de cualquier elemento con el código CSS que necesitas aplicar a ese elemento específico.
66

exercises/04-Class-Selector/README.es.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# `04` El selector de clase
1+
# `04` Class Selector
22

33
Hay muchas formas de seleccionar los elementos HTML para aplicarles estilos, hasta ahora solo hemos usado los selectores de etiquetas, así que hablemos sobre el selector `.class`:
44

exercises/04-Class-Selector/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Use the class property of the HTML element to select it. Styling rules will appl
1818
}
1919
```
2020

21-
*Any html tag with the `class="small"` will have a font-size of `9px`.*
21+
*Any HTML tag with the `class="small"` will have a font-size of `9px`.*
2222

2323
## 📝 Instructions:
2424

exercises/04.1-Combined-Rules/README.es.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# `04.1` Reglas Combinadas
1+
# `04.1` Combined Rules
22

33
Los archivos CSS ocupan espacio en tu servidor y también tardan en descargarse (como todo); es otro documento de texto que el navegador debe descargar antes de mostrar la página, por lo que es importante mantener el documento CSS lo más pequeño posible.
44

@@ -34,4 +34,5 @@ Donde el valor de la izquierda de la barra `/` es la propiedad `background-posit
3434
## 💡 Pista:
3535

3636
- Cómo usar el background: https://www.w3schools.com/cssref/css3_pr_background.php
37+
3738
- Cómo usar el padding: https://www.w3schools.com/css/css_padding.asp

exercises/04.2-Apply-several-classes/README.es.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
# `04.2` Aplica varias clases
1+
# `04.2` Apply several classes
22

33
Hemos preparado una pequeña hoja de estilos CSS que contiene estilos CSS para replicar cartas de poker.
4-
Vamos a usar clases y aplicarlas al mismo elemento `<div>`.
4+
5+
Vamos a usar dos clases y aplicarlas al mismo elemento `<div>`.
56

67
```html
78
<div class="card spades">9</div>

exercises/04.3-id-Selector/README.es.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# `04.3` Selector de ID
1+
# `04.3` The ID CSS Selector
22

33
También puedes seleccionar un elemento por su `#id` y aplicarle estilos.
44

exercises/05-Specificity/README.es.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# `05` Especificidad
1+
# `05` Specificity
22

33
Al crear un documento CSS, se debe comenzar desde el selector más genérico y terminar con el más específico, esa es la forma en que funciona CSS.
44

@@ -13,4 +13,4 @@ Se trata del nivel de **especificidad**. Si especificas que tu `div` con `id="th
1313

1414
## 💡 Pista:
1515

16-
+ Puedes usar la anotación **!important** : https://css-tricks.com/when-using-important-is-the-right-choice/
16+
+ Puedes usar la notación **!important** : https://css-tricks.com/when-using-important-is-the-right-choice/

exercises/06-Practicing-Rules/README.es.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
# `06` Practicando las reglas
1+
# `06` Practicing Rules
22

33
## 📝 Instrucciones:
44

55
1. Establece esta URL como la imagen de fondo de la página y repítela solo verticalmente: `../../.learn/assets/background-vertical.jpg?raw=true`
66

77
2. Cambia el tipo de fuente (`font-family`) del `h1` a `Courier` y el resto del sitio web a `Times New Roman`.
88

9-
3. Cambia el color del `h1` a rojo(`red`).
9+
3. Cambia el color del `h1` a rojo (`red`).
1010

11-
4. Haz que todos los `h2` tengan subrayado.
11+
4. Haz que todos los `h2` tengan subrayado (`underline`).
1212

1313
5. Agrega un `left padding` a todo el documento de `20px` para que sea más fácil de leer.
1414

15-
6. Agrega un fondo blanco semitransparente (`semi-transparent background (0.2)`) al primer párrafo para que sea más fácil de leer (tienes que usar `rgba` para esto).
15+
6. Agrega un fondo blanco semitransparente (`semi-transparent background (0.2)`) al **primer párrafo** para que sea más fácil de leer (tienes que usar `rgba` para esto).
1616

1717
7. Luego aplica un `padding` de `5px` a todos los lados de ese párrafo.
1818

19-
8. Cambia el color del `anchor` "hover" a verde (`green`) y elimina el subrayado (tienes que pasar el cursor encima del anchor para probarlo).
19+
8. Cambia el color del `anchor` **hover** a verde (`green`) y elimina el subrayado (tienes que pasar el cursor encima del anchor para probarlo).
2020

2121
## El resultado debería ser algo como esto:
2222

exercises/06-Practicing-Rules/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ tutorial: "https://www.youtube.com/watch?v=4wguurrl-lU"
88

99
1. Set this URL as the background image of the page, and repeat it vertically only: `../../.learn/assets/background-vertical.jpg?raw=true`
1010

11-
2. Change the font-family of the `h1` to `Courier` and the rest of the website to `Times new Roman`.
11+
2. Change the `font-family` of the `h1` to `Courier` and the rest of the website to `Times new Roman`.
1212

1313
3. Change the color of `h1` to `red`.
1414

15-
4. Make all the `h2's` with an `underline`.
15+
4. Make all the `h2` have an `underline`.
1616

1717
5. Add a `left padding` to the whole document of `20px` to make it easier to read.
1818

19-
6. Add a white `semi-transparent background (0.2)` to the `first paragraph` to make it easier to read (you have to use `rgba` for that).
19+
6. Add a white `semi-transparent background (0.2)` to the **first paragraph** to make it easier to read (you have to use `rgba` for that).
2020

2121
7. Then apply a `padding` of `5px` to all sides of that paragraph.
2222

23-
8. Change the `anchor` "hover" color to `green` and remove the underline (you have to actually hover the anchor to test it).
23+
8. Change the `anchor` **hover** color to `green` and remove the underline (you have to actually hover the anchor to test it).
2424

2525
## The result should be something like this:
2626

exercises/07-Very-Specific-Rules/README.es.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# `07` Reglas Muy Específicas
1+
# `07` Very Specific Rules
22

33
## **Importante:**
44

exercises/08-Rounded-Image/README.es.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# `08` Imagen Redondeada
1+
# `08` Rounded Image
22

33
Muchos sitios web usan imágenes de perfil redondeadas, ¡una técnica que realmente hace que un sitio web sea más hermoso!
44

exercises/08-Rounded-Image/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
A lot of websites use rounded profile images, a technique that really makes a website more beautiful!
44

5-
The obvious way to create a rounded profile picture is to create an image tag and apply `border-radius:100%`. The problem with this approach is that it only works for squared pictures... Profile pictures with different height and width will not look like a circle, they will look like ovals:
5+
The obvious way to create a rounded profile picture is to create an image tag and apply `border-radius:100%`.
6+
7+
The problem with this approach is that it only works for squared pictures... Profile pictures with different height and width will not look like a circle, they will look like ovals:
68

79
![Example Image](../../.learn/assets/08-1.png?raw=true)
810

exercises/09-Anchor-Styles/README.es.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# `09` Estilos de enlaces (anchor) 3D
1+
# `09` 3D Anchor Styles
22

33
A las personas les gusta sentir que están haciendo clic en algo, una manera de lograrlo es fingir un efecto 3D. Para hacerlo, los diseñadores normalmente juegan con los bordes, por ejemplo:
44

exercises/10-Your-Own-Font/README.es.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# `10` Tu Propia Fuente
1+
# `10` Your Own Font
22

33
Aquí puedes encontrar las fuentes de Google: https://fonts.google.com
44

exercises/11-Font-Awesome-Icons/README.es.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# `11` Iconos Font Awesome
1+
# `11` Font Awesome Icons
22

33
Como desarrollador, querrás utilizar ciertos iconos para que tu sitio web sea fácil de entender. Por ejemplo, sabemos que el icono de "papelera" significa "eliminar".
44

exercises/12-Relative-Length-EM-REM/README.es.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# `12` Longitud Relativa em, rem
1+
# `12` Relative Length em, rem
22

33
Hasta ahora, hemos trabajado con píxeles como unidad de medida, por ejemplo, diciendo que un contenedor o caja tiene `100px` de ancho.
44

exercises/12-Relative-Length-EM-REM/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ Since the second `div` has a bigger based `font-size`, then the heading resizes
1212

1313
## In short:
1414

15-
+ em: Relative to the current font-size of the parent.
15+
+ em: Relative to the current `font-size` of the parent.
1616

17-
+ rem: Relative to the original font-size of the page.
17+
+ rem: Relative to the original `font-size` of the page.
1818

1919

2020
## 📝 Instructions:

exercises/13-Anchor-Like-Button/README.es.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# `13` Enlace (anchor) como botón
1+
# `13` Anchor Like Button
22

33
Los enlaces (`anchors`) no solo se usan dentro del texto: cuando usas enlaces (`anchors`) fuera del texto, es mejor hacer que se vean como botones para que la experiencia del usuario sea más amigable.
44

exercises/13-Anchor-Like-Button/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Anchors are not only used within text: when you are going to use anchors outside
88

99
2. Rounded borders: set `border-radius` to `4px`.
1010

11-
3. The background should be `orange` when not hovered, and `darkorange` on hover (`:hover`).
11+
3. The `background` should be `orange` when not hovered, and `darkorange` on hover (`:hover`).
1212

1313
4. Remove underline: set `text-decoration` to `none`.
1414

0 commit comments

Comments
 (0)