Skip to content

Commit

Permalink
Update style.css
Browse files Browse the repository at this point in the history
added media queries
  • Loading branch information
A-JA-Y authored Jun 6, 2024
1 parent a694164 commit 812d564
Showing 1 changed file with 39 additions and 1 deletion.
40 changes: 39 additions & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,42 @@ display: flex;
}
.hidden{
display: none;
}
}


@media (max-width: 600px) {
.divider{
height: 4px;
width: 150px;
border: 1px solid #212121;
background-color: #212121;
margin: 10px;
border-radius: 50px;


}
.container {
width: 100%;
height: 100vh;
display: flex;
flex-direction: column;
font-size: 12px;
font-weight: bolder;
font-family: sans-serif;
align-items: center;
justify-content: center;
margin-top: 50px;

}
.profile {
border-radius: 30px;
border: 2px solid rgba(0, 0, 0);
background-color: #ff910069;
height: 300px;
width: 400px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
}

0 comments on commit 812d564

Please sign in to comment.