diff --git a/app/web/static/style.css b/app/web/static/style.css index fcaf921..6b76300 100644 --- a/app/web/static/style.css +++ b/app/web/static/style.css @@ -653,6 +653,35 @@ button.submit:disabled { background: var(--faint); border-color: var(--faint); c } .dataset-picker .picker-toggle::before { content: "[ edit ]"; } .dataset-picker[open] .picker-toggle::before { content: "[ collapse ]"; color: var(--accent); } +.dataset-picker.intro .picker-toggle::before { content: "[ read ]"; } +.dataset-picker.intro[open] .picker-toggle::before { content: "[ collapse ]"; color: var(--accent); } + +.intro-prose { + max-width: 72ch; + color: var(--ink); + font-family: var(--serif); + font-size: 0.95rem; + line-height: 1.65; + padding: 0.3rem 0 0.4rem; +} +.intro-prose p { margin: 0 0 0.9rem; } +.intro-prose p:last-child { margin-bottom: 0; } +.intro-prose strong { + font-family: var(--sans); + font-weight: 600; + font-style: normal; + font-size: 0.82rem; + letter-spacing: 0.02em; + text-transform: uppercase; + color: var(--accent); + margin-right: 0.2rem; +} +.intro-prose a { + color: var(--accent); + text-decoration: underline; + text-underline-offset: 2px; +} +.intro-prose em { font-style: italic; } .dataset-picker .picker-body { padding: 0.4rem 2.2rem 1.6rem; diff --git a/app/web/templates/index.html b/app/web/templates/index.html index 1c30ab7..9691b94 100644 --- a/app/web/templates/index.html +++ b/app/web/templates/index.html @@ -4,7 +4,7 @@