-
Notifications
You must be signed in to change notification settings - Fork 0
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
19 changed files
with
146 additions
and
19 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
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 @@ | ||
{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"} |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,25 @@ | ||
{ | ||
"id": "cn-slides", | ||
"name": "CN Slides", | ||
"short_name": "Slides", | ||
"start_url": "http://localhost:8080/", | ||
"theme_color": "#000000", | ||
"background_color": "#000000", | ||
"lang": "de-DE", | ||
"orientation": "landscape", | ||
"display": "standalone", | ||
"icons": [ | ||
{ | ||
"purpose": "maskable", | ||
"sizes": "512x512", | ||
"src": "assets/icons/android-chrome-512x512.png", | ||
"type": "image/png" | ||
}, | ||
{ | ||
"purpose": "any", | ||
"sizes": "512x512", | ||
"src": "assets/icons/android-chrome-512x512.png", | ||
"type": "image/png" | ||
} | ||
] | ||
} |
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 |
---|---|---|
@@ -0,0 +1,51 @@ | ||
--- | ||
title: Broken Grid via CSS Grid | ||
layout: presentation.11ty.js | ||
slideClasses: wrap | ||
status: ok | ||
footer: | | ||
- [CSS Grid Layouts, MDN](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_grid_layout) | ||
- [A Complete Guide to CSS Grid, CSS Tricks](https://css-tricks.com/snippets/css/complete-guide-grid/) | ||
introtext: | | ||
The CSS grid layout module excels at dividing a page into major regions or defining the relationship in terms of size, position, and layer, between parts of a control built from HTML primitives. Like tables, grid layout enables an author to align elements into columns and rows. | ||
text1: | | ||
Outline of a simple grid. | ||
text2: | | ||
Adding «brokeability». | ||
codeExample1: | | ||
.grid{ | ||
display: grid; | ||
grid-template-columns: 1fr 1fr 1fr; | ||
gap: 1rem; | ||
} | ||
codeExample2: | | ||
.grid{ | ||
display: grid; | ||
grid-template-columns: 1fr 1fr 1fr; | ||
gap: 1rem; | ||
grid-template-rows: 1fr 1fr 1fr; | ||
grid-auto-rows: auto; | ||
} | ||
.element-1{ | ||
grid-column: 1 / 3; | ||
grid-row: 1 / 3; | ||
} | ||
--- | ||
|
||
{% interlude "Broken Grid via CSS Grid", "[Global Availability > 97%](https://caniuse.com/css-grid)" %} | ||
{% screenshotFs "./images/broken-grid-00.jpg", '{"transition":"fade", "classes":"no-shadow", "bu":"[Broken Grid](https://blog.hubspot.com/website/broken-grid-layouts) Example"}', 'fade' %} | ||
{% simpleText "CSS Grid Layout", introtext %} | ||
{% codeSmall "CSS Grid Layout", text1, codeExample1, "css", "fade" %} | ||
{% codeSmall "CSS Grid Layout", text2, codeExample2, "css", "fade" %} | ||
{% simpleText "🕺🏼", "" %} | ||
|
||
|
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,19 @@ | ||
--- | ||
title: Wie geht's weiter? | ||
layout: presentation.11ty.js | ||
slideClasses: wrap | ||
status: ok | ||
text: | | ||
<ul class="colored-list"> | ||
<li>Checkout <a href="https://leanweb.dev">The Lean Web</a></li> | ||
<li>Checkout <a href="https://io.google/2024/explore/6d6b2a35-ae3a-4f73-b40d-9dc4a8cf0df4/">What's new in the Web, Google I/O Talk from Rachel Andrew</a></li> | ||
<li>Checkout <a href="https://io.google/2024/explore/8ae18b72-028e-4722-9a05-4a480048e629/">Multi-page application View Transitions are here, Google I/O Talk from Bramus Van Damme</a></li> | ||
<li>Checkout <a href="https://io.google/2024/explore/83764202-1ca2-4491-a731-c4d3701624d4/">The state of CSS and Web UI, Google I/O Talk from Una Kravets</a></li> | ||
</ul> | ||
--- | ||
|
||
{% interlude "Wie geht's weiter?", "" %} | ||
{% simpleText "Diggin Deeper", text %} | ||
|
||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.