{"id":21696740,"url":"https://github.com/kokushin/unitscss","last_synced_at":"2025-04-12T12:12:05.419Z","repository":{"id":57386481,"uuid":"95307651","full_name":"kokushin/unitscss","owner":"kokushin","description":"UNITS is a simple and beautiful  CSS component set.","archived":false,"fork":false,"pushed_at":"2017-12-26T02:44:24.000Z","size":21766,"stargazers_count":14,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-12T12:12:02.036Z","etag":null,"topics":["components","css-framework","css-grid","css3","simple","snippets","template","website"],"latest_commit_sha":null,"homepage":"https://unitscss.kokush.in/","language":"HTML","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/kokushin.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":"2017-06-24T15:58:39.000Z","updated_at":"2024-07-25T15:39:16.000Z","dependencies_parsed_at":"2022-09-05T05:00:29.133Z","dependency_job_id":null,"html_url":"https://github.com/kokushin/unitscss","commit_stats":null,"previous_names":["kokushin/units"],"tags_count":21,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kokushin%2Funitscss","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kokushin%2Funitscss/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kokushin%2Funitscss/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kokushin%2Funitscss/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kokushin","download_url":"https://codeload.github.com/kokushin/unitscss/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248565078,"owners_count":21125417,"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":["components","css-framework","css-grid","css3","simple","snippets","template","website"],"created_at":"2024-11-25T19:21:41.579Z","updated_at":"2025-04-12T12:12:05.396Z","avatar_url":"https://github.com/kokushin.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# UNITS\n\nSimple and beautiful component set.\n\n[https://unitscss.com/](https://unitscss.com/)\n\n![sample](https://raw.githubusercontent.com/kokushin/units/master/public/img/readme/img_01.png)\n\n[![npm version](https://badge.fury.io/js/unitscss.svg)](https://badge.fury.io/js/unitscss)\n[![npm download](http://img.shields.io/npm/dm/unitscss.svg)](https://www.npmjs.com/package/unitscss)\n[![GitHub license](https://img.shields.io/badge/license-MIT-brightgreen.svg)](https://raw.githubusercontent.com/kokushin/unitscss/master/LICENSE)\n\n## Document\n\n[English](https://unitscss.com/docs/) / [日本語](https://unitscss.com/ja/docs/)\n\n## Feature\n\nUNITS is a simple and beautiful component set. All you have to do is just load css files, copy and paste snippets, so easy that anyone can use.\n\n- **Use Quickly**  \nAll you have to do is just put units.css. Several components have been prepared already and you can choose components you want to use and apply it on your website.\n\n- **Simple and Beautiful**  \nEach components are beautifully designed. The design will be updated periodically, We wont't apply big changes, but apply only a small changes such as adjusting margins.\n\n- **Support Modern Browser**  \nUNITS is optimized to be used on th modern browser such as Microsoft Edge, Google Chrome, Firefox, Safari, How about old browsers? ... I'm sorry.\n\n- **Responsive Web design**  \nWe uses responsive web design approches to display optimized design on all devices.\n\n- **Periodical Update**  \nUNITS is still a beta version, it will be updated periodically to a major version. Unitil the major version, We will add new components, optimize the source codes, adjusting its design.\n\n- **Support Japanese**  \nBecause the developers are Japanese that we can support in Japanese. We have been optimizing web pages and updating documents written in japanese.\n\n## Installation\n\nUNITS itself can be downloaded from GitHub by cloning it or as a ZIP format, or you can download it via npm.\n\n```shell\n$ git clone https://github.com/kokushin/unitscss.git\n```\n\n```shell\n$ npm install unitscss --save\n```\n\nLet's load the necessary files.\n\n```html\n\u003clink rel=\"stylesheet\" href=\"https://fonts.googleapis.com/css?family=Roboto:400,700\"\u003e\n\u003clink rel=\"stylesheet\" href=\"path/to/units.min.css\"\u003e\n\n\u003cscript src=\"path/to/units.min.js\"\u003e\u003c/script\u003e\n```\n\n## Usage\n\nWrite exact html snippets and give it the right classes starting with `uc-`. For example in the sample below you can make a card component attached with covered image.\n\n```html\n\u003cdiv class=\"uc-card _float\"\u003e\n  \u003cdiv class=\"uc-card-image\" style=\"background-image:url(https://source.unsplash.com/random)\"\u003e\u003c/div\u003e\n  \u003ch3 class=\"uc-card-title\"\u003eSample card\u003c/h3\u003e\n  \u003cp\u003eLorem ipsum dolor sit amet, consectetur adipisicing elit. Aspernatur, et.\u003c/p\u003e\n  \u003cdiv class=\"uc-btn _primary\"\u003e\u003ca href=\"#\"\u003eButton\u003c/a\u003e\u003c/div\u003e\n\u003c/div\u003e\n```\n\nIt will be displayed on the browser like this:\n\n\u003cimg src=\"https://raw.githubusercontent.com/kokushin/units/master/public/img/readme/img_02.png\" width=\"560\"\u003e\n\n## Demo\n\n[https://unitscss.com/themes/](https://unitscss.com/themes/)\n\n## Snippets\n\n[Please check codepen.](https://codepen.io/search/pens/?q=units\u0026limit=kokushin)\n\n## Download\n[Download ZIP](https://github.com/kokushin/units/archive/master.zip)\n\n## Github\n[https://github.com/kokushin/units](https://github.com/kokushin/units)\n\n## Contributor\n[@kokushin](https://github.com/kokushin)\n\n## License\nCode and documentation copyright 2017 by kokushin. Code released under the [MIT License](https://github.com/kokushin/units/blob/master/LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkokushin%2Funitscss","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkokushin%2Funitscss","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkokushin%2Funitscss/lists"}