{"id":13480584,"url":"https://github.com/hasinhayder/tailwind-cards","last_synced_at":"2025-04-04T17:10:57.143Z","repository":{"id":48065048,"uuid":"346814976","full_name":"hasinhayder/tailwind-cards","owner":"hasinhayder","description":"A growing collection of text/image cards you can use/copy-paste in your tailwind css projects","archived":false,"fork":false,"pushed_at":"2024-06-09T13:56:52.000Z","size":459,"stargazers_count":589,"open_issues_count":0,"forks_count":76,"subscribers_count":9,"default_branch":"master","last_synced_at":"2025-03-28T16:11:36.550Z","etag":null,"topics":["learning-by-doing","tailwind-css","tailwindcss"],"latest_commit_sha":null,"homepage":"https://tailwind-cards.netlify.app","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/hasinhayder.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-11T19:30:50.000Z","updated_at":"2025-03-26T11:43:33.000Z","dependencies_parsed_at":"2024-09-22T18:46:29.570Z","dependency_job_id":null,"html_url":"https://github.com/hasinhayder/tailwind-cards","commit_stats":{"total_commits":61,"total_committers":1,"mean_commits":61.0,"dds":0.0,"last_synced_commit":"0306e1de3ca81c4867a100699d95331807e272ef"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hasinhayder%2Ftailwind-cards","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hasinhayder%2Ftailwind-cards/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hasinhayder%2Ftailwind-cards/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hasinhayder%2Ftailwind-cards/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hasinhayder","download_url":"https://codeload.github.com/hasinhayder/tailwind-cards/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247217222,"owners_count":20903009,"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":["learning-by-doing","tailwind-css","tailwindcss"],"created_at":"2024-07-31T17:00:41.850Z","updated_at":"2025-04-04T17:10:57.122Z","avatar_url":"https://github.com/hasinhayder.png","language":"CSS","funding_links":[],"categories":["UI Libraries, Components \u0026 Templates","CSS","📦 Legacy \u0026 Inactive Projects"],"sub_categories":[],"readme":"# Tailwind Cards\n\n[![Netlify Status](https://api.netlify.com/api/v1/badges/d9d621c2-bace-4ca0-95e0-3ad4f38318cf/deploy-status)](https://app.netlify.com/sites/tailwind-cards/deploys)\n\nI used the [TailWind CSS Boilerplate](https://github.com/hasinhayder/tailwind-boilerplate) project for this. \n\nA growing collection of text/image cards you can use/copy-paste in your tailwind css projects. Some of these cards have animated hover effects.\n\nCheck The Demo Here - https://tailwind-cards.netlify.app\n\n\n### start\n```sh\ngit clone this_repository\ncd this_directory\nyarn\nyarn dev\n```\n\n### build\n```sh\nyarn build\n```\n\nthen grab everything from the dist folder\n\n### change server port\nJust change the port number in `vite.config.js` file\n```javascript\nexport default {\n    plugins: [],\n    server: {\n      open: '/index.html',\n      port: 3116, //\u003c -change this\n    }\n}\n\n```\n\n### configure tailwind\nThere is a `tailwind.config.js` file with `purge` instructions and extra colors, feel free to customize it according to your need\n```javascript\nconst colors = require('tailwindcss/colors')\nmodule.exports = {\n  purge:['./*.html'],\n  darkMode: false, // or 'media' or 'class'\n  theme: {\n    fontFamily: {\n      display: ['Inter', 'system-ui', 'sans-serif'],\n      body: ['Inter', 'system-ui', 'sans-serif'],\n    },\n    extend: {\n      colors:{\n        fuchsia:colors.fuchsia,\n        cyan:colors.cyan,\n        emerald:colors.emerald,\n        teal:colors.teal,\n        orange:colors.orange,\n        yellow:colors.yellow,\n      },\n      maxHeight:{\n        116:\"29rem\", /*464px*/\n        125:\"31.25rem\", /*500px*/\n        140:\"35rem\", /*560px*/\n        150:\"37.5rem\", /*600px*/\n        190:\"47.5rem\", /*760px*/\n      },\n      height:{\n        116:\"29rem\", /*464px*/\n        125:\"31.25rem\", /*500px*/\n        140:\"35rem\", /*560px*/\n        150:\"37.5rem\", /*600px*/\n      },\n      minHeight:{\n        18:\"4.5rem\", /*72*/\n        62:\"15.5rem\", /*248px*/\n        150:\"37.5rem\", /*600px*/\n      },\n    },\n  },\n  variants: {\n    extend: {\n      display: [\"group-hover\"],\n      opacity: [\"group-hover\"],\n      translate: [\"group-hover\"],\n      transform: [\"group-hover\"],\n      width: [\"group-hover\", \"hover\"],\n      height: [\"group-hover\", \"hover\"],\n      padding: [\"group-hover\", \"hover\"],\n      animation: [\"group-hover\", \"hover\"],\n      scale: [\"group-hover\", \"hover\"],\n    },\n  },\n  plugins: [],\n}\n\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhasinhayder%2Ftailwind-cards","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhasinhayder%2Ftailwind-cards","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhasinhayder%2Ftailwind-cards/lists"}