diff --git a/docs/index.md b/docs/index.md index 7aec461..f2aa319 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,4 +1,4 @@ -# a rethink development +# rethink development The public reference for building and shipping with Rethink Studios: our shared libraries, our coding standards, and how to deploy a project on our network. diff --git a/docs/libraries.md b/docs/libraries.md index 416b25b..29216f1 100644 --- a/docs/libraries.md +++ b/docs/libraries.md @@ -123,11 +123,3 @@ Pin a tag in your dependencies — never an unpinned branch: } })(); - -!!! info "If the live list is empty or stale" - The fetch runs in your browser against the Gitea API and needs the org repos - to be readable unauthenticated (they are — it's a public org) and CORS to - allow the docs domain. If the list won't load, browse the org directly at - [git.rethinkstudios.io/rethink-public](https://git.rethinkstudios.io/rethink-public). - The fallback for a disabled live fetch is a webhook rebuild — a push to any - `rethink-public` repo triggers a site rebuild. diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css index d2b5586..42fab80 100644 --- a/docs/stylesheets/extra.css +++ b/docs/stylesheets/extra.css @@ -166,9 +166,12 @@ .rt-lib-table th, .rt-lib-table td { text-align: left; - padding: 0.55em 0.9em; + padding: 0.7em 1em; vertical-align: top; } +.rt-lib-table td:first-child { + white-space: nowrap; +} .rt-lib-table thead th { background-color: var(--rt-nav); color: var(--rt-text); @@ -183,16 +186,19 @@ background-color: rgba(86, 155, 204, 0.08); } .rt-lib-table td code { - background-color: var(--rt-surface); - color: var(--rt-primary-light); - padding: 0.1em 0.4em; - font-size: 0.85em; + background-color: rgba(85, 187, 255, 0.12); + color: #cfe6ff; + padding: 0.2em 0.55em; + font-size: 0.9em; + font-weight: 600; } .rt-lib-table a { - color: var(--rt-primary); -} -.rt-lib-table a:hover { color: var(--rt-accent); + font-weight: 600; +} +.rt-lib-table a:hover code { + background-color: rgba(85, 187, 255, 0.22); + color: #ffffff; } /* Language badge in the libs table. */ diff --git a/mkdocs.yml b/mkdocs.yml index 030ff1d..bd3507b 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -1,7 +1,7 @@ -site_name: a rethink development +site_name: rethink development site_description: Libraries, coding standards, and how to deploy on our network. site_url: https://docs.rethinkstudios.io/ -copyright: rethink development +copyright: rethink development (handbook) extra_css: - stylesheets/extra.css