
Recently Used
66 |
-
85 |
App Project
93 |
-
102 |
Project: fitbit
110 |
-
119 |
- +3 122 |
Client Documents
128 |Recent Files
133 |



├── .gitignore ├── README.md ├── dribbble-imran-dashboard-cloud-io.png ├── images ├── alert-circle.svg ├── align-justify.svg ├── bell.svg ├── chevron-down.svg ├── clock.svg ├── face1.jpg ├── face10.jpg ├── face11.jpg ├── face12.jpg ├── face2.jpg ├── face3.jpg ├── face4.jpg ├── face5.jpg ├── face6.jpg ├── face7.jpg ├── face8.jpg ├── face9.jpg ├── folder-plus.svg ├── folder.svg ├── grid.svg ├── home.svg ├── icon-docs-lg.png ├── icon-double-folder.png ├── icon-other-lg.png ├── icon-pdf.png ├── icon-photo-lg.png ├── icon-photo.png ├── icon-ps.png ├── icon-single-folder.png ├── icon-video-lg.png ├── icon-zip.png ├── imran.png ├── logo.png ├── more-horizontal.svg ├── more-vertical.svg ├── search.svg ├── settings.svg ├── trash-2.svg ├── upload.svg └── users.svg ├── index.html └── style.css /.gitignore: -------------------------------------------------------------------------------- 1 | .cache 2 | dist/ 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # CSS Layout Challenge 2 | 3 | We're building this layout by [Imran🏀 on Dribbble](https://dribbble.com/shots/10747116-Cloud-Web-App): 4 | 5 |  6 | 7 | [Sign up for the challenge here](https://daveceddia.com/css-layout-challenge/) and work through building the solution (get as far as you can) by Wednesday 3/25, and on Wednesday I'll do a livestream working through it together. 8 | 9 | This repo will have a solution posted once the challenge is over, and a link to the livestream. 10 | 11 | We're using [**Issues**](issues) on this repo as our little community forum. Post progress and questions there! 12 | 13 | ## Resources 14 | 15 | Some things I found helpful as I was working through this: 16 | 17 | * [The original design by Imran on Dribbble](https://dribbble.com/shots/10747116-Cloud-Web-App) (note: not my design!) 18 | * [CSS Grid Garden](https://cssgridgarden.com/) because I'm still learning CSS grid 19 | * [CSS Tricks: Complete Guide to CSS Grid](https://css-tricks.com/snippets/css/complete-guide-grid/) because same 20 | * [This snippet of code for an sr-only class](https://a11y-guidelines.orange.com/web_EN/exemples/masquage/index.html) to make content only visible to screen readers 21 | * [Every Layout](https://every-layout.dev/) with good ideas on how to make resilient CSS layouts 22 | * [Feather Icons](https://feathericons.com/) - free icon set with adjustable color/size/stroke, single-click-to-download icons as needed 23 | * [This CSS filter generator](https://codepen.io/sosuke/pen/Pjoqqp) if you want to recolor an SVG without pasting the SVG itself into the document (or, easier: recolor the icons in Feather before downloading!) 24 | 25 | -------------------------------------------------------------------------------- /dribbble-imran-dashboard-cloud-io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dceddia/css-layout-challenge/ff92d1f41595db0ddba3dff3e95b137d479e7c8e/dribbble-imran-dashboard-cloud-io.png -------------------------------------------------------------------------------- /images/alert-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/align-justify.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/bell.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/chevron-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/clock.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/face1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dceddia/css-layout-challenge/ff92d1f41595db0ddba3dff3e95b137d479e7c8e/images/face1.jpg -------------------------------------------------------------------------------- /images/face10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dceddia/css-layout-challenge/ff92d1f41595db0ddba3dff3e95b137d479e7c8e/images/face10.jpg -------------------------------------------------------------------------------- /images/face11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dceddia/css-layout-challenge/ff92d1f41595db0ddba3dff3e95b137d479e7c8e/images/face11.jpg -------------------------------------------------------------------------------- /images/face12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dceddia/css-layout-challenge/ff92d1f41595db0ddba3dff3e95b137d479e7c8e/images/face12.jpg -------------------------------------------------------------------------------- /images/face2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dceddia/css-layout-challenge/ff92d1f41595db0ddba3dff3e95b137d479e7c8e/images/face2.jpg -------------------------------------------------------------------------------- /images/face3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dceddia/css-layout-challenge/ff92d1f41595db0ddba3dff3e95b137d479e7c8e/images/face3.jpg -------------------------------------------------------------------------------- /images/face4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dceddia/css-layout-challenge/ff92d1f41595db0ddba3dff3e95b137d479e7c8e/images/face4.jpg -------------------------------------------------------------------------------- /images/face5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dceddia/css-layout-challenge/ff92d1f41595db0ddba3dff3e95b137d479e7c8e/images/face5.jpg -------------------------------------------------------------------------------- /images/face6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dceddia/css-layout-challenge/ff92d1f41595db0ddba3dff3e95b137d479e7c8e/images/face6.jpg -------------------------------------------------------------------------------- /images/face7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dceddia/css-layout-challenge/ff92d1f41595db0ddba3dff3e95b137d479e7c8e/images/face7.jpg -------------------------------------------------------------------------------- /images/face8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dceddia/css-layout-challenge/ff92d1f41595db0ddba3dff3e95b137d479e7c8e/images/face8.jpg -------------------------------------------------------------------------------- /images/face9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dceddia/css-layout-challenge/ff92d1f41595db0ddba3dff3e95b137d479e7c8e/images/face9.jpg -------------------------------------------------------------------------------- /images/folder-plus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/folder.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/grid.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/home.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/icon-docs-lg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dceddia/css-layout-challenge/ff92d1f41595db0ddba3dff3e95b137d479e7c8e/images/icon-docs-lg.png -------------------------------------------------------------------------------- /images/icon-double-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dceddia/css-layout-challenge/ff92d1f41595db0ddba3dff3e95b137d479e7c8e/images/icon-double-folder.png -------------------------------------------------------------------------------- /images/icon-other-lg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dceddia/css-layout-challenge/ff92d1f41595db0ddba3dff3e95b137d479e7c8e/images/icon-other-lg.png -------------------------------------------------------------------------------- /images/icon-pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dceddia/css-layout-challenge/ff92d1f41595db0ddba3dff3e95b137d479e7c8e/images/icon-pdf.png -------------------------------------------------------------------------------- /images/icon-photo-lg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dceddia/css-layout-challenge/ff92d1f41595db0ddba3dff3e95b137d479e7c8e/images/icon-photo-lg.png -------------------------------------------------------------------------------- /images/icon-photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dceddia/css-layout-challenge/ff92d1f41595db0ddba3dff3e95b137d479e7c8e/images/icon-photo.png -------------------------------------------------------------------------------- /images/icon-ps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dceddia/css-layout-challenge/ff92d1f41595db0ddba3dff3e95b137d479e7c8e/images/icon-ps.png -------------------------------------------------------------------------------- /images/icon-single-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dceddia/css-layout-challenge/ff92d1f41595db0ddba3dff3e95b137d479e7c8e/images/icon-single-folder.png -------------------------------------------------------------------------------- /images/icon-video-lg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dceddia/css-layout-challenge/ff92d1f41595db0ddba3dff3e95b137d479e7c8e/images/icon-video-lg.png -------------------------------------------------------------------------------- /images/icon-zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dceddia/css-layout-challenge/ff92d1f41595db0ddba3dff3e95b137d479e7c8e/images/icon-zip.png -------------------------------------------------------------------------------- /images/imran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dceddia/css-layout-challenge/ff92d1f41595db0ddba3dff3e95b137d479e7c8e/images/imran.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dceddia/css-layout-challenge/ff92d1f41595db0ddba3dff3e95b137d479e7c8e/images/logo.png -------------------------------------------------------------------------------- /images/more-horizontal.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/more-vertical.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/search.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/settings.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/trash-2.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/upload.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/users.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 |