aboutsummaryrefslogtreecommitdiffhomepage
path: root/web/src/details.html
diff options
context:
space:
mode:
authorjohannst <johannst@users.noreply.github.com>2022-09-23 18:29:01 +0000
committerjohannst <johannst@users.noreply.github.com>2022-09-23 18:29:01 +0000
commit4e80ad2d34f307991562c364b157d1c7a502cd96 (patch)
treee80c41d021a6425312791fdd061b953115d26c14 /web/src/details.html
parentaced495844ee447ff03d7e422c6d4628271022a7 (diff)
downloadnotes-4e80ad2d34f307991562c364b157d1c7a502cd96.tar.gz
notes-4e80ad2d34f307991562c364b157d1c7a502cd96.zip
deploy: 29c1b6a06f8d5c546fbd5514731c4ac4c504f6c3
Diffstat (limited to 'web/src/details.html')
-rw-r--r--web/src/details.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/web/src/details.html b/web/src/details.html
new file mode 100644
index 0000000..8bbec30
--- /dev/null
+++ b/web/src/details.html
@@ -0,0 +1,13 @@
+<style>
+/* example: style based on attribute */
+details > summary {
+ color: red;
+}
+details[open] > summary {
+ color: green;
+}
+</style>
+<details>
+ <summary>Some text goes here</summary>
+ ... some more text goes here.
+</details>