For that special occasion, click the button and get some gratification. CLICK THE BUTTON.
19 | 20 |├── favicon.png ├── sounds ├── one-yay.mp3 ├── gasp-yay.mp3 ├── kids-yay.mp3 ├── audience-claps.mp3 └── dudes-clap-yay.mp3 ├── README.md ├── index.css ├── index.html └── index.js /favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/celebrate/HEAD/favicon.png -------------------------------------------------------------------------------- /sounds/one-yay.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/celebrate/HEAD/sounds/one-yay.mp3 -------------------------------------------------------------------------------- /sounds/gasp-yay.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/celebrate/HEAD/sounds/gasp-yay.mp3 -------------------------------------------------------------------------------- /sounds/kids-yay.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/celebrate/HEAD/sounds/kids-yay.mp3 -------------------------------------------------------------------------------- /sounds/audience-claps.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/celebrate/HEAD/sounds/audience-claps.mp3 -------------------------------------------------------------------------------- /sounds/dudes-clap-yay.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/celebrate/HEAD/sounds/dudes-clap-yay.mp3 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Celebrate 2 | 3 | Go celebrate something with a party popper and cheers at https://ubershmekel.github.io/celebrate/ 4 | 5 | -------------------------------------------------------------------------------- /index.css: -------------------------------------------------------------------------------- 1 | /* 2 | Combo of: 3 | https://www.swyx.io/css-100-bytes/ 4 | https://stackoverflow.com/questions/643879/css-to-make-html-page-footer-stay-at-bottom-of-the-page-with-a-minimum-height-b/20352949#20352949 5 | */ 6 | 7 | html { 8 | line-height: 1.75; 9 | font-size: 1.25em; 10 | } 11 | 12 | body { 13 | height:100vh; 14 | margin: auto; 15 | /* margin:0; */ 16 | max-width: 70ch; 17 | display:flex; 18 | flex-direction:column; 19 | } 20 | 21 | article { 22 | padding-left: 0.5em; 23 | } 24 | 25 | header{ 26 | min-height:50px; 27 | background:lightcyan; 28 | padding-left: 0.5em; 29 | border-bottom-left-radius: 10px; 30 | border-bottom-right-radius: 10px; 31 | } 32 | 33 | footer{ 34 | min-height:50px; 35 | background:PapayaWhip; 36 | border-top-left-radius: 10px; 37 | border-top-right-radius: 10px; 38 | text-align: center; 39 | margin-top:auto; 40 | } 41 | 42 | button { 43 | align-self: flex-start; 44 | box-shadow: 2px 2px 2px #faa; 45 | } 46 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |For that special occasion, click the button and get some gratification. CLICK THE BUTTON.
19 | 20 |