{"id":19864252,"url":"https://github.com/tachyons-css/tachyons-display-verbose","last_synced_at":"2025-05-02T05:30:56.968Z","repository":{"id":65513962,"uuid":"51957833","full_name":"tachyons-css/tachyons-display-verbose","owner":"tachyons-css","description":null,"archived":false,"fork":false,"pushed_at":"2022-09-26T21:31:23.000Z","size":28,"stargazers_count":4,"open_issues_count":0,"forks_count":3,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-06T22:42:45.213Z","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/tachyons-css.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":"2016-02-17T21:48:50.000Z","updated_at":"2019-12-09T18:52:03.000Z","dependencies_parsed_at":"2023-01-26T21:00:16.022Z","dependency_job_id":null,"html_url":"https://github.com/tachyons-css/tachyons-display-verbose","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/tachyons-css%2Ftachyons-display-verbose","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tachyons-css%2Ftachyons-display-verbose/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tachyons-css%2Ftachyons-display-verbose/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tachyons-css%2Ftachyons-display-verbose/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tachyons-css","download_url":"https://codeload.github.com/tachyons-css/tachyons-display-verbose/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251992669,"owners_count":21677018,"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-11-12T15:17:59.769Z","updated_at":"2025-05-02T05:30:53.367Z","avatar_url":"https://github.com/tachyons-css.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# tachyons-display-verbose 1.0.3\n\nPerformance based css module.\n\n### Stats\n\n426 | 36 | 36\n---|---|---\nbytes | selectors | declarations\n\n## Installation\n\n#### With [npm](https://npmjs.com)\n\n```\nnpm install --save-dev tachyons-display-verbose\n```\n\nLearn more about using css installed with npm:\n* https://webpack.github.io/docs/stylesheets.html\n* https://github.com/defunctzombie/npm-css\n\n#### With Git\n\nhttp:\n```\ngit clone https://github.com/tachyons-css/tachyons-display-verbose\n```\n\nssh:\n```\ngit clone git@github.com:tachyons-css/tachyons-display-verbose.git\n```\n\n## Usage\n\n#### Using with [Postcss](https://github.com/postcss/postcss)\n\nImport the css module\n\n```css\n@import \"tachyons-display-verbose\";\n```\n\nThen process the css using the [`tachyons-cli`](https://github.com/tachyons-css/tachyons-cli)\n\n```sh\n$ npm i -g tachyons-cli\n$ tachyons path/to/css-file.css \u003e dist/t.css\n```\n\n#### Using the css\n\n##### CDN\nThe easiest and most simple way to use the css is to use the cdn hosted version. Include it in the head of your html with:\n\n```\n\u003clink rel=\"stylesheet\" href=\"http://unpkg.com/tachyons-display-verbose@1.0.3/css/tachyons-display-verbose.min.css\" /\u003e\n```\n\n##### Locally\nThe built css is located in the `css` directory. It contains an unminified and minified version.\nYou can either cut and paste that css or link to it directly in your html.\n\n```html\n\u003clink rel=\"stylesheet\" href=\"path/to/module/css/tachyons-display-verbose\"\u003e\n```\n\n#### Development\n\nThe source css files can be found in the `src` directory.\nRunning `$ npm start` will process the source css and place the built css in the `css` directory.\n\n## The css\n\n```css\n/*\n\n   DISPLAY\n\n   Base:\n    d = display\n\n   Modifiers:\n    n     = none\n    b     = block\n    ib    = inline-block\n    it    = inline-table\n    t     = table\n    tc    = table-cell\n    tr    = table-row\n    tcol  = table-column\n    tcolg = table-column-group\n\n   Media Query Extensions:\n     -ns = not-small\n     -m  = medium\n     -l  = large\n\n*/\n.display-none { display: none; }\n.display-inline { display: inline; }\n.display-block { display: block; }\n.display-inline-block { display: inline-block; }\n.display-inline-table { display: inline-table; }\n.display-table { display: table; }\n.display-table-cell { display: table-cell; }\n.display-table-column { display: table-column; }\n.display-table-column-group { display: table-column-group; }\n@media screen and (min-width: 48em) {\n .display-none-ns { display: none; }\n .display-inline-ns { display: inline; }\n .display-block-ns { display: block; }\n .display-inline-block-ns { display: inline-block; }\n .display-inline-table-ns { display: inline-table; }\n .display-table-ns { display: table; }\n .display-table-cell-ns { display: table-cell; }\n .display-table-column-ns { display: table-column; }\n .display-table-column-group-ns { display: table-column-group; }\n}\n@media screen and (min-width: 48em) and (max-width: 64em) {\n .display-none-m { display: none; }\n .display-inline-m { display: inline; }\n .display-block-m { display: block; }\n .display-inline-block-m { display: inline-block; }\n .display-inline-table-m { display: inline-table; }\n .display-table-m { display: table; }\n .display-table-cell-m { display: table-cell; }\n .display-table-column-m { display: table-column; }\n .display-table-column-group-m { display: table-column-group; }\n}\n@media screen and (min-width: 64em) {\n .display-none-l { display: none; }\n .display-inline-l { display: inline; }\n .display-block-l { display: block; }\n .display-inline-block-l { display: inline-block; }\n .display-inline-table-l { display: inline-table; }\n .display-table-l { display: table; }\n .display-table-cell-l { display: table-cell; }\n .display-table-column-l { display: table-column; }\n .display-table-column-group-l { display: table-column-group; }\n}\n```\n\n## Contributing\n\n1. Fork it\n2. Create your feature branch (`git checkout -b my-new-feature`)\n3. Commit your changes (`git commit -am 'Add some feature'`)\n4. Push to the branch (`git push origin my-new-feature`)\n5. Create new Pull Request\n\n## Authors\n\n* [mrmrs](http://mrmrs.io)\n* [johno](http://johnotander.com)\n\n## License\n\nISC\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftachyons-css%2Ftachyons-display-verbose","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftachyons-css%2Ftachyons-display-verbose","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftachyons-css%2Ftachyons-display-verbose/lists"}