{"id":19595009,"url":"https://github.com/zessx/24ss","last_synced_at":"2026-05-11T12:36:42.868Z","repository":{"id":13487200,"uuid":"16177605","full_name":"zessx/24ss","owner":"zessx","description":"A 24-columns solid grid for SASS","archived":false,"fork":false,"pushed_at":"2015-02-10T16:00:03.000Z","size":264,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-11-21T12:04:07.364Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://work.smarchal.com/24ss","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/zessx.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}},"created_at":"2014-01-23T16:14:32.000Z","updated_at":"2017-03-14T12:35:23.000Z","dependencies_parsed_at":"2022-09-21T01:01:37.516Z","dependency_job_id":null,"html_url":"https://github.com/zessx/24ss","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/zessx/24ss","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zessx%2F24ss","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zessx%2F24ss/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zessx%2F24ss/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zessx%2F24ss/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zessx","download_url":"https://codeload.github.com/zessx/24ss/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zessx%2F24ss/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32894945,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-10T13:40:02.631Z","status":"online","status_checked_at":"2026-05-11T02:00:05.975Z","response_time":120,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2024-11-11T08:45:28.954Z","updated_at":"2026-05-11T12:36:42.828Z","avatar_url":"https://github.com/zessx.png","language":"CSS","funding_links":["https://www.paypal.com/cgi-bin/webscr?cmd=_donations\u0026business=KTYWBM9HJMMSE\u0026lc=FR\u0026item_name=Buy%20a%20coffee%20to%20zessx%20%28Samuel%20Marchal%29\u0026currency_code=EUR\u0026bn=PP%2dDonationsBF%3abmac%3aNonHosted"],"categories":[],"sub_categories":[],"readme":"![24SSgrid](24SSgrid.png)\n\n24SSgrid is a 24-columns solid grid for SASS.\n\nInstallation\n------------\n1. Download the [latest release](https://github.com/zessx/24ss/releases) of 24SS\n2. Copy the `scss/24SSgrid.scss` file in your project\n3. Add this line to your main SASS file : `@import \"24SSgrid\";`\n\nCustomization\n-------------\nYou are able to specify a few variables to custom your grid, adding those lines to your main SASS file :\n\n    $sg-nb-column:        24;                   // columns number\n    $sg-class-prefix:     '';                   // class prefix\n    $sg-column-width:     30px;                 // columns width\n    $sg-gutter-width:     10px;                 // space between columns\n    $sg-margin-width:     5px;                  // space around rows\n    $sg-background-debug: rgba(255, 0, 0, 0.2); // color used to highlight block in debug mode\n\nUsage\n-----\n- Use the `.row` class on your wrapper\n- Use both `.col` and `.col-x` classes on your columns\n- Use `.offset-x` classes to manage empty columns\n- Use `.break` class to force next column to be on a new line\n- You can use nested columns\n\nExample :\n\n    \u003cdiv class=\"row\"\u003e\n        \u003cdiv class=\"col col-4\"\u003e\u003c/div\u003e\n        \u003cdiv class=\"col col-18 offset-2 break\"\u003e\n            \u003cdiv class=\"col col-6\"\u003e\u003c/div\u003e\n            \u003cp class=\"col col-6\"\u003e\u003c/p\u003e\n            \u003cspan class=\"col col-6\"\u003e\u003c/span\u003e\n        \u003c/div\u003e\n        \u003cdiv class=\"col col-12\"\u003e\u003c/div\u003e\n        \u003cdiv class=\"col col-12 break\"\u003e\u003c/div\u003e\n    \u003c/div\u003e\n\nDebug\n-----\nYou can use the `.debug` class to quickly highlight your grid blocks.   \nThis class can be used either on an element or on a parent :\n\n    \u003cdiv class=\"row\"\u003e\n        \u003cdiv class=\"col col-8 debug\"\u003e\u003c/div\u003e\n        \u003cdiv class=\"col col-8\"\u003e\u003c/div\u003e\n        \u003cdiv class=\"col col-8\"\u003e\u003c/div\u003e\n    \u003c/div\u003e\n    \u003cdiv class=\"row debug\"\u003e\n        \u003cdiv class=\"col col-8\"\u003e\u003c/div\u003e\n        \u003cdiv class=\"col col-8\"\u003e\u003c/div\u003e\n        \u003cdiv class=\"col col-8\"\u003e\u003c/div\u003e\n    \u003c/div\u003e\n\nFor any reason, you may want to disable the debug mode on a specific element.  \nThis can be done using the `.no-debug` class :\n\n    \u003cdiv class=\"row debug\"\u003e\n        \u003cdiv class=\"col col-8 no-debug\"\u003e\u003c/div\u003e\n        \u003cdiv class=\"col col-8\"\u003e\u003c/div\u003e\n        \u003cdiv class=\"col col-8\"\u003e\u003c/div\u003e\n    \u003c/div\u003e\n\nLegals\n------\n- Author : [zessx](https://github.com/zessx)\n- Licence : [MIT](http://opensource.org/licenses/MIT) \n- Contact : [@zessx](https://twitter.com/zessx)\n- Link  : [http://24ss.smarchal.com](http://24ss.smarchal.com)\n\nDonations\n---------\n\n[![Buy me a coffee !](http://doc.smarchal.com/bmac)](https://www.paypal.com/cgi-bin/webscr?cmd=_donations\u0026business=KTYWBM9HJMMSE\u0026lc=FR\u0026item_name=Buy%20a%20coffee%20to%20zessx%20%28Samuel%20Marchal%29\u0026currency_code=EUR\u0026bn=PP%2dDonationsBF%3abmac%3aNonHosted)\n\t\t\t\t\nTODO\n----\n- Add fluid grid\n- Find a way to avoid `.break` usage\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzessx%2F24ss","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzessx%2F24ss","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzessx%2F24ss/lists"}