aboutsummaryrefslogtreecommitdiff
path: root/examples/counter/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'examples/counter/style.css')
-rw-r--r--examples/counter/style.css25
1 files changed, 0 insertions, 25 deletions
diff --git a/examples/counter/style.css b/examples/counter/style.css
deleted file mode 100644
index b193f23..0000000
--- a/examples/counter/style.css
+++ /dev/null
@@ -1,25 +0,0 @@
-body {
- --cssx-children: container todo-container;
-}
-
-#container {
- --cssx-children: counter btn-increment;
- --count: '0';
-}
-
-#counter {
-}
-#counter::before {
- content: 'Count: ' var(--count);
-}
-
-#btn-increment {
- display: inline-block;
- padding: 0.5rem 1rem;
- border: 1px solid gray;
-
- --cssx-on-click: update(container, --count, calc(var(--count) + 1));
-}
-#btn-increment::after {
- content: 'Increment';
-}