Skip to content

Commit 2c0d096

Browse files
authored
Merge pull request 4GeeksAcademy#1 from 4GeeksAcademy/master
update
2 parents 9486301 + dc4e48d commit 2c0d096

File tree

34 files changed

+70
-307
lines changed

34 files changed

+70
-307
lines changed

.learn/assets/baby.jpg

110 KB
Loading

.learn/resets/04.1-Combined-Rules/styles.css

Lines changed: 0 additions & 14 deletions
This file was deleted.

.learn/resets/04.2-Apply-several-classes/index.html

Lines changed: 0 additions & 13 deletions
This file was deleted.

.learn/resets/04.3-id-Selector/index.html

Lines changed: 0 additions & 13 deletions
This file was deleted.

.learn/resets/04.3-id-Selector/styles.css

Lines changed: 0 additions & 5 deletions
This file was deleted.

.learn/resets/05-Specificity/index.html

Lines changed: 0 additions & 18 deletions
This file was deleted.

.learn/resets/05-Specificity/styles.css

Lines changed: 0 additions & 9 deletions
This file was deleted.

.learn/resets/06-Practicing-Rules/index.html

Lines changed: 0 additions & 1 deletion
This file was deleted.

.learn/resets/06-Practicing-Rules/styles.css

Whitespace-only changes.

.learn/resets/07-Very-Specific-Rules/index.html

Lines changed: 0 additions & 82 deletions
This file was deleted.

.learn/resets/07-Very-Specific-Rules/styles.css

Lines changed: 0 additions & 15 deletions
This file was deleted.

.learn/resets/08-Rounded-Image/index.html

Lines changed: 0 additions & 13 deletions
This file was deleted.

.learn/resets/08-Rounded-Image/styles.css

Lines changed: 0 additions & 6 deletions
This file was deleted.

.learn/resets/09-Anchor-Styles/index.html

Lines changed: 0 additions & 13 deletions
This file was deleted.

.learn/resets/09-Anchor-Styles/styles.css

Lines changed: 0 additions & 16 deletions
This file was deleted.

.learn/resets/10-Your-Own-Font/index.html

Lines changed: 0 additions & 15 deletions
This file was deleted.

.learn/resets/10-Your-Own-Font/styles.css

Lines changed: 0 additions & 3 deletions
This file was deleted.

.learn/resets/11-Font-Awesome-Icons/index.html

Lines changed: 0 additions & 14 deletions
This file was deleted.

.learn/resets/11-Font-Awesome-Icons/styles.css

Lines changed: 0 additions & 3 deletions
This file was deleted.

.learn/resets/12-Relative-Length-EM-REM/index.html

Lines changed: 0 additions & 21 deletions
This file was deleted.

.learn/resets/12-Relative-Length-EM-REM/styles.css

Lines changed: 0 additions & 8 deletions
This file was deleted.

.learn/resets/13-Anchor-Like-Button/index.html

Lines changed: 0 additions & 12 deletions
This file was deleted.

.learn/resets/13-Anchor-Like-Button/styles.css

Lines changed: 0 additions & 7 deletions
This file was deleted.

exercises/04-Class-Selector/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=RffCSMXgWFc"
3+
---
4+
15
# `04` Class Selector
26

37
There are many ways to select HTML elements to apply styles to them, so far we have only use the `tag` selector, lets talk about the `.class` selector:

exercises/04.1-Combined-Rules/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://youtu.be/watch?v=uQS5QeEE-B4"
3+
---
4+
15
# `04.1` Combined Rules
26

37
CSS files take space on your server and also take time to download (like everything); it is yet another text document that the browser has to download before rendering the page, which is why is important to keep the CSS document as small as possible.

exercises/04.1-Combined-Rules/styles.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
.what {
1+
.myBox {
22
width: 50px;
33
height: 50px;
44
padding-top: 10px;
55
padding-left: 30px;
66
padding-right: 190px;
77
padding-bottom: 50px;
8-
/* padding: 10px 30px 50px 190px; */
9-
background: rgb(189, 189, 189);
8+
9+
background: rgb(189, 189, 189);
1010
background-image: url(https://assets.breatheco.de/apis/img/funny/baby.jpg);
1111
background-position-x: 100px;
1212
background-repeat: no-repeat;

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=da4tJDx48CY"
3+
---
4+
15
# `04.2` Apply several classes
26

37
We have prepared a small CSS Stylesheet that contains the CSS styles to replicate poker cards.

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` Selector de clase
1+
# `04.3` Selector de ID
22

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

exercises/04.3-id-Selector/README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
# `04` Class Selector
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=9906LCSQJ8"
3+
---
4+
---
5+
tutorial: "https://www.youtube.com/watch?v=9906LCSQJ8"
6+
---
7+
# `04.3` The ID CSS Selector
28

39
You can also select an element by `#id` and apply stiles to it.
410

exercises/05-Specificity/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=3JxXkhxyAnI"
3+
---
4+
15
# `05` Specificity
26

37
When creating a CSS document, you need to start from the most generic selector and end with the most specific ones, that is the way CSS works.

exercises/06-Practicing-Rules/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=4wguurrl-lU"
3+
---
4+
15
# `06` Practicing Rules
26

37
## 📝 Instructions:

0 commit comments

Comments
 (0)