{"id":13461844,"url":"https://github.com/michenriksen/css3buttons","last_synced_at":"2025-04-12T21:36:21.783Z","repository":{"id":56814590,"uuid":"1064872","full_name":"michenriksen/css3buttons","owner":"michenriksen","description":"Simple CSS3 framework for creating GitHub-style buttons","archived":false,"fork":false,"pushed_at":"2020-10-01T14:42:42.000Z","size":278,"stargazers_count":689,"open_issues_count":16,"forks_count":415,"subscribers_count":18,"default_branch":"master","last_synced_at":"2025-04-10T19:32:05.262Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"CSS","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/michenriksen.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2010-11-09T11:57:35.000Z","updated_at":"2025-02-04T03:53:08.000Z","dependencies_parsed_at":"2022-08-19T18:30:15.000Z","dependency_job_id":null,"html_url":"https://github.com/michenriksen/css3buttons","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/michenriksen%2Fcss3buttons","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michenriksen%2Fcss3buttons/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michenriksen%2Fcss3buttons/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michenriksen%2Fcss3buttons/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/michenriksen","download_url":"https://codeload.github.com/michenriksen/css3buttons/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248637322,"owners_count":21137531,"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-07-31T12:00:21.412Z","updated_at":"2025-04-12T21:36:21.750Z","avatar_url":"https://github.com/michenriksen.png","language":"CSS","readme":"--------------------\n--------------------\n--------------------\n\n#### Not Maintained\n\nThis project is no longer maintained. Consider using [Twitter Bootstrap](http://getbootstrap.com/) instead.\n\n--------------------\n--------------------\n--------------------\n\n# CSS3 Buttons #\n\n## What is this? ##\n\n[CSS3 buttons](http://css3buttons.michaelhenriksen.dk) is a simple *framework* for creating good-looking GitHub style button links.\n\n## Buttons ##\n\nTo create a button, the only thing you have to do is this:\n\n    \u003ca href=\"#\" class=\"button\"\u003eThis is a Button\u003c/a\u003e\n\nYou can also use the button tag:\n\n    \u003cbutton class=\"button\"\u003eThis is a Button\u003c/button\u003e\n\nIf you prefer a pill-like button with more rounded corners, you can add a `.pill` class to the button\n\n    \u003ca href=\"#\" class=\"pill button\"\u003eThis is a Pill Button\u003c/a\u003e\n\nSometimes when you have multiple buttons, it's a good thing to highlight the button with the primary action \nin order to give the user a visual clue of what action to take if in doubt. This can be accomplished by adding \na `.primary` class to the button\n\n    \u003ca href=\"#\" class=\"primary button\"\u003ePublish Post\u003c/a\u003e or \u003ca href=\"#\" class=\"button\"\u003eSave as Draft\u003c/a\u003e\n\n## Buttons with negative actions ##\n\nIf you have a button that triggers a negative action, like deleting data, it's good practice to warn the user \nby styling the button differently than the normal buttons. Give a button the class `.negative` and the \nhover-state will change to red\n\n    \u003ca href=\"#\" class=\"negative button\"\u003eDivide by Zero\u003c/a\u003e\n\n## Buttons with positive actions ##\n\nIf you have a button that triggers an action you want to encourage your users to do, you can give a button a `.positive` class and the hover-state will change to green\n\n    \u003ca href=\"#\" class=\"positive button\"\u003eSave the World\u003c/a\u003e\n\n## Grouped buttons ##\n\nYou can create grouped buttons that are linked together, like seen at Gmail and other places, \nby using the `.left`, `.middle` and `.right` classes:\n\n    \u003ca href=\"#\" class=\"left primary button\"\u003eArchive\u003c/a\u003e\n    \u003ca href=\"#\" class=\"middle button\"\u003eReport Spam\u003c/a\u003e\n    \u003ca href=\"#\" class=\"right negative button\"\u003eDelete\u003c/a\u003e\n\nYou can also add the pill class to grouped buttons if preferred:\n\n    \u003ca href=\"#\" class=\"left primary pill button\"\u003eArchive\u003c/a\u003e\n    \u003ca href=\"#\" class=\"middle pill button\"\u003eReport Spam\u003c/a\u003e\n    \u003ca href=\"#\" class=\"right negative pill button\"\u003eDelete\u003c/a\u003e\n\n## Buttons with icons ##\n\nCSS3 Buttons supports a wide range of icons that can easily be added to any button by adding a span tag inside the anchor \ntag with the class of `.icon` and any one of the provided icon classes:\n)\n    \u003ca href=\"#\" class=\"button\"\u003e\u003cspan class=\"magnifier icon\"\u003e\u003c/span\u003eSearch\u003c/a\u003e\n\nHere is a list of all the supported icon classes:\n\n * `.book`\n * `.calendar`\n * `.chat`\n * `.check`\n * `.clock`\n * `.cog`\n * `.comment`\n * `.cross`\n * `.downarrow`\n * `.fork`\n * `.heart`\n * `.home`\n * `.key`\n * `.leftarrow`\n * `.lock`\n * `.loop`\n * `.magnifier`\n * `.mail`\n * `.move`\n * `.pen`\n * `.pin`\n * `.plus`\n * `.reload`\n * `.rightarrow`\n * `.rss`\n * `.tag`\n * `.trash`\n * `.unlock`\n * `.uparrow`\n * `.user`\n\n## Big buttons ##\n\nIf you wish to emphasize a specific action you can add the `.big` class to make a more prominent *call-to-action* button:\n\n    \u003ca href=\"#\" class=\"big button\"\u003eCreate Project\u003c/a\u003e\n\n## Browser compatibility ##\n\nCSS3 Buttons works in all major browsers\n\n**Note:** Some CSS3 features used in CSS3 Buttons is not supported in Internet Explorer browsers! (IE 8 and under)\n\n## Installation ##\n\n 1. Drop `css3buttons.css` in your stylesheets folder\n 2. Drop `css3buttons_backgrounds.png` and `css3buttons_icons.png` in your images folder\n 3. Link to `css3buttons.css` in the head section of your HTML page\n\n## License ##\n\n### The [Unlicense](http://unlicense.org): ###\n\nThis is free and unencumbered software released into the public domain.\n\nAnyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.\n\nIn jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nFor more information, please refer to \u003chttp://unlicense.org/\u003e\n\n## Shout-Outs ##\n\n * Thanks to [GitHub](http://github.com) and [David Walsh](http://davidwalsh.name/github-css) for inspiration!\n * Icons used in CSS3 Buttons are from the excellent [Iconic pack](http://somerandomdude.com/projects/iconic/) by [some random dude](http://somerandomdude.com/)!\n\n## Contact ##\n\n### Found a Bug? ###\nPlease create a [ticket on GitHub](https://github.com/michenriksen/css3buttons/issues) With a description of the problem, browser and operating system information and how to reproduce the problem.\n\n### Need Help? ###\nYou can send me a private message on [GitHub](http://github.com/michenriksen/) and I'll do my best to help you.\n","funding_links":[],"categories":["Resources","CSS"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmichenriksen%2Fcss3buttons","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmichenriksen%2Fcss3buttons","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmichenriksen%2Fcss3buttons/lists"}