Skip to content

Commit

Permalink
Responsiveness
Browse files Browse the repository at this point in the history
  • Loading branch information
CH-RAFAY committed Jul 18, 2024
1 parent 0b52962 commit adc763a
Showing 1 changed file with 39 additions and 2 deletions.
41 changes: 39 additions & 2 deletions Css/Product.css
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,8 @@ nav ul li:hover,.menu-toggle:hover,.filter-toggle:hover{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
width: 90%;
width: auto;
max-width: 90%;

}

Expand All @@ -285,6 +286,7 @@ nav ul li:hover,.menu-toggle:hover,.filter-toggle:hover{
animation: spin 2s linear infinite;
}


@keyframes spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
Expand Down Expand Up @@ -411,7 +413,7 @@ input[type="radio"]{

.Pbody img
{
width: 400px;
width: 80%;

}

Expand All @@ -428,6 +430,41 @@ input[type="radio"]{



@media (max-width: 1300px)
{

.Pcontainer
{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
width: 80%;
margin: 0 auto;


}

.color-box
{
width:30px;
height:30px;

}


.Plist {
background-color: #ffffff;
border-radius: 20px;
border: solid 1px white;
margin: 10px;
width: 46%;
box-sizing: border-box;
text-align: center;
overflow: hidden;
}

}



/* Responsive styles */
Expand Down

0 comments on commit adc763a

Please sign in to comment.