{"id":19297674,"url":"https://github.com/archtaurus/tailwindcssplayground","last_synced_at":"2026-03-02T11:02:33.147Z","repository":{"id":130682714,"uuid":"344663071","full_name":"archtaurus/TailwindCSSPlayground","owner":"archtaurus","description":"TailwindCSS Playground","archived":false,"fork":false,"pushed_at":"2021-03-05T07:44:19.000Z","size":22,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-24T01:12:19.173Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","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/archtaurus.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-03-05T01:50:04.000Z","updated_at":"2021-03-05T01:57:55.000Z","dependencies_parsed_at":"2023-03-23T12:49:00.242Z","dependency_job_id":null,"html_url":"https://github.com/archtaurus/TailwindCSSPlayground","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/archtaurus/TailwindCSSPlayground","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/archtaurus%2FTailwindCSSPlayground","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/archtaurus%2FTailwindCSSPlayground/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/archtaurus%2FTailwindCSSPlayground/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/archtaurus%2FTailwindCSSPlayground/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/archtaurus","download_url":"https://codeload.github.com/archtaurus/TailwindCSSPlayground/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/archtaurus%2FTailwindCSSPlayground/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29999224,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-02T09:59:02.300Z","status":"ssl_error","status_checked_at":"2026-03-02T09:59:02.001Z","response_time":60,"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":[],"created_at":"2024-11-09T23:05:39.795Z","updated_at":"2026-03-02T11:02:33.110Z","avatar_url":"https://github.com/archtaurus.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TailwindCSS Playground\n\nThis repository is a playground for TailwindCSS. `code . \u0026 npm start` and have fun.\n\n## Use this repository\n\n``` shell\ngit clone git@github.com:archtaurus/TailwindCSSPlayground.git\ncd TailwindCSSPlayground\nnpm i -D\ncode . \u0026 npm start\n```\n\n## Build it by yourself\n\n``` shell\nmkdir TailwindCSSPlayground\ncd TailwindCSSPlayground\necho '{\n    \"name\": \"tailwindcss_playground\",\n    \"scripts\": {\n        \"start\": \"vite --open\"\n    },\n    \"author\": \"Zhao Xin \u003c7176466@qq.com\u003e\",\n    \"license\": \"MIT\",\n    \"devDependencies\": {\n        \"autoprefixer\": \"^10.2.4\",\n        \"postcss\": \"^8.2.7\",\n        \"tailwindcss\": \"^2.0.3\",\n        \"vite\": \"^2.0.5\"\n    }\n}' \u003e package.json\nnpm i -D\nnpx tailwindcss init -p\necho \"export default {\n    root: 'src',\n    server: {\n        port: 8000,\n        host: 'localhost',\n    },\n}\" \u003e vite.config.js\nmkdir src\ncurl \"https://tailwindcss.com/favicon-32x32.png\" -o src/tailwindcss.png\necho \"@tailwind base;\n@tailwind components;\n@tailwind utilities;\" \u003e src/style.css\necho '\u003c!DOCTYPE html\u003e\n\u003chtml lang=\"en\"\u003e\n    \u003chead\u003e\n        \u003cmeta charset=\"UTF-8\" /\u003e\n        \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" /\u003e\n        \u003ctitle\u003eTailwindCSS Playground\u003c/title\u003e\n        \u003clink rel=\"icon\" type=\"image/png\" sizes=\"32x32\" href=\"tailwindcss.png\" /\u003e\n        \u003clink rel=\"stylesheet\" href=\"style.css\" /\u003e\n    \u003c/head\u003e\n    \u003cbody class=\"antialiased text-gray-800 select-none\"\u003e\n        \u003cdiv class=\"flex items-center justify-center min-h-screen bg-green-900\"\u003e\n            \u003ch1\n                class=\"flex items-center justify-center gap-4 px-16 py-8 font-sans text-4xl font-bold bg-green-500 border-2 border-green-600 rounded-full shadow-md text-green-50\"\n            \u003e\n                \u003cimg class=\"inline-block p-2 border border-green-400 rounded-full bg-green-50\" src=\"tailwindcss.png\" alt=\"TailwindCSS\" /\u003e TailwindCSS Playground\n            \u003c/h1\u003e\n        \u003c/div\u003e\n    \u003c/body\u003e\n\u003c/html\u003e' \u003e src/index.html\ncode . \u0026 npm start\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farchtaurus%2Ftailwindcssplayground","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farchtaurus%2Ftailwindcssplayground","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farchtaurus%2Ftailwindcssplayground/lists"}