{"id":23035608,"url":"https://github.com/aqeelshamz/neumorfic","last_synced_at":"2026-04-20T09:34:42.249Z","repository":{"id":144663660,"uuid":"291049901","full_name":"aqeelshamz/neumorfic","owner":"aqeelshamz","description":"neumorfic framework provides Neumorphic design elements (Button, TextBox, Radio, Checkbox, Switch, Nav Button, Progress Bar, Dropdown list) for your webpage.","archived":false,"fork":false,"pushed_at":"2020-08-28T16:27:36.000Z","size":427,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-14T10:41:33.922Z","etag":null,"topics":["css","css-framework","framework","html","jquery"],"latest_commit_sha":null,"homepage":"","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/aqeelshamz.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":"2020-08-28T13:10:44.000Z","updated_at":"2022-12-04T00:37:41.000Z","dependencies_parsed_at":"2024-03-30T23:15:10.977Z","dependency_job_id":null,"html_url":"https://github.com/aqeelshamz/neumorfic","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/aqeelshamz/neumorfic","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aqeelshamz%2Fneumorfic","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aqeelshamz%2Fneumorfic/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aqeelshamz%2Fneumorfic/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aqeelshamz%2Fneumorfic/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aqeelshamz","download_url":"https://codeload.github.com/aqeelshamz/neumorfic/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aqeelshamz%2Fneumorfic/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32041621,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T00:18:06.643Z","status":"online","status_checked_at":"2026-04-20T02:00:06.527Z","response_time":94,"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":["css","css-framework","framework","html","jquery"],"created_at":"2024-12-15T16:45:38.277Z","updated_at":"2026-04-20T09:34:42.202Z","avatar_url":"https://github.com/aqeelshamz.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# neumorfic\nneumorfic framework provides Neumorphic design elements (Button, TextBox, Radio, Checkbox, Switch, Nav Button, Progress Bar, Dropdown list) for your webpage.\n```\ngit clone https://github.com/aqeelshamz/neumorfic.git\n```\nclone into your project directory.\n\nAdd neumorfic to your webpage: \n\n```\n\u003clink rel=\"stylesheet\" href=\"./neumorfic/style.css\"\u003e\n\u003cscript src=\"./neumorfic/jquery.min.js\"\u003e\u003c/script\u003e\n\u003cscript src=\"./neumorfic/min.js\"\u003e\u003c/script\u003e\n```\n\nElements:\n# Button\n![button](button.png)\n\nAdd .button class to the element.\n\neg: ```\u003cinput type=\"button\" value=\"Login\" class=\"button\"\u003e```\n\n# TextBox\n![textbox](textbox.png)\n\nAdd .textbox class to the element.\n\neg: ```\u003cinput type=\"text\" class=\"textbox\"\u003e```\n\n# CheckBox\n![checkbox](checkbox.png)\n\nUse checkbox tag with input (type must be checkbox) and label inside.\n\neg: \n```\n\u003ccheckbox\u003e\n   \u003cinput type=\"checkbox\" id=\"check\"\u003e\n   \u003clabel for=\"check\"\u003e\u003c/label\u003eCheck\n\u003c/checkbox\u003e\n```\nYou can add multiple checkboxes. just change the value of 'id' and 'for' accordingly.\n\neg:\n```\n\u003ccheckbox\u003e\n    \u003cinput type=\"checkbox\" id=\"check\"\u003e\n    \u003clabel for=\"check\"\u003e\u003c/label\u003eApple\n\u003c/checkbox\u003e\n\u003ccheckbox\u003e\n    \u003cinput type=\"checkbox\" id=\"check2\"\u003e\n    \u003clabel for=\"check2\"\u003e\u003c/label\u003eMango\n\u003c/checkbox\u003e\n```\n# Radio\n![radio](radio.png)\n\nUse radio tag with input (type must be radio) and label inside.\n\neg:\n```\n\u003cradio\u003e\n    \u003cinput type=\"radio\" id=\"apple\" name=\"fruits\" checked=\"checked\"\u003e\n    \u003clabel for=\"apple\"\u003eApple\u003c/label\u003e\n\u003c/radio\u003e\n```\nYou can add multiple radio. just change the value of 'id' and 'for' accordingly. Use the same 'name' for radios in the same group.\neg:\n```\n\u003c!--Group 1--\u003e\n\u003cradio\u003e\n    \u003cinput type=\"radio\" id=\"apple\" name=\"fruits\" checked=\"checked\"\u003e\n    \u003clabel for=\"apple\"\u003eApple\u003c/label\u003e\n\u003c/radio\u003e\n\u003cradio\u003e\n    \u003cinput type=\"radio\" id=\"orange\" name=\"fruits\" checked=\"\"\u003e\n    \u003clabel for=\"orange\"\u003eOrange\u003c/label\u003e\n\u003c/radio\u003e\n\u003c!--Group 2--\u003e\n\u003cradio\u003e\n    \u003cinput type=\"radio\" id=\"dodge\" name=\"cars\" checked=\"checked\"\u003e\n    \u003clabel for=\"dodge\"\u003eDodge\u003c/label\u003e\n\u003c/radio\u003e\n\u003cradio\u003e\n    \u003cinput type=\"radio\" id=\"ferrari\" name=\"cars\" checked=\"\"\u003e\n    \u003clabel for=\"ferrari\"\u003eFerrari\u003c/label\u003e\n\u003c/radio\u003e\n```\n# Switch\n![switch](switch.png)\n\nUse switch tag with input (type must be checkbox) inside.\n\neg:\n```\n\u003cswitch\u003e\n   \u003cinput type=\"checkbox\" name=\"\"\u003e\n\u003c/switch\u003e\n```\n# Navigation Buttons\n![navbuttons](navbuttons.png)\n\nUse classes .nav-up, .nav-down, .nav-right, .nav-left :\n\nNavigation up:\n\n```\n\u003cinput type=\"button\" value=\"\" class=\"nav-up\"\u003e\n```\nNavigation down:\n\n```\n\u003cinput type=\"button\" value=\"\" class=\"nav-down\"\u003e\n```\nNavigation right:\n\n```\n\u003cinput type=\"button\" value=\"\" class=\"nav-right\"\u003e\n```\nNavigation left:\n\n```\n\u003cinput type=\"button\" value=\"\" class=\"nav-left\"\u003e\n```\n\n# Progress Bar\n![progressbar](progressbar.png)\n\nUse the code below:\n```\n\u003cdiv class=\"progress-bar\"\u003e\n    \u003cdiv class=\"progress\" style=\"width: 75%;\"\u003e\n        \u003cdiv class=\"percentage pg-toggle\"\u003e\n            \u003cp class=\"pg-text\"\u003e75%\u003c/p\u003e\n        \u003c/div\u003e\n    \u003c/div\u003e\n\u003c/div\u003e\n```\nYou just need to change the width of '.progress' using CSS. You don't need to update '.pg-text'. It will be updated automatically. \nYou can change the color of progress bar by changing 'background' property of '.progress' class.\n\nCSS code eg:\n```\n.progress{\n   background: blue; //makes the progress bar blue in color\n}\n```\n\n![color_progressbar](progressblue.png)\n\nYou can also add gradient to make it more attractive: \n\neg: ```background: linear-gradient(90deg, dodgerblue, cyan);```\n\n![gradient_progressbar](progressgrad.png)\n\n# Dropdown Menu\n![dropmenu](dropmenu.png)\n\nUse the code below:\n```\n\u003cdiv class=\"dropdown\"\u003e\n   \u003cinput type=\"button\" value=\"Dropdown\" class=\"button dropbtn\"\u003e\n   \u003cdiv class=\"list listtoggle\"\u003e\n       \u003cinput type=\"button\" value=\"Option 1\" class=\"button d-list\"\u003e\n       \u003cinput type=\"button\" value=\"Option 2\" class=\"button d-list\"\u003e\n       \u003cinput type=\"button\" value=\"Option 3\" class=\"button d-list\"\u003e\n       \u003cinput type=\"button\" value=\"Option 4\" class=\"button d-list\"\u003e\n   \u003c/div\u003e\n\u003c/div\u003e\n```\n\nAdd options inside div '.list listtoggle' by using input type=button:\n```\n\u003cinput type=\"button\" value=\"Option\" class=\"button d-list\"\u003e\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faqeelshamz%2Fneumorfic","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faqeelshamz%2Fneumorfic","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faqeelshamz%2Fneumorfic/lists"}