You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.selfolli:nth-child(3) { /* ✨ .self is an alias! */
84
84
background:hsl(26480%50%);
85
85
}
86
-
@keyframes \.me { /* Looped animation @keyframes can be scoped using \ */
86
+
@keyframes \.me { /* ♻️ Looped animation @keyframes can be scoped using \ */
87
87
0% { transform: translateY(0px); }
88
88
50% { transform: translateY(20px); }
89
89
100% { transform: translateY(0px); }
90
90
}
91
91
.me { animation: \.me 4s ease-in-out infinite; }
92
-
h1,h2,h3 { font-size:3rem; margin:10px; } /* Global CSS syntax works untouched. */
92
+
h1,h2,h3 { font-size:3rem; margin:10px; } /* Normal global CSS works untouched! */
93
93
</style>
94
94
<h1>🛸 Scoped style using .me</h1>
95
95
<ol>
@@ -99,6 +99,6 @@ <h1>🛸 Scoped style using .me</h1>
99
99
<li>⚡ Use live editing in the browser inspector to speed up your workflow, again!
100
100
</ol>
101
101
</div>
102
-
<buttononClick="window.open('https://github.com/gnat/css-scope-inline/blob/main/example.html');" style="font-weight: bold; font-family: sans-serif;">🐱 Visit the source code for this page.</button>
102
+
<buttononClick="window.open('https://github.com/gnat/css-scope-inline/blob/main/example.html');" style="font-weight: bold; font-family: sans-serif;">🐱 View code for this page.</button>
0 commit comments