Skip to content

Commit 664c4fa

Browse files
committed
links for collection of the codepen fixed
1 parent ebf31f8 commit 664c4fa

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,31 +9,31 @@
99

1010
- [História do CSS Layout](https://www.youtube.com/watch?v=94aYg5D8N0s&t=58s)
1111
- [O que é CSS Grid Layout](https://www.w3.org/TR/css-grid-1/)
12-
- [CSS Grid Layout x Flexbox]()
12+
- [CSS Grid Layout x Flexbox](https://rachelandrew.co.uk/archives/2016/03/30/should-i-use-grid-or-flexbox/)
1313
- [Terminologia](https://codepen.io/simoneas02/post/grid-layout)
1414
- Grid Lines
1515
- Grid Track
1616
- Grid Cell
1717
- Grid Area
1818
<hr>
1919

20-
## [Collection Workshop](bit.ly/css-grid-layouts)
20+
## [Collection Workshop](https://codepen.io/collection/AdOVGW/)
2121

22-
### [01 - Definindo um Grid](bit.ly/01-definindo-grid)
22+
### [01 - Definindo um Grid](https://codepen.io/simoneas02/pen/gRRLRb)
2323

2424
```CSS
2525
display: grid
2626
display: inline-grid
2727
```
2828

29-
### [02 - Line Base Placement](bit.ly/02-placement)
29+
### [02 - Line Base Placement](https://codepen.io/simoneas02/pen/qjjqyw)
3030

3131
```CSS
3232
grid-template-columns: 50px 100px 200px;
3333
grid-template-rows: 100px 150px;
3434
```
3535

36-
### [03 - Line Base Position](bit.ly/03-position)
36+
### [03 - Line Base Position](https://codepen.io/simoneas02/pen/LLLbXK)
3737

3838
```CSS
3939
.e {
@@ -44,7 +44,7 @@
4444
}
4545
```
4646

47-
### [04 - Line Base Position - Shorthands](bit.ly/04-position-shorthands)
47+
### [04 - Line Base Position - Shorthands](https://codepen.io/simoneas02/pen/BZZQeW)
4848

4949
```CSS
5050
.e {
@@ -57,7 +57,7 @@
5757
}
5858
```
5959

60-
### [05 - Grid Gap](bit.ly/05-grid-gap)
60+
### [05 - Grid Gap](https://codepen.io/simoneas02/pen/GEEror)
6161

6262
```CSS
6363
grid-column-gap: 10px;
@@ -68,7 +68,7 @@
6868
grid-gap: 20px;
6969
```
7070

71-
- [06 - Area Naming](bit.ly/06-area-naming)
71+
### [06 - Area Naming](https://codepen.io/simoneas02/pen/LLLxLp)
7272

7373
```CSS
7474
grid-template-areas:
@@ -111,6 +111,6 @@
111111
```
112112
<hr>
113113

114-
- [Hands On - YouTube Layout ]()
114+
- [Hands On - YouTube Layout ](https://github.com/simoneas02/youtube-css-grid/tree/master/training)
115115
- [Suporte](https://caniuse.com/#feat=css-grid)
116116
- [Quer saber mais](https://github.com/simoneas02/awesome-grid-layout)

0 commit comments

Comments
 (0)