You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Drew Bednar c5af8b540f Testimonials done 3 years ago
css Testimonials done 3 years ago
img something viewable 3 years ago
.gitignore Initial project 3 years ago
README.md something viewable 3 years ago
index.html Testimonials done 3 years ago
input.css something viewable 3 years ago
package-lock.json Initial project 3 years ago
package.json something viewable 3 years ago
tailwind.config.js something viewable 3 years ago

README.md

Tailwind CSS Youtube Tutorial

Video: https://www.youtube.com/watch?v=dFgzHOX84xQ

Simple landing page tutorial using barebones Tailwind CSS

Tailwind CSS Docs: https://tailwindcss.com/docs/installation

Notes

Since this is a simple project we are just going to look for content in the root

module.exports = {
  content: ['./*.html'],
  theme: {
    extend: {},
  },
  plugins: [],
}

Same with out .css files

Build

npx tailwindcss -i ./input.css -o ./dist/output.css --watch

or run the package.json script

npm run build
``