Skip to content

Commit 0e9fabf

Browse files
authored
Merge pull request 4GeeksAcademy#25 from ElviraQDP/master
changing images url to realtive paths
2 parents 0502062 + 5781455 commit 0e9fabf

File tree

12 files changed

+12
-12
lines changed

12 files changed

+12
-12
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55

66
1. Establece esta URL como la imagen de fondo de la página y repítela solo verticalmente:
7-
https://github.com/4GeeksAcademy/css-tutorial-exercises-course/blob/master/.learn/assets/background-vertical.jpg?raw=true
7+
[06- backgrund vertical](../../.learn/assets/background-vertical.jpg?raw=true)
88

99
2. Cambia el tipo de fuente (`font-type`) del `h1` a `Courier` y el resto del sitio web a `Times New Roman`.
1010

exercises/06-Practicing-Rules/tests.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ describe("All the styles should be applied", function () {
2626
let body=document.querySelector("body");
2727
let styles=window.getComputedStyle(body);
2828
expect(styles["background"]).toBe(
29-
`url(https://github.com/4GeeksAcademy/css-tutorial-exercises-course/blob/3a2d1dd03f58167a5a4894155af2d3aa4d41d647/.learn/assets/background-vertical.jpg?raw=true) repeat-y`
29+
`url(../../.learn/assets/background-vertical.jpg?raw=true) repeat-y`
3030
);
3131
});
3232
it("the font-family should be 'Times New Roman'", function () {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ En este ejercicio, puedes agregar tu código solo arriba del **READ ONLY BLOCK**
1414
3. Haz que las filas impares de las tablas tengan fondo amarillo usando `tr:nth-child`.
1515

1616

17-
![Example Image](https://github.com/4GeeksAcademy/css-tutorial-exercises-course/blob/master/.learn/assets/07-1.png?raw=true)
17+
![Example Image](../../.learn/assets/07-1.png?raw=true)
1818

1919

2020

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ In this exercise, you can add your code only above the **READ ONLY BLOCK** of th
1818
3. Change the odd rows of the tables to a yellow background using `tr:nth-child`.
1919

2020

21-
![Example Image](https://github.com/4GeeksAcademy/css-tutorial-exercises-course/blob/master/.learn/assets/07-1.png?raw=true)
21+
![Example Image](../../.learn/assets/07-1.png?raw=true)
2222

2323

2424

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Muchos sitios web usan imágenes de perfil redondeadas ¡una técnica que realme
44

55
La forma obvia de crear una imagen de perfil redondeada es crear una etiqueta de imagen y aplicar un `border-radius: 100%`. El problema con este enfoque es que solo funciona para imágenes cuadradas... Las imágenes de perfil generalmente tienen diferente altura y ancho no se verán como un círculo, se verán como óvalos:
66

7-
![Example Image](https://github.com/4GeeksAcademy/css-tutorial-exercises-course/blob/master/.learn/assets/08-1.png?raw=true)
7+
![Example Image](../../.learn/assets/08-1.png?raw=true)
88

99
## 📝 Instrucciones:
1010

exercises/08-Rounded-Image/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ A lot of websites use rounded profile images, a technique that really makes a we
44

55
The obvious way 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:
66

7-
![Example Image](https://github.com/4GeeksAcademy/css-tutorial-exercises-course/blob/master/.learn/assets/08-1.png?raw=true)
7+
![Example Image](../../.learn/assets/08-1.png?raw=true)
88

99
## 📝 Instructions:
1010

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

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

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

5-
![Example Image](https://github.com/4GeeksAcademy/css-tutorial-exercises-course/blob/master/.learn/assets/09-1.png?raw=true)
5+
![Example Image](../../.learn/assets/09-1.png?raw=true)
66

77
Puedes controlar qué reglas css se aplican a cada estado de un `anchor` utilizando los selectores: `:hover` (para el mouse) o `active` (para presionar el mouse), por ejemplo:
88

exercises/09-Anchor-Styles/README.md

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

33
People like to feel that they are clicking on something, a great approach to accomplish that is by faking a 3D effect. To do so, designers normally play with the borders, for example:
44

5-
![Example Image](https://github.com/4GeeksAcademy/css-tutorial-exercises-course/blob/master/.learn/assets/09-1.png?raw=true)
5+
![Example Image](../../.learn/assets/09-1.png?raw=true)
66

77
You can control what css rules apply to each state of an anchor by using the `:hover` (for mouse hover) or `:active` (for mouse pressing) selectors, example:
88

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ rem: Relativo al font-size original de la página.
2020

2121
El resultado debería verse así:
2222

23-
![Example Image](https://github.com/4GeeksAcademy/css-tutorial-exercises-course/raw/master/.learn/assets/12-1.png?raw=true)
23+
![Example Image](../../.learn/assets/12-1.png?raw=true)
2424

2525

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ REM: Relative to the original font-size of the page.
2222

2323

2424
The result should look like this:
25-
![Example Image](https://github.com/4GeeksAcademy/css-tutorial-exercises-course/blob/master/.learn/assets/12-1.png?raw=true)
25+
![Example Image](../../.learn/assets/12-1.png?raw=true)
2626

2727

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ Siga estos pasos para que su enlace (anchor) se vea así
2020

2121
6. Dentro del selector de hover: cambie el fondo del botón a un color naranja más oscuro.
2222

23-
![Example Image](https://github.com/4GeeksAcademy/css-tutorial-exercises-course/blob/master/.learn/assets/13-1.gif?raw=true)
23+
![Example Image](../../.learn/assets/13-1.gif?raw=true)

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

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

1919
6. Inside of the :hover selector change the background of the button to a darker orange.
2020

21-
![Example Image](https://github.com/4GeeksAcademy/css-tutorial-exercises-course/blob/master/.learn/assets/13-1.gif?raw=true)
21+
![Example Image](../../.learn/assets/13-1.gif?raw=true)

0 commit comments

Comments
 (0)