I’m doing exercise 13 and i came up with a totally different solution than mosh. looking at the list solution i have no idea how he would even approach it in html, does he share the html part of the solution?
here is mine, i made a bunch of div and pushed them right center then defined the box sizes to space
body {
margin: 3px;
font-family: Arial, Helvetica, sans-serif;
}
.container {
border: 3px solid black;
display: flex;
width: 100vw;
height: 40vh ;
background-color: black;
color: white;
flex-direction: column;
justify-content: space-between;
}
.box {
text-align: center;
justify-content: space-between;
}
@media screen and (min-width: 800px) and (max-width: 10000px)
{
.container {
flex-direction: row;
justify-content: flex-end;
height: 20vh;
align-items: center;
}
.fakebox {
display: none;
}
.box {
width: 5vw;
}
.big-box {
width: 10vw;
}
}