├── .gitignore ├── card-1 ├── image.jpeg ├── index.html └── styles.css ├── card-2 ├── check.svg ├── index.html └── styles.css ├── card-3 ├── image.jpeg ├── index.html ├── profile.jpg └── styles.css └── card-4 ├── index.html └── styles.css /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_STORE -------------------------------------------------------------------------------- /card-1/image.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-cards/HEAD/card-1/image.jpeg -------------------------------------------------------------------------------- /card-1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-cards/HEAD/card-1/index.html -------------------------------------------------------------------------------- /card-1/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-cards/HEAD/card-1/styles.css -------------------------------------------------------------------------------- /card-2/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-cards/HEAD/card-2/check.svg -------------------------------------------------------------------------------- /card-2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-cards/HEAD/card-2/index.html -------------------------------------------------------------------------------- /card-2/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-cards/HEAD/card-2/styles.css -------------------------------------------------------------------------------- /card-3/image.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-cards/HEAD/card-3/image.jpeg -------------------------------------------------------------------------------- /card-3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-cards/HEAD/card-3/index.html -------------------------------------------------------------------------------- /card-3/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-cards/HEAD/card-3/profile.jpg -------------------------------------------------------------------------------- /card-3/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-cards/HEAD/card-3/styles.css -------------------------------------------------------------------------------- /card-4/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-cards/HEAD/card-4/index.html -------------------------------------------------------------------------------- /card-4/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-cards/HEAD/card-4/styles.css --------------------------------------------------------------------------------