Skip to content

update #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Dec 14, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .learn/assets/baby.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 0 additions & 14 deletions .learn/resets/04.1-Combined-Rules/styles.css

This file was deleted.

13 changes: 0 additions & 13 deletions .learn/resets/04.2-Apply-several-classes/index.html

This file was deleted.

13 changes: 0 additions & 13 deletions .learn/resets/04.3-id-Selector/index.html

This file was deleted.

5 changes: 0 additions & 5 deletions .learn/resets/04.3-id-Selector/styles.css

This file was deleted.

18 changes: 0 additions & 18 deletions .learn/resets/05-Specificity/index.html

This file was deleted.

9 changes: 0 additions & 9 deletions .learn/resets/05-Specificity/styles.css

This file was deleted.

1 change: 0 additions & 1 deletion .learn/resets/06-Practicing-Rules/index.html

This file was deleted.

Empty file.
82 changes: 0 additions & 82 deletions .learn/resets/07-Very-Specific-Rules/index.html

This file was deleted.

15 changes: 0 additions & 15 deletions .learn/resets/07-Very-Specific-Rules/styles.css

This file was deleted.

13 changes: 0 additions & 13 deletions .learn/resets/08-Rounded-Image/index.html

This file was deleted.

6 changes: 0 additions & 6 deletions .learn/resets/08-Rounded-Image/styles.css

This file was deleted.

13 changes: 0 additions & 13 deletions .learn/resets/09-Anchor-Styles/index.html

This file was deleted.

16 changes: 0 additions & 16 deletions .learn/resets/09-Anchor-Styles/styles.css

This file was deleted.

15 changes: 0 additions & 15 deletions .learn/resets/10-Your-Own-Font/index.html

This file was deleted.

3 changes: 0 additions & 3 deletions .learn/resets/10-Your-Own-Font/styles.css

This file was deleted.

14 changes: 0 additions & 14 deletions .learn/resets/11-Font-Awesome-Icons/index.html

This file was deleted.

3 changes: 0 additions & 3 deletions .learn/resets/11-Font-Awesome-Icons/styles.css

This file was deleted.

21 changes: 0 additions & 21 deletions .learn/resets/12-Relative-Length-EM-REM/index.html

This file was deleted.

8 changes: 0 additions & 8 deletions .learn/resets/12-Relative-Length-EM-REM/styles.css

This file was deleted.

12 changes: 0 additions & 12 deletions .learn/resets/13-Anchor-Like-Button/index.html

This file was deleted.

7 changes: 0 additions & 7 deletions .learn/resets/13-Anchor-Like-Button/styles.css

This file was deleted.

4 changes: 4 additions & 0 deletions exercises/04-Class-Selector/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
tutorial: "https://www.youtube.com/watch?v=RffCSMXgWFc"
---

# `04` Class Selector

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:
Expand Down
4 changes: 4 additions & 0 deletions exercises/04.1-Combined-Rules/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
tutorial: "https://youtu.be/watch?v=uQS5QeEE-B4"
---

# `04.1` Combined Rules

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.
Expand Down
6 changes: 3 additions & 3 deletions exercises/04.1-Combined-Rules/styles.css
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
.what {
.myBox {
width: 50px;
height: 50px;
padding-top: 10px;
padding-left: 30px;
padding-right: 190px;
padding-bottom: 50px;
/* padding: 10px 30px 50px 190px; */
background: rgb(189, 189, 189);

background: rgb(189, 189, 189);
background-image: url(https://assets.breatheco.de/apis/img/funny/baby.jpg);
background-position-x: 100px;
background-repeat: no-repeat;
Expand Down
4 changes: 4 additions & 0 deletions exercises/04.2-Apply-several-classes/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
tutorial: "https://www.youtube.com/watch?v=da4tJDx48CY"
---

# `04.2` Apply several classes

We have prepared a small CSS Stylesheet that contains the CSS styles to replicate poker cards.
Expand Down
2 changes: 1 addition & 1 deletion exercises/04.3-id-Selector/README.es.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# `04` Selector de clase
# `04.3` Selector de ID

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

Expand Down
8 changes: 7 additions & 1 deletion exercises/04.3-id-Selector/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
# `04` Class Selector
---
tutorial: "https://www.youtube.com/watch?v=9906LCSQJ8"
---
---
tutorial: "https://www.youtube.com/watch?v=9906LCSQJ8"
---
# `04.3` The ID CSS Selector

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

Expand Down
4 changes: 4 additions & 0 deletions exercises/05-Specificity/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
tutorial: "https://www.youtube.com/watch?v=3JxXkhxyAnI"
---

# `05` Specificity

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.
Expand Down
4 changes: 4 additions & 0 deletions exercises/06-Practicing-Rules/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
tutorial: "https://www.youtube.com/watch?v=4wguurrl-lU"
---

# `06` Practicing Rules

## 📝 Instructions:
Expand Down
Loading