Skip to content

Commit

Permalink
refactored css
Browse files Browse the repository at this point in the history
  • Loading branch information
abhiramkg2000 committed May 24, 2024
1 parent e4070dd commit 322dd61
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
margin: 0px;
padding: 0px;
box-sizing: border-box;
user-select: none;
-webkit-user-drag: none;
}

:root {
Expand Down Expand Up @@ -383,7 +385,6 @@ p {
.inner_box {
width: 300px;
height: 300px;
border-radius: 50px 0px 50px 0px;
}
}

Expand All @@ -392,7 +393,6 @@ p {
.inner_box {
width: 250px;
height: 250px;
border-radius: 50px 0px 50px 0px;
}

.outer_box {
Expand All @@ -412,4 +412,12 @@ p {
}
}

/******************************************************************Media Query ends*****************************************************************/
@media screen and (max-width: 450px) {
.outer_box,
.inner_box {
width: 200px;
height: 200px;
}
}

/******************************************************************Media Query ends*****************************************************************/

0 comments on commit 322dd61

Please sign in to comment.