{"id":16199127,"url":"https://github.com/sandromiguel/cecilia-css","last_synced_at":"2025-07-19T15:02:44.017Z","repository":{"id":57146944,"uuid":"136728943","full_name":"SandroMiguel/cecilia-css","owner":"SandroMiguel","description":"A set of tools for quick development of web interfaces.","archived":false,"fork":false,"pushed_at":"2025-01-31T15:25:05.000Z","size":5896,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-15T13:18:14.701Z","etag":null,"topics":["css","css-framework","flexbox","responsive","sass"],"latest_commit_sha":null,"homepage":"https://sandromiguel.github.io/cecilia-css","language":"SCSS","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/SandroMiguel.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","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,"publiccode":null,"codemeta":null}},"created_at":"2018-06-09T14:11:07.000Z","updated_at":"2025-01-31T15:25:02.000Z","dependencies_parsed_at":"2024-05-09T15:44:37.891Z","dependency_job_id":"f07a18d4-7998-4bd9-9e2d-4a1ba1fb541d","html_url":"https://github.com/SandroMiguel/cecilia-css","commit_stats":{"total_commits":100,"total_committers":4,"mean_commits":25.0,"dds":0.49,"last_synced_commit":"acc806e21576417d86f28f5dd40e7f18402a6370"},"previous_names":[],"tags_count":14,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SandroMiguel%2Fcecilia-css","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SandroMiguel%2Fcecilia-css/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SandroMiguel%2Fcecilia-css/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SandroMiguel%2Fcecilia-css/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SandroMiguel","download_url":"https://codeload.github.com/SandroMiguel/cecilia-css/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243971189,"owners_count":20376784,"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","flexbox","responsive","sass"],"created_at":"2024-10-10T09:24:23.372Z","updated_at":"2025-03-19T05:30:51.162Z","avatar_url":"https://github.com/SandroMiguel.png","language":"SCSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Cecilia CSS](docs/assets/logo_cecilia_css.png)\n\n# Welcome to Cecilia CSS\n\n![npm](https://img.shields.io/npm/v/cecilia-css?color=%230374B4)\n![gzip size](https://img.badgesize.io/SandroMiguel/cecilia-css/master/dist/cecilia.min.css?compression=gzip\u0026color=blue)\n[![license](https://img.shields.io/badge/License-MIT-blue.svg?style=flat)](LICENSE)\n\n## About\n\nCecilia CSS is the CSS framework that I use in my personal projects. While it works, its purpose is to do some experiments while not relying on third-party frameworks, which are constantly changing.\n\n-   `lowerCamelCase` classes because they are easier to write in React\n-   Small file size: ~3kB (minified and gzipped)\n-   A responsive grid with 5 breakpoints\n-   Built with [flexbox](https://caniuse.com/#feat=flexbox)\n-   There is no JavaScript included\n-   Only one dependency: [normalize.css](https://github.com/necolas/normalize.css)\n\n[View demo](https://sandromiguel.github.io/cecilia-css)\n\n## Table of Contents\n\n1. [Getting Started](#getting-started)\n1. [Browser Support](#browser-support)\n1. [Development](#development)\n1. [Contributing](#contributing)\n1. [Questions](#questions)\n1. [Changelog](#changelog)\n1. [License](#license)\n\n## Getting Started\n\n### Use from the CDN\n\nThe easiest and fastest way.\n\n```\n\u003clink rel=\"stylesheet\" href=\"https://cdn.jsdelivr.net/npm/cecilia-css\"\u003e\n```\n\n### Install with npm\n\nInstall Cecilia CSS from npm.\n\n```sh\nnpm i cecilia-css\n```\n\nLink the CSS into your page.\n\n```\n\u003clink rel=\"stylesheet\" href=\"public/css/cecilia.min.css\"\u003e\n```\n\n### Install with Yarn\n\nInstall Cecilia CSS from Yarn.\n\n```sh\nyarn add cecilia-css\n```\n\nLink the CSS into your page.\n\n```\n\u003clink rel=\"stylesheet\" href=\"public/css/cecilia.min.css\"\u003e\n```\n\n### Download\n\nDownload the [latest release](https://github.com/SandroMiguel/cecilia-css/releases/latest) (entire project) or just\nthe minified file [cecilia.min.css](https://raw.githubusercontent.com/SandroMiguel/cecilia-css/master/dist/cecilia.min.css)\n\nCopy the `dist/cecilia.min.css` file to your project and link the CSS into your page.\n\n```\n\u003clink rel=\"stylesheet\" href=\"css/cecilia.min.css\"\u003e\n```\n\n## Browser Support\n\nOnly modern browsers\n\n## Development\n\n### 1. Clone this repo\n\n```\ngit clone https://github.com/SandroMiguel/cecilia-css.git\n```\n\n### 2. Install dev dependencies\n\n```\nyarn install\n```\n\n### 3. Create a branch\n\n```\ngit checkout -b branch-name\n```\n\n### 4. Compile your changes\n\nCompile `cecilia.scss` file to `cecilia.css`\n\n```\nyarn build\n```\n\n### 5. Commit your changes\n\n```\ngit commit -m \"Added a cool stuff\"\n```\n\n### 6. Push your branch\n\n```\ngit push origin my-branch\n```\n\n### 7. Open a pull request\n\nOpen a Pull Request with a clear title and description.\n\n## Contributing\n\nWant to contribute? All contributions are welcome. Please read the [contributing guide](CONTRIBUTING.md).\n\n## Questions\n\nIf you have questions tweet me at [@sandro_m_m](https://twitter.com/sandro_m_m) or [open an issue](https://github.com/SandroMiguel/cecilia-css/issues/new).\n\n## Changelog\n\nSee [CHANGELOG.md](CHANGELOG.md)\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details\n\n**~ sharing is caring ~**\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsandromiguel%2Fcecilia-css","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsandromiguel%2Fcecilia-css","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsandromiguel%2Fcecilia-css/lists"}