This is a solution to the 404 NOT FOUND PAGE project of the Make It Real course.
Users should be able to:
- Change the size of the site for desktop and mobile and see how it works properly in each size.
- Semantic HTML5 markup
- CSS custom properties
- Flexbox
- Mobile-first workflow
In this project we learn hoy to use medua queries and flexbox to desing a responsive mobile-first site.
@media screen and (min-width: 1440px) {
body{
margin: 20px 40px;
}
.container {
display: flex;
flex-direction: row;
justify-content: center;
padding: 100px 30px;
}
We need to continue learning about how flexbox works and about responsive desing
- Resource 1 - This helped me to see the syntax of media queries.
- Resource 2 - This is an amazing article which helped me to undestand Flexbox in an easy way.
- Juan Sebastián Muñoz
Thanks to Laura, my partner in this project and the teacher Cristian Moreno.