diff options
Diffstat (limited to 'src/styles/details.scss')
| -rw-r--r-- | src/styles/details.scss | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/styles/details.scss b/src/styles/details.scss new file mode 100644 index 00000000..86f496d6 --- /dev/null +++ b/src/styles/details.scss @@ -0,0 +1,22 @@ +details { + background-color: var(--base0011); + padding: 1rem; + border-radius: 8px; +} + +summary { + font-size: 1.05em; + font-weight: 600; + cursor: pointer; + list-style: none; +} + +summary small { + font-weight: normal; +} + +.details-unstyled { + background-color: transparent; + padding: 0; + border-radius: 0; +} |