{"id":15602448,"url":"https://github.com/fiveisprime/simple-grid","last_synced_at":"2025-03-29T13:24:34.474Z","repository":{"id":7266620,"uuid":"8579503","full_name":"fiveisprime/simple-grid","owner":"fiveisprime","description":"Simple CSS grid layout.","archived":false,"fork":false,"pushed_at":"2014-01-25T03:04:27.000Z","size":670,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-04T14:20:14.530Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/fiveisprime.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":"2013-03-05T12:42:09.000Z","updated_at":"2017-10-19T21:18:43.000Z","dependencies_parsed_at":"2022-09-07T03:33:08.636Z","dependency_job_id":null,"html_url":"https://github.com/fiveisprime/simple-grid","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fiveisprime%2Fsimple-grid","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fiveisprime%2Fsimple-grid/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fiveisprime%2Fsimple-grid/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fiveisprime%2Fsimple-grid/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fiveisprime","download_url":"https://codeload.github.com/fiveisprime/simple-grid/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246188679,"owners_count":20737746,"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":[],"created_at":"2024-10-03T02:41:33.355Z","updated_at":"2025-03-29T13:24:34.454Z","avatar_url":"https://github.com/fiveisprime.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"Simple Grid\n===========\n\nA simple, responsive CSS grid layout. A nice starting point for getting a\nresponsive site up and running quickly without too much boilerplate.\n\n# Usage\n\nSimple grid is meant to be easy to read and use - the code for the grid system\nis a mere 87 lines. The grid uses a width of 90% that maxes out at 1000 pixels\nand will scale correctly with a single media query for mobile.\n\nSimple grid is a twelve column grid system and includes the following classes:\n\n* **.container**\n* **.clearfix**\n* **.grid_n** (1-12)\n* **.alpha**\n* **.omega**\n\nThat's it.\n\n### Example\n\n```html\n\u003carticle class=\"container clearfix\"\u003e\n\n  \u003c!-- full width header --\u003e\n  \u003cheader class=\"grid_12\"\u003e\n    \u003ch1\u003eHeader\u003c/h1\u003e\n    \u003ch2\u003eTagline\u003c/h2\u003e\n  \u003c/header\u003e\n\n  \u003c!-- 50/50 split content --\u003e\n  \u003csection class=\"grid_6 alpha\"\u003e\n    \u003ch3\u003eSection Header\u003c/h3\u003e\n    \u003cp\u003e\n      Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n      tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim\n      veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea\n      commodo consequat. Duis aute irure dolor in reprehenderit in voluptate\n      velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat\n      cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id\n      est laborum.\n    \u003c/p\u003e\n  \u003c/section\u003e\n  \u003csection class=\"grid_6 omega\"\u003e\n    \u003ch3\u003eSection Header\u003c/h3\u003e\n    \u003cp\u003e\n      Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n      tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim\n      veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea\n      commodo consequat. Duis aute irure dolor in reprehenderit in voluptate\n      velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat\n      cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id\n      est laborum.\n    \u003c/p\u003e\n  \u003c/section\u003e\n\n\u003c/article\u003e\n```\n\nResult\n\n![Full Width](images/full.png)\n\n![Mobile](images/mobile.png)\n\n# What's Included\n\nThis repository includes all you need to build your own site styles. This\nincludes:\n\n1. Normalize.css\n1. user.css (for your styles)\n1. Myth CSS Processing\n1. CSS-Clean Minification\n\nIf you would prefer to exclude normalize, simply remove it from the `SRC`\nvariable in the Makefile. Include additional stylesheets by adding them to the\n`src` directory and adding them to the `SRC` variable in the Makefile.\n\n*Because simple grid is built using myth, you may use CSS features without\nprefixes.*\n\n# Building\n\nInstall the dependencies then run the make task.\n\n    $ npm install\n    ...\n    $ make\n    ===========================\n    dist/style.css written\n    dist/style.min.css written\n    ===========================\n\n# License\n\nThe MIT License (MIT)\n\nCopyright (c) 2014 Matt Hernandez\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffiveisprime%2Fsimple-grid","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffiveisprime%2Fsimple-grid","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffiveisprime%2Fsimple-grid/lists"}