Skip to content

Commit 8bac8cc

Browse files
Merge branch 'master' into ex3
2 parents cb4a658 + d41279f commit 8bac8cc

File tree

6 files changed

+9
-14
lines changed

6 files changed

+9
-14
lines changed

exercises/05-Specificity/README.es.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,4 @@ Se trata del nivel de especificidad. Si especificas que tu `div` con `id="thirdi
1313

1414
## 💡 Pista:
1515

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

exercises/06-Practicing-Rules/README.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,26 +6,22 @@ tutorial: "https://www.youtube.com/watch?v=4wguurrl-lU"
66

77
## 📝 Instructions:
88

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

12-
2. Change the font-type of the `h1` to `Courier`
13-
and the rest of the website to `Times new Roman`.
11+
2. Change the font-type of the `h1` to `Courier` and the rest of the website to `Times new Roman`.
1412

1513
3. Change the color of `h1` to `red`.
1614

1715
4. Make all the `h2's` with an `underline`.
1816

1917
5. Center the `h1` to the middle.
2018

21-
6. Add a `left padding` to the whole document
22-
of `20px` to make it easier to read.
19+
6. Add a `left padding` to the whole document of `20px` to make it easier to read.
2320

2421
7. Add a white `semi-transparent background (0.2)` to the `first paragraph` to make it easier to read (you have tu use rgba for that) and write down "3 reasons you know you are learning". Then apply a `padding` of `5px` to all sides of that paragraph.
2522

2623
8. Change the `anchor` "hover" color to `green` and remove the underline (you have to actually hover the anchor to test it).
2724

28-
2925
## The result should be something like this:
3026

31-
![Example Image](../.././.learn/assets/06-1.png?raw=true)
27+
![Example Image](../../.learn/assets/06-1.png?raw=true)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Font-awesome resuelve el problema de la "imagen" creando una nueva fuente en don
99
Después de vincular tu sitio web con font-awesome, puedes usar lo siguiente para codificar e insertar un icono específico:
1010

1111
```html
12-
<i class="fa fa-camera-retro"></i>
12+
<i class="fas fa-camera-retro"></i>
1313
<!--"camera-retro" será el nombre de tu icono-->
1414

1515
Puedes encontrar todos los nombres disponibles aquí: http://fontawesome.io/icons/

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ Font-awesome solve the "image" problem by creating a new font- each letter is a
99
After linking your website with font-awesome, you can use the following code to insert a specific icon:
1010

1111
```html
12-
<i class="fa fa-camera-retro"></i>
12+
<i class="fas fa-camera-retro"></i>
1313
<!-- "camera-retro" will be the name of the icon -->
1414

1515
You can find all the available names here: http://fontawesome.io/icons/
1616
```
1717

1818
## 📝 Instructions:
1919

20-
Add two more items into your list and add a different icon at the beginning of each item.
20+
1. Add two more items into your list and add a different icon at the beginning of each item.
2121

exercises/11-Font-Awesome-Icons/tests.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ describe("All the styles should be applied", function() {
3535
expect(li[i].innerHTML).toBeTruthy();
3636
}
3737
});
38-
it('the i tag should have a class "fa"', function() {
38+
it('the i tag should have a class "fas"', function() {
3939
//or use query selector to compare hoy mane scriptags do we have
4040
const icon = document.querySelectorAll("i");
4141
expect(document.querySelector("i")).toBeTruthy();

learn.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"video-solutions": true,
1313
"graded": true,
1414
"config": {
15-
"disableGrading": false,
15+
"disableGrading": true,
1616
"editor": {
1717
"version": "1.0.71"
1818
}

0 commit comments

Comments
 (0)