-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
135 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,5 @@ contentType: 'TextContent' | |
--- | ||
|
||
# Grid Practice | ||
|
||
Article layout, redux |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
title: 'Colors' | ||
slug: 'colors' | ||
contentType: 'TextContent' | ||
--- | ||
|
||
# Colors | ||
|
||
## color | ||
|
||
https://developer.mozilla.org/en-US/docs/Web/HTML/Applying_color | ||
|
||
### gradients | ||
|
||
### background |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
title: 'Text' | ||
slug: 'text' | ||
contentType: 'TextContent' | ||
--- | ||
|
||
# Styling Text | ||
|
||
https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Text | ||
|
||
- typography | ||
- overflow, scroll, wrapping | ||
- text decoration |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
title: 'Shapes' | ||
slug: 'shapes' | ||
contentType: 'TextContent' | ||
--- | ||
|
||
# Shapes | ||
|
||
## SVG | ||
|
||
## Canvas | ||
|
||
## Transforms | ||
|
||
- https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Transforms/Using_CSS_transforms | ||
|
||
## Clipping and Masking | ||
|
||
- https://developer.mozilla.org/en-US/docs/Web/CSS/clip-path | ||
- https://developer.mozilla.org/en-US/docs/Web/CSS/mask |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
title: 'Transitions and Animations' | ||
slug: 'transitions-animations' | ||
contentType: 'TextContent' | ||
--- | ||
|
||
# Transitions and Animations | ||
|
||
- https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Transitions/Using_CSS_transitions#using_transitions_to_make_javascript_functionality_smooth | ||
- https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Animations/Using_CSS_animations | ||
- https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Animations/Tips |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,8 +66,6 @@ Other design considerations | |
|
||
Lighthouse | ||
|
||
## Page Speed | ||
|
||
## Semantic elements | ||
|
||
- blockquote | ||
|
24 changes: 24 additions & 0 deletions
24
T011-Semantic-HTML-and-Responsive-CSS/p003-performance.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
title: 'Performance' | ||
slug: 'performance' | ||
contentType: 'TextContent' | ||
--- | ||
|
||
# Web Page Performance | ||
|
||
## Page Speed Tools | ||
|
||
- Tools | ||
- What makes pages fast and slow | ||
- How can you take a slow page and make it fast? | ||
- How can you design a page to make it fast from the start? | ||
|
||
## Size of assets | ||
|
||
## Different assets, different speeds | ||
|
||
## Edge latency and CDNs | ||
|
||
## Render-blocking assets | ||
|
||
## Benchmarking and Performance Budgeting |
File renamed without changes.