diff --git a/assets/styles/base/layout.scss b/assets/styles/base/layout.scss index 8a31742..d590521 100644 --- a/assets/styles/base/layout.scss +++ b/assets/styles/base/layout.scss @@ -174,6 +174,20 @@ HELPER └──────────────────────────────────┘ */ +.new { + display: inline-flex; + justify-content: center; + align-items: center; + background-color: var(--clr-text); + color: var(--clr-inverse); + font-size: var(--font-size--xsmall); + margin-left: 0.5em; + padding: 0.2em 0.5em 0; + border-radius: var(--border-radius); + cursor: default; + user-select: none; +} + @for $i from 1 through 4 { .bgs-#{$i} { background-color: var(--clr-play-#{$i}); diff --git a/content/links/index.md b/content/links/index.md index 6d9bd3c..92a2854 100644 --- a/content/links/index.md +++ b/content/links/index.md @@ -142,6 +142,10 @@ Du brauchst Code-Beispiele? Gern, hier sind die, die ich gebaut habe. Die sind a Einführung in PWA, sowie Leitfaden zur Entwicklung. - [Accessibility](https://developer.mozilla.org/en-US/docs/Web/Accessibility)\ Einführung und Dokumentation der `aria`-Rollen. +- [Variable Fonts](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Fonts/Variable_Fonts_Guide){{< new >}}\ + Font-Spezifikation, um statt mehrere Schriftschnitte nur einen (variablen) Font zu verwenden. +- [Can I use](https://caniuse.com/){{< new >}}\ + Zeigt den Unterstützung von Front-end-Technologien bei den Browsern. ### Schnell gelernt diff --git a/layouts/shortcodes/new.html b/layouts/shortcodes/new.html new file mode 100644 index 0000000..9cadd0b --- /dev/null +++ b/layouts/shortcodes/new.html @@ -0,0 +1 @@ +NEU