{"id":26501224,"url":"https://github.com/polight/decor","last_synced_at":"2026-04-13T16:02:43.283Z","repository":{"id":96920092,"uuid":"159085456","full_name":"Polight/decor","owner":"Polight","description":"🎨 Minimalist classless CSS for beautiful HTML by default.","archived":false,"fork":false,"pushed_at":"2020-10-22T03:24:56.000Z","size":13,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-20T16:44:37.434Z","etag":null,"topics":["bootstrap","bulma","classless","css","css3","framework","itcss","minimalism"],"latest_commit_sha":null,"homepage":"https://polight.github.io/decor/","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/Polight.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,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-11-25T23:43:49.000Z","updated_at":"2023-09-25T01:00:20.000Z","dependencies_parsed_at":null,"dependency_job_id":"884788e1-9797-409b-8b8c-d39eb4b7e2e1","html_url":"https://github.com/Polight/decor","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Polight/decor","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Polight%2Fdecor","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Polight%2Fdecor/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Polight%2Fdecor/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Polight%2Fdecor/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Polight","download_url":"https://codeload.github.com/Polight/decor/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Polight%2Fdecor/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31759540,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-13T15:25:13.801Z","status":"ssl_error","status_checked_at":"2026-04-13T15:25:09.162Z","response_time":93,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["bootstrap","bulma","classless","css","css3","framework","itcss","minimalism"],"created_at":"2025-03-20T16:37:31.945Z","updated_at":"2026-04-13T16:02:43.277Z","avatar_url":"https://github.com/Polight.png","language":"CSS","readme":"# Decor CSS\n\n_Decor_ makes your default HTML look nicer.\n\nIt is easy to customize or cherry-pick.\n\nNo pre/post-compiler, just plain basic CSS.\n\n[Demo page](https://polight.github.io/decor)\n\n\n## Usage\n\nAdd the CSS to your HTML to get your site \u003cem\u003edecor\u003c/em\u003eated.\n\n```html\n\u003clink rel=\"stylesheet\" href=\"https://cdn.jsdelivr.net/gh/polight/decor@master/decor.css\"\u003e\n```\n\nYour default HTML will be beautifully repainted.\n\n## Advanced Usage\n\nYou may restrict usage of Decor to only some type of component, or want to customize.\n\nTo do so, import only the _parts_ you want, eventually in a main css file of your own:\n\n```CSS\n@import url('https://cdn.jsdelivr.net/gh/polight/decor@master/parts/reset.css');\n@import url('https://cdn.jsdelivr.net/gh/polight/decor@master/parts/vars.css');\n@import url('/css/my-custom-vars.css');\n@import url('https://cdn.jsdelivr.net/gh/polight/decor@master/parts/tags.css');\n@import url('https://cdn.jsdelivr.net/gh/polight/decor@master/parts/buttons.css');\n@import url('https://cdn.jsdelivr.net/gh/polight/decor@master/parts/grids.css');\n@import url('https://cdn.jsdelivr.net/gh/polight/decor@master/parts/forms.css');\n@import url('https://cdn.jsdelivr.net/gh/polight/decor@master/parts/toolbars.css');\n```\n\n\u003e This is a quick sample. You probably want to download Decor with a specific version to stabilize the behavior.\n\n## Advanced Styles\n\nTo provide with a more advanced styling, Decor provides you with some basic classes:\n\n### Grid\n\n- `class=\"row\"`: aligns children on the same line. Conveninent to get 2 elements besides each others.\n- `class=\"row spaced\"`: aligned items with maximum space between each other.\n- `class=\"secondary\"`: should be used on a child of a `class=\"row\"` and will align the element to the right.\n\n### Buttons\n\nButtons are styled by default.\nSome classes give a specific style:\n- `\u003cbutton class=\"primary\"\u003e`: the button is a main action.\n- `\u003cbutton class=\"plain\"\u003e`: the button behaves similarly to a link.\n- `\u003cbutton class=\"danger\"\u003e`: the button is a dangerous action, like an error a deletion.\n- `\u003cbutton class=\"primary danger\"\u003e`: the button is a primary dangerous action.\n- `\u003ca class=\"button\"\u003e` will make a link look like a button. Same _primary_, _plain_ and _danger_ classes may be added.\n\n### Toolbar Widget\n\n- `class=\"toolbar\"`: provides a sticky toolbar. Great to have an action toolbar at the bottom of a section.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpolight%2Fdecor","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpolight%2Fdecor","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpolight%2Fdecor/lists"}