diff --git a/TODO.md b/TODO.md index 0a21032..495685e 100644 --- a/TODO.md +++ b/TODO.md @@ -11,6 +11,9 @@ Pending tasks have been split into topic files under [`todo/`](todo/README.md): ## Recently completed (this session) +- [x] `common.css` — `@font-face` for `police1` missing `format("opentype")` hint + `font-style`/`font-weight` descriptors; browser discarded table; added all three + + - [x] `scripts/deploy-server.sh` — add step 4: `systemctl reload nginx` runs automatically; remove manual reload instruction from justfile - [x] `nginx/posterg.conf` — add `script-src 'self' 'unsafe-inline'` to admin CSP; `default-src 'self'` was blocking OverType init script and live-reload poller diff --git a/public/assets/css/common.css b/public/assets/css/common.css index f2758a0..261a8b9 100644 --- a/public/assets/css/common.css +++ b/public/assets/css/common.css @@ -2,7 +2,9 @@ @font-face { font-family: "police1"; - src: url("../fonts/Combinedd.otf"); + src: url("../fonts/Combinedd.otf") format("opentype"); + font-style: normal; + font-weight: 400; font-display: swap; }