From 3bb498c28cd4b5228dafa46a69641f080fd2c183 Mon Sep 17 00:00:00 2001 From: Dan Guido Date: Mon, 1 Dec 2025 00:51:17 -0500 Subject: [PATCH] Use system fonts for offline support MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove Google Fonts dependency to ensure the web UI works completely offline. Uses high-quality system font stacks: - Mono: ui-monospace, SF Mono, Menlo, Consolas - Sans: system-ui, Segoe UI, Roboto, Helvetica Neue 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- app/static/style.css | 6 +++--- app/templates/base.html | 6 +----- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/app/static/style.css b/app/static/style.css index a951a12c..368a3948 100644 --- a/app/static/style.css +++ b/app/static/style.css @@ -45,9 +45,9 @@ --space-xl: 2rem; --space-2xl: 3rem; - /* Typography */ - --font-mono: 'IBM Plex Mono', 'JetBrains Mono', 'Fira Code', monospace; - --font-sans: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif; + /* Typography - system fonts only for offline support */ + --font-mono: ui-monospace, 'SF Mono', SFMono-Regular, Menlo, Consolas, 'Liberation Mono', monospace; + --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; /* Transitions */ --transition-fast: 150ms ease; diff --git a/app/templates/base.html b/app/templates/base.html index eecc3f3d..8725b14b 100644 --- a/app/templates/base.html +++ b/app/templates/base.html @@ -5,11 +5,7 @@ {% block title %}Algo VPN{% endblock %} - - - - - +