├── .gitignore ├── .prettierrc ├── 01-button ├── index.html └── style.css ├── 02-search-bar ├── index.html └── style.css ├── 03-codepen-tile ├── images │ ├── image-01.jpg │ └── image-02.jpg ├── index.html └── style.css ├── 04-loading-animation ├── index.html └── style.css ├── 05-loading-animation2 ├── index.html └── style.css ├── 06-archery-target ├── index.html └── style.css ├── 07-word-carousel ├── index.html └── style.css ├── 08-flag-of-france ├── index.html └── style.css ├── 09-flag-of-germany ├── index.html └── style.css ├── 10-flag-of-madagascar ├── index.html └── style.css ├── 11-flag-of-switzerland ├── index.html └── style.css ├── 12-flag-of-japan ├── index.html └── style.css ├── 13-flag-of-sweden ├── index.html └── style.css ├── 14-flag-of-niger ├── index.html └── style.css ├── 15-profile-layout ├── images │ └── image.jpg ├── index.html └── style.css ├── 16-toggle-switch ├── index.html └── style.css ├── 17-playing-card ├── index.html └── style.css ├── 18-playing-card2 ├── index.html └── style.css ├── 19-progress-bar ├── index.html └── style.css ├── 20-flashcard ├── index.html └── style.css ├── 21-loading-animation3 ├── index.html └── style.css ├── 22-stories-menu ├── images │ ├── image-01.jpg │ ├── image-02.jpg │ └── image-03.jpg ├── index.html └── style.css ├── 23-progress-bar2 ├── index.html └── style.css ├── 24-github-graph ├── index.html ├── script.js └── style.css └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # Mac desktop service store files 2 | 3 | .DS_Store 4 | 5 | # Optional npm cache directory 6 | 7 | .npm 8 | 9 | # Optional eslint cache 10 | 11 | .eslintcache 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "printWidth": 80, 3 | "tabWidth": 2, 4 | "useTabs": false, 5 | "semi": true, 6 | "singleQuote": true, 7 | "trailingComma": "all", 8 | "bracketSpacing": true, 9 | "jsxBracketSameLine": false, 10 | "arrowParens": "avoid", 11 | "proseWrap": "always" 12 | } 13 | -------------------------------------------------------------------------------- /01-button/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 |Scrimsbee McScrimslee
28 |I'm the world's most prolific Fortran dev.
24 | 25 |