clavitor/commercial/website
James 09b749876d rebrand: rebuild clavitor-web binary with correct startup message 2026-03-24 03:24:04 -04:00
..
templates Initial commit: clavitor project structure (migrated from vault1984) 2026-03-22 05:32:24 -04:00
README.md Rename: vault1984 → clavitor throughout (dirs, binaries, web assets, CSS) 2026-03-22 05:43:40 -04:00
clavitor-web rebrand: rebuild clavitor-web binary with correct startup message 2026-03-24 03:24:04 -04:00
clavitor.css Rename: vault1984 → clavitor throughout (dirs, binaries, web assets, CSS) 2026-03-22 05:43:40 -04:00
favicon.svg Initial commit: clavitor project structure (migrated from vault1984) 2026-03-22 05:32:24 -04:00
go.mod Initial commit: clavitor project structure (migrated from vault1984) 2026-03-22 05:32:24 -04:00
main.go Initial commit: clavitor project structure (migrated from vault1984) 2026-03-22 05:32:24 -04:00
tailwind.min.css Initial commit: clavitor project structure (migrated from vault1984) 2026-03-22 05:32:24 -04:00
worldmap.svg Initial commit: clavitor project structure (migrated from vault1984) 2026-03-22 05:32:24 -04:00

README.md

Styleguide

clavitor.css is the single global stylesheet for all clavitor web surfaces — marketing site (clavitor-web) and the app UI (clavitor).

Rules (no exceptions)

  1. One stylesheet. clavitor.css only. No Tailwind, no inline styles, no <style> blocks.
  2. One rule per class. If you need a variant, add a modifier class (e.g. .card.gold), not a new inline style.
  3. One width. --width: 1280px via .container. Never hardcode a max-width anywhere else.
  4. One padding. --pad: 2rem via .container. Never hardcode horizontal padding.
  5. CSS variables for everything. Colors, spacing, radius, fonts — all via var(--*).

To use in clavitor app

Copy or symlink clavitor.css into clavitor/web/ and embed it. The token set (colors, fonts, radius) is shared — app UI should feel identical to the marketing site.