events/2024-08-01-front-end-study-hall
Front End Study Hall #008 was an IndieWeb meetup on Zoom held on 2024-08-01.
Front End Study Hall #008
August 1, 2024
Participants
Notes
- Joe's background today: the original first web page from 1993 which was about the World Wide Web ~ more info at https://home.cern/science/computing/birth-web
- Looking at how variables and data structures can inform how we use SASS:
- https://codepen.io/artlung/pen/rNEyrBP
- Source code of Bootstrap showing SASS variables https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
- Playing with a gallery layout in Flex https://toddpresta.com/g/7245f5c4
.gal-cont {justify-content: space-around;justify-content: flex-start;width: clamp(180px,100%,680px);margin: 0 auto; }
.gal-wrap { max-width: 544px; margin: 0 auto; }
- Ruffle Flash Emulator - drops into pages to play pages
- Internet Archive now runs Ruffle to run Flash on old pages
- https://archive.org/details/softwarelibrary_flash_games They also have Flash games
- Looking at grid-template-columns and how they are used to use display: grid to do responsive gallery using
repeat(auto-fit, mixmax(20ch, 1fr))