{"id":23628623,"url":"https://github.com/itz-fork/zephyr","last_synced_at":"2025-11-08T01:30:21.599Z","repository":{"id":209383281,"uuid":"723875367","full_name":"Itz-fork/Zephyr","owner":"Itz-fork","description":"Minimal class-less css stylesheet to make boring sites look cool! [WIP]","archived":false,"fork":false,"pushed_at":"2023-11-27T18:28:47.000Z","size":23,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-12-28T00:46:42.490Z","etag":null,"topics":["classless-css","css-darkmode","css-theme","minimal-css"],"latest_commit_sha":null,"homepage":"https://itz-fork.github.io/Zephyr","language":"CSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Itz-fork.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2023-11-27T00:09:50.000Z","updated_at":"2023-11-27T18:21:42.000Z","dependencies_parsed_at":"2023-11-27T10:26:06.694Z","dependency_job_id":null,"html_url":"https://github.com/Itz-fork/Zephyr","commit_stats":null,"previous_names":["itz-fork/zephyr.css","itz-fork/zephyr"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Itz-fork%2FZephyr","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Itz-fork%2FZephyr/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Itz-fork%2FZephyr/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Itz-fork%2FZephyr/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Itz-fork","download_url":"https://codeload.github.com/Itz-fork/Zephyr/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239543644,"owners_count":19656405,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["classless-css","css-darkmode","css-theme","minimal-css"],"created_at":"2024-12-28T00:46:49.496Z","updated_at":"2025-11-08T01:30:21.337Z","avatar_url":"https://github.com/Itz-fork.png","language":"CSS","readme":"\u003ch1 align=\"center\"\u003eZephyr 🎐\u003c/h1\u003e\n\n\u003cp align=\"center\"\u003e\n  Minimal class-less css stylesheet to make boring sites look cool!\n\u003c/p\u003e\n\n\n\n## Usage\nZephyr doesn't intends to become a complete css component kit, it's a *css stylesheet* to make default HTML sites better\n\nCheck out the [demo](https://itz-fork.github.io/Zephyr). If you're satisfied give it a try~\n\n\n**In HTML**\n```html\n\u003clink rel=\"stylesheet\" href=\"https://cdn.jsdelivr.net/gh/Itz-fork/Zephyr-Css@latest/Zephyr/zephyr.all.css\"\u003e\n\n\u003c!-- Or just use what you want --\u003e\n\u003clink rel=\"stylesheet\" href=\"https://cdn.jsdelivr.net/gh/Itz-fork/Zephyr-Css@latest/Zephyr/styles/buttons.css\"\u003e\n\u003clink rel=\"stylesheet\" href=\"https://cdn.jsdelivr.net/gh/Itz-fork/Zephyr-Css@latest/Zephyr/styles/card.css\"\u003e\n\u003clink rel=\"stylesheet\" href=\"https://cdn.jsdelivr.net/gh/Itz-fork/Zephyr-Css@latest/Zephyr/styles/text.css\"\u003e\n\u003clink rel=\"stylesheet\" href=\"https://cdn.jsdelivr.net/gh/Itz-fork/Zephyr-Css@latest/Zephyr/styles/form.css\"\u003e\n```\n\n**In Css**\n```css\n@import url(\"https://cdn.jsdelivr.net/gh/Itz-fork/Zephyr-Css@latest/Zephyr/zephyr.all.css\");\n\n/* Again, use what you want */\n@import url(\"https://cdn.jsdelivr.net/gh/Itz-fork/Zephyr-Css@latest/Zephyr/styles/buttons.css\");\n@import url(\"https://cdn.jsdelivr.net/gh/Itz-fork/Zephyr-Css@latest/Zephyr/styles/card.css\");\n@import url(\"https://cdn.jsdelivr.net/gh/Itz-fork/Zephyr-Css@latest/Zephyr/styles/text.css\");\n@import url(\"https://cdn.jsdelivr.net/gh/Itz-fork/Zephyr-Css@latest/Zephyr/styles/form.css\");\n```\n\n## z-* helpers\nThese are additional data classes to make sure you don't have to touch css, unless it's necessary\n\nSyntax: `\u003celement data-z-*\u003e\u003c/element\u003e`\n\n- Buttons\n  - `data-z-red`\n  - `data-z-green`\n  - `data-z-white`\n  - `data-z-yellow`\n  - `data-z-purple`\n  - `data-z-blue` (accent color)\n\n- CSS cards\n  - Create a container div with `data-z-card-container`\n  - Add cards with `data-z-card`\n\n- Code blocks\n  - You can add code blocks with file names like this,\n  ```html\n  \u003cpre\u003e\n  \u003ccode\u003e\u003cspan\u003efile_name.js\u003c/span\u003e\n  console.log(\"My code\")\n  \u003c/code\u003e\n  \u003c/pre\u003e\n  ```\n\n- Text formatting\n  - Center text with `data-z-center`\n\n## Examples 👷\nTake a look at [Demo Html File](https://github.com/Itz-fork/Zephyr-Css/blob/main/index.html)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fitz-fork%2Fzephyr","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fitz-fork%2Fzephyr","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fitz-fork%2Fzephyr/lists"}