{"id":40379725,"url":"https://github.com/zoxon/littera","last_synced_at":"2026-01-20T12:01:27.539Z","repository":{"id":37916926,"uuid":"156828388","full_name":"zoxon/littera","owner":"zoxon","description":"Nano typographic framework","archived":false,"fork":false,"pushed_at":"2025-08-13T06:10:43.000Z","size":556,"stargazers_count":3,"open_issues_count":1,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-13T11:46:16.483Z","etag":null,"topics":["css","framework","hacktoberfest","nano","stylus","typography"],"latest_commit_sha":null,"homepage":"http://zoxon.github.io/littera","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zoxon.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-11-09T07:52:04.000Z","updated_at":"2025-08-13T06:10:46.000Z","dependencies_parsed_at":"2023-02-08T09:16:21.118Z","dependency_job_id":null,"html_url":"https://github.com/zoxon/littera","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/zoxon/littera","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zoxon%2Flittera","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zoxon%2Flittera/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zoxon%2Flittera/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zoxon%2Flittera/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zoxon","download_url":"https://codeload.github.com/zoxon/littera/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zoxon%2Flittera/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28603295,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T10:46:13.255Z","status":"ssl_error","status_checked_at":"2026-01-20T10:42:51.865Z","response_time":117,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["css","framework","hacktoberfest","nano","stylus","typography"],"created_at":"2026-01-20T12:01:13.765Z","updated_at":"2026-01-20T12:01:27.515Z","avatar_url":"https://github.com/zoxon.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003cimg src=\"./logo.svg\" width=\"92\" height=\"170\" alt=\"Littera\" /\u003e\n\u003c/p\u003e\n\n\u003ch1 align=\"center\"\u003e\n  Littera\n\u003c/h1\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003cem\u003eNano typographic framework\u003c/em\u003e\n\u003c/p\u003e\n\n## Demo\n\n[Live Demo](http://zoxon.github.io/littera/)\n\n## 🚀 Core Features\n\n- **Minimal \u0026 Lightweight**\n  - Original size: ~5.8KB\n  - Gzipped size: ~1.9KB\n  - Zero dependencies\n  - Vanilla CSS (no JavaScript)\n\n- **Smart Defaults**\n  - Works seamlessly with [normalize.css](https://github.com/necolas/normalize.css)\n  - Beautiful typographic scale\n  - Responsive design out of the box\n  - System font stack for optimal performance\n\n- **Modern CSS**\n  - CSS Custom Properties for easy customization\n  - Dark mode support via `prefers-color-scheme`\n  - Logical properties for RTL/LTR support\n  - Micro-interactions and transitions\n\n## ⚡ Quickstart\n\nJust include the CSS file in your project and override the default custom properties:\n\n```html\n\u003clink href=\"./littera.css\" rel=\"stylesheet\" /\u003e\n\n\u003c!-- or --\u003e\n\n\u003cstyle\u003e\n  @import url(\"./littera.css\");\n\u003c/style\u003e\n```\n\n## Customization\n\n### Typography\n\n```css\n:root {\n  /* Font Families */\n  --font-primary: \"Helvetica Neue\", sans-serif;\n  --font-secondary: Georgia, serif;\n  --font-monospace: \"Courier New\", monospace;\n\n  /* Font Sizes */\n  --font-size-base: 1rem; /* 16px */\n  --font-size-h1: 2.5rem; /* 40px */\n  --font-size-h2: 2rem; /* 32px */\n  --font-size-h3: 1.75rem; /* 28px */\n  --font-size-h4: 1.5rem; /* 24px */\n  --font-size-h5: 1.25rem; /* 20px */\n  --font-size-h6: 1rem; /* 16px */\n\n  /* Line Height */\n  --line-height-base: 1.618; /* Golden ratio */\n}\n```\n\n### Color Scheme\n\n```css\n:root {\n  /* Background Colors */\n  --fill-primary: #ffffff;\n  --fill-secondary: #f8f9fa;\n\n  /* Text Colors */\n  --text-primary: #212529;\n  --text-accent-primary: #4263eb;\n  --text-accent-secondary: #9c36b5;\n  --text-accent-tertiary: #3b5bdb;\n  --text-gray: #e9ecef;\n  --text-gray-dark: #adb5bd;\n}\n```\n\n## 📦 What's Included\n\n- Complete typographic system\n  - Headings (h1-h6)\n  - Paragraphs and text elements\n  - Lists (ordered, unordered, description)\n  - Blockquotes and citations\n- Code formatting\n  - Syntax-highlighted code blocks\n  - Inline code snippets\n  - Pre-formatted text\n- Interactive elements\n  - Links with hover/focus states\n  - Keyboard navigation support\n  - Accessible focus indicators\n- Layout components\n  - Responsive tables\n  - Figures and captions\n  - Horizontal rules\n\n## License\n\n[The MIT License (MIT)](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzoxon%2Flittera","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzoxon%2Flittera","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzoxon%2Flittera/lists"}