{"id":15069939,"url":"https://github.com/sh20raj/skylinecss","last_synced_at":"2025-03-16T07:25:06.614Z","repository":{"id":229102728,"uuid":"775763863","full_name":"SH20RAJ/SkyLineCSS","owner":"SH20RAJ","description":"A Quick UI CSS Framework - SkyLineCSS","archived":false,"fork":false,"pushed_at":"2024-04-01T09:10:26.000Z","size":66,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-26T16:47:16.532Z","etag":null,"topics":["css","css-framework","css3","sh20raj"],"latest_commit_sha":null,"homepage":"https://sh20raj.github.io/SkyLineCSS/","language":"CSS","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/SH20RAJ.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2024-03-22T01:56:45.000Z","updated_at":"2024-04-20T17:30:04.000Z","dependencies_parsed_at":"2024-04-01T09:33:26.686Z","dependency_job_id":null,"html_url":"https://github.com/SH20RAJ/SkyLineCSS","commit_stats":null,"previous_names":["sh20raj/skylinecss"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SH20RAJ%2FSkyLineCSS","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SH20RAJ%2FSkyLineCSS/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SH20RAJ%2FSkyLineCSS/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SH20RAJ%2FSkyLineCSS/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SH20RAJ","download_url":"https://codeload.github.com/SH20RAJ/SkyLineCSS/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243838032,"owners_count":20355974,"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":["css","css-framework","css3","sh20raj"],"created_at":"2024-09-25T01:45:39.518Z","updated_at":"2025-03-16T07:25:06.567Z","avatar_url":"https://github.com/SH20RAJ.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SkyLineCSS\n\nA Quick UI CSS Framework - SkyLineCSS\n\nSkyLineCSS is a lightweight, modern CSS framework designed to make building responsive web interfaces faster and easier. It provides a set of utility classes and components to streamline your development process.\n\n[![Visitors](https://api.visitorbadge.io/api/visitors?path=https%3A%2F%2Fgithub.com%2FSH20RAJ%2FSkyLineCSS%2F\u0026labelColor=%23f47373\u0026countColor=%23d9e3f0\u0026style=flat)](https://visitorbadge.io/status?path=https%3A%2F%2Fgithub.com%2FSH20RAJ%2FSkyLineCSS%2F) [![](https://data.jsdelivr.com/v1/package/gh/sh20raj/SkyLineCSS/badge)](https://www.jsdelivr.com/package/gh/sh20raj/SkyLineCSS)\n\n## Features\n\n- Easy to use: Quickly build layouts with utility classes.\n- Responsive: Designed to work well on all screen sizes.\n- Customizable: Easily override styles or extend the framework.\n- Lightweight: Minimal file size for fast loading.\n- [Playground](https://codes20.github.io/?prefill=%3C%21--%20Latest%20version%20--%3E%0A%3Clink%20rel%3D%22stylesheet%22%20href%3D%22https%3A%2F%2Fcdn.jsdelivr.net%2Fgh%2Fsh20raj%2FSkyLineCSS%40latest%2Fskyline.min.css%22%3E%0A%0A%0A%0A%0A%0A): Play with skyline code on playground to create something interesting\n\n## Installation\n\nYou can include SkyLineCSS in your project using one of the following methods: [See Docs](/docs) | [GitBook Docs](https://sh20raj.gitbook.io/skylinecss)\n\n### CDN\n\n```html\n\u003c!-- Latest version --\u003e\n\u003clink rel=\"stylesheet\" href=\"https://cdn.jsdelivr.net/gh/sh20raj/SkyLineCSS@latest/skyline.min.css\"\u003e\n```\n\n### Download\n\nYou can also download the CSS file from the [releases](https://github.com/sh20raj/SkyLineCSS/) section and include it in your project.\n\n## Usage\n\nTo use SkyLineCSS, simply include the CSS file in the `\u003chead\u003e` section of your HTML file:\n\n```html\n\u003clink rel=\"stylesheet\" href=\"path/to/skyline.min.css\"\u003e\n```\n\nThen, start using the utility classes and components in your HTML:\n\n```html\n\u003cdiv class=\"container\"\u003e\n  \u003ch1\u003eSkyLineCSS Example\u003c/h1\u003e\n  \u003cbutton class=\"btn btn-primary\"\u003ePrimary Button\u003c/button\u003e\n\u003c/div\u003e\n```\n\n## Components\n\nSkyLineCSS includes the following components:\n\n- Buttons\n- Forms\n- Alerts\n- Cards\n- Flexbox utilities\n- Table styles\n- Box shadows\n\n## Dark Mode\n\nSkyLineCSS also comes with a dark mode option. To activate dark mode, add the `dark` class to the `\u003cbody\u003e` tag or any parent element:\n\n```html\n\u003cbody class=\"dark\"\u003e\n  \u003c!-- Content --\u003e\n\u003c/body\u003e\n```\n\n## Contributing\n\nContributions are welcome! If you have improvements or new features to add, please open an issue or a pull request.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsh20raj%2Fskylinecss","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsh20raj%2Fskylinecss","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsh20raj%2Fskylinecss/lists"}