- Solution URL: Add solution URL here
- Live Site URL: Add live site URL here
- Worked with mobile layout first
- Develop the Desktop Version
- Researched features
- Cross-Browser Testing
- Tested responsiveness
- Compiled Readme
- Semantic HTML5 markup
- CSS custom properties
- Flexbox
- CSS Grid
- Mobile-first workflow
Learned fluid responsive. "font-size: calc(15px + 0.390625vw);"
This formula calculates our font size as 15px plus 0.00390625% of the screen width. These values have been specifically chosen because they result in the perfect font sizes at every breakpoint:
p {
font-size: calc(15px + 0.390625vw);
}
Learned nested border radius - Thanks to 30 Seconds Code for the guide!! @username
.outer {
border-radius: 24px;
padding: 8px;
}
.inner {
border-radius: 16px;
}
- Menu bar
- Incorporate into another project
- Change colours
- 30secondsofcode - This helped me understand nesting border radius calculations
- Matthew James Taylor - This is an amazing article which helped me understand Fluid Responsive font size
Dedicated to Jan and Dean. Thanks to The Odin Project, Northcoders and the resources on Frontend Mentor