├── .gitignore ├── README.md ├── modal-1 ├── index.html └── styles.css ├── modal-2 ├── index.html └── styles.css └── modal-3 ├── index.html └── styles.css /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_STORE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # css-modals 2 | 3 | A collection of ready to use modal windows built using CSS. 4 | -------------------------------------------------------------------------------- /modal-1/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 |22 | You have opened the modal, they are great for confirming actions or 23 | displaying critical information. 24 |
25 |24 | You have opened the modal, they are great for confirming actions or 25 | displaying critical information. 26 |
27 |