├── burgers ├── part-1 │ ├── index.css │ └── index.html ├── part-2 │ ├── index.css │ └── index.html └── part-3 │ ├── index.css │ └── index.html ├── buttons ├── part-1 │ ├── index.css │ └── index.html ├── part-2 │ ├── index.css │ └── index.html ├── part-3 │ ├── index.css │ └── index.html └── part-4 │ ├── index.css │ └── index.html ├── checkboxes ├── part-1 │ ├── index.css │ └── index.html ├── part-2 │ ├── index.css │ └── index.html ├── part-3 │ ├── index.css │ └── index.html └── part-4 │ ├── index.css │ └── index.html ├── dropdowns └── part-1 │ ├── index.css │ └── index.html ├── examples ├── child-selectors │ ├── index.css │ └── index.html ├── filter-property │ ├── image.jpg │ ├── index.css │ └── index.html ├── timing-function-2 │ ├── index.css │ └── index.html ├── timing-function │ ├── index.css │ └── index.html └── transforms │ ├── index.css │ └── index.html ├── inputs ├── part-1 │ ├── index.css │ ├── index.html │ └── index.js └── part-2 │ ├── index.css │ ├── index.html │ └── index.js ├── loaders ├── part-3 │ ├── index.css │ └── index.html ├── part-4 │ ├── index.css │ └── index.html ├── part-5 │ ├── index.css │ └── index.html ├── part-6 │ ├── index.css │ └── index.html ├── part-7 │ ├── index.css │ └── index.html ├── part-8 │ ├── css.png │ ├── index.css │ └── index.html └── part-9 │ ├── index.css │ └── index.html ├── menus └── part-1 │ ├── index.css │ └── index.html ├── modals └── part-1 │ ├── index.css │ └── index.html ├── styles.css ├── svgs └── part-3 │ ├── index.css │ └── index.html ├── switches ├── part-1 │ ├── index.css │ └── index.html ├── part-2 │ ├── index.css │ └── index.html └── part-4 │ ├── index.css │ └── index.html └── tooltips └── part-1 ├── index.css └── index.html /burgers/part-1/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/burgers/part-1/index.css -------------------------------------------------------------------------------- /burgers/part-1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/burgers/part-1/index.html -------------------------------------------------------------------------------- /burgers/part-2/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/burgers/part-2/index.css -------------------------------------------------------------------------------- /burgers/part-2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/burgers/part-2/index.html -------------------------------------------------------------------------------- /burgers/part-3/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/burgers/part-3/index.css -------------------------------------------------------------------------------- /burgers/part-3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/burgers/part-3/index.html -------------------------------------------------------------------------------- /buttons/part-1/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/buttons/part-1/index.css -------------------------------------------------------------------------------- /buttons/part-1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/buttons/part-1/index.html -------------------------------------------------------------------------------- /buttons/part-2/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/buttons/part-2/index.css -------------------------------------------------------------------------------- /buttons/part-2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/buttons/part-2/index.html -------------------------------------------------------------------------------- /buttons/part-3/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/buttons/part-3/index.css -------------------------------------------------------------------------------- /buttons/part-3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/buttons/part-3/index.html -------------------------------------------------------------------------------- /buttons/part-4/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/buttons/part-4/index.css -------------------------------------------------------------------------------- /buttons/part-4/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/buttons/part-4/index.html -------------------------------------------------------------------------------- /checkboxes/part-1/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/checkboxes/part-1/index.css -------------------------------------------------------------------------------- /checkboxes/part-1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/checkboxes/part-1/index.html -------------------------------------------------------------------------------- /checkboxes/part-2/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/checkboxes/part-2/index.css -------------------------------------------------------------------------------- /checkboxes/part-2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/checkboxes/part-2/index.html -------------------------------------------------------------------------------- /checkboxes/part-3/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/checkboxes/part-3/index.css -------------------------------------------------------------------------------- /checkboxes/part-3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/checkboxes/part-3/index.html -------------------------------------------------------------------------------- /checkboxes/part-4/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/checkboxes/part-4/index.css -------------------------------------------------------------------------------- /checkboxes/part-4/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/checkboxes/part-4/index.html -------------------------------------------------------------------------------- /dropdowns/part-1/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/dropdowns/part-1/index.css -------------------------------------------------------------------------------- /dropdowns/part-1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/dropdowns/part-1/index.html -------------------------------------------------------------------------------- /examples/child-selectors/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/examples/child-selectors/index.css -------------------------------------------------------------------------------- /examples/child-selectors/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/examples/child-selectors/index.html -------------------------------------------------------------------------------- /examples/filter-property/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/examples/filter-property/image.jpg -------------------------------------------------------------------------------- /examples/filter-property/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/examples/filter-property/index.css -------------------------------------------------------------------------------- /examples/filter-property/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/examples/filter-property/index.html -------------------------------------------------------------------------------- /examples/timing-function-2/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/examples/timing-function-2/index.css -------------------------------------------------------------------------------- /examples/timing-function-2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/examples/timing-function-2/index.html -------------------------------------------------------------------------------- /examples/timing-function/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/examples/timing-function/index.css -------------------------------------------------------------------------------- /examples/timing-function/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/examples/timing-function/index.html -------------------------------------------------------------------------------- /examples/transforms/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/examples/transforms/index.css -------------------------------------------------------------------------------- /examples/transforms/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/examples/transforms/index.html -------------------------------------------------------------------------------- /inputs/part-1/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/inputs/part-1/index.css -------------------------------------------------------------------------------- /inputs/part-1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/inputs/part-1/index.html -------------------------------------------------------------------------------- /inputs/part-1/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/inputs/part-1/index.js -------------------------------------------------------------------------------- /inputs/part-2/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/inputs/part-2/index.css -------------------------------------------------------------------------------- /inputs/part-2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/inputs/part-2/index.html -------------------------------------------------------------------------------- /inputs/part-2/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/inputs/part-2/index.js -------------------------------------------------------------------------------- /loaders/part-3/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/loaders/part-3/index.css -------------------------------------------------------------------------------- /loaders/part-3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/loaders/part-3/index.html -------------------------------------------------------------------------------- /loaders/part-4/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/loaders/part-4/index.css -------------------------------------------------------------------------------- /loaders/part-4/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/loaders/part-4/index.html -------------------------------------------------------------------------------- /loaders/part-5/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/loaders/part-5/index.css -------------------------------------------------------------------------------- /loaders/part-5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/loaders/part-5/index.html -------------------------------------------------------------------------------- /loaders/part-6/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/loaders/part-6/index.css -------------------------------------------------------------------------------- /loaders/part-6/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/loaders/part-6/index.html -------------------------------------------------------------------------------- /loaders/part-7/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/loaders/part-7/index.css -------------------------------------------------------------------------------- /loaders/part-7/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/loaders/part-7/index.html -------------------------------------------------------------------------------- /loaders/part-8/css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/loaders/part-8/css.png -------------------------------------------------------------------------------- /loaders/part-8/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/loaders/part-8/index.css -------------------------------------------------------------------------------- /loaders/part-8/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/loaders/part-8/index.html -------------------------------------------------------------------------------- /loaders/part-9/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/loaders/part-9/index.css -------------------------------------------------------------------------------- /loaders/part-9/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/loaders/part-9/index.html -------------------------------------------------------------------------------- /menus/part-1/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/menus/part-1/index.css -------------------------------------------------------------------------------- /menus/part-1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/menus/part-1/index.html -------------------------------------------------------------------------------- /modals/part-1/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/modals/part-1/index.css -------------------------------------------------------------------------------- /modals/part-1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/modals/part-1/index.html -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/styles.css -------------------------------------------------------------------------------- /svgs/part-3/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/svgs/part-3/index.css -------------------------------------------------------------------------------- /svgs/part-3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/svgs/part-3/index.html -------------------------------------------------------------------------------- /switches/part-1/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/switches/part-1/index.css -------------------------------------------------------------------------------- /switches/part-1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/switches/part-1/index.html -------------------------------------------------------------------------------- /switches/part-2/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/switches/part-2/index.css -------------------------------------------------------------------------------- /switches/part-2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/switches/part-2/index.html -------------------------------------------------------------------------------- /switches/part-4/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/switches/part-4/index.css -------------------------------------------------------------------------------- /switches/part-4/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/switches/part-4/index.html -------------------------------------------------------------------------------- /tooltips/part-1/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/tooltips/part-1/index.css -------------------------------------------------------------------------------- /tooltips/part-1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-reels/HEAD/tooltips/part-1/index.html --------------------------------------------------------------------------------