├── .DS_Store ├── 1_blog_cards ├── .DS_Store ├── images │ ├── ballons.jpeg │ ├── city.jpeg │ ├── rover.jpeg │ ├── user-1.jpg │ ├── user-2.jpg │ └── user-3.jpg ├── index.html └── style.css ├── 2_login ├── .DS_Store ├── images │ └── google.png ├── index.html └── style.css ├── 3_ads_manager ├── index.html └── style.css └── readme.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/ui_components/HEAD/.DS_Store -------------------------------------------------------------------------------- /1_blog_cards/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/ui_components/HEAD/1_blog_cards/.DS_Store -------------------------------------------------------------------------------- /1_blog_cards/images/ballons.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/ui_components/HEAD/1_blog_cards/images/ballons.jpeg -------------------------------------------------------------------------------- /1_blog_cards/images/city.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/ui_components/HEAD/1_blog_cards/images/city.jpeg -------------------------------------------------------------------------------- /1_blog_cards/images/rover.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/ui_components/HEAD/1_blog_cards/images/rover.jpeg -------------------------------------------------------------------------------- /1_blog_cards/images/user-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/ui_components/HEAD/1_blog_cards/images/user-1.jpg -------------------------------------------------------------------------------- /1_blog_cards/images/user-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/ui_components/HEAD/1_blog_cards/images/user-2.jpg -------------------------------------------------------------------------------- /1_blog_cards/images/user-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/ui_components/HEAD/1_blog_cards/images/user-3.jpg -------------------------------------------------------------------------------- /1_blog_cards/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/ui_components/HEAD/1_blog_cards/index.html -------------------------------------------------------------------------------- /1_blog_cards/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/ui_components/HEAD/1_blog_cards/style.css -------------------------------------------------------------------------------- /2_login/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/ui_components/HEAD/2_login/.DS_Store -------------------------------------------------------------------------------- /2_login/images/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/ui_components/HEAD/2_login/images/google.png -------------------------------------------------------------------------------- /2_login/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/ui_components/HEAD/2_login/index.html -------------------------------------------------------------------------------- /2_login/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/ui_components/HEAD/2_login/style.css -------------------------------------------------------------------------------- /3_ads_manager/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/ui_components/HEAD/3_ads_manager/index.html -------------------------------------------------------------------------------- /3_ads_manager/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/ui_components/HEAD/3_ads_manager/style.css -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/ui_components/HEAD/readme.md --------------------------------------------------------------------------------