Skip to content
Open

done #123

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions index.css
Original file line number Diff line number Diff line change
@@ -1,17 +1,43 @@
.red {
margin-top: 5px;
width: 150px;
height: 150px;
background-color: red;
order: -1;
}

.blue {
margin-top: 5px;
width: 150px;
height: 150px;
background-color: blue;
order: 2;

}

.yellow {
margin-top: 5px;
width: 150px;
height: 150px;
background-color: yellow;
order: 1;

}
body{
padding: 10px;
display: flex;
height: 600px;
justify-content: space-between;
border: 10px solid rgb(9, 255, 0);
align-content: space-around;
flex-direction: row;
flex-wrap: wrap;

}
@media screen and(max-width: 800px){
body{
width: 100%;
min-width: 150px;
max-width: 300px;
}
}