A Pen by uli schaeffler on CodePen.
Created
May 28, 2025 19:12
-
-
Save ulrischa/42b051a47fb104cc46ee964767d5ef29 to your computer and use it in GitHub Desktop.
Layer
This file contains hidden or 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
| <h2 class="main-heading" id="specific-heading">Dies ist eine Überschrift</h2> |
This file contains hidden or 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
| @layer base, components, overrides; | |
| @layer overrides { | |
| h2 { color: red; } | |
| #specific-heading { color: orange;} | |
| } | |
| @layer base { | |
| h2 { color: blue; } | |
| .main-heading { font-family: sans-serif; } | |
| #specific-heading { color: yellow;} | |
| } | |
| @layer components { | |
| .main-heading { color: green; } | |
| h2 { text-align: center; } | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment