Skip to content

Commit

Permalink
Settings Up Media Queries Breakpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
MohamedKhamisMostafa committed Dec 26, 2023
1 parent 7691b21 commit 0083b86
Showing 1 changed file with 25 additions and 2 deletions.
27 changes: 25 additions & 2 deletions css/master.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ body {
}

.container {
width: 1170px;
width: 100%;
padding: 15px 0 15px 0;
margin: auto;
}
Expand Down Expand Up @@ -792,4 +792,27 @@ width: 49%;
.contact form input:not([type="submit"]):focus::placeholder {
opacity: 0;
transition: .3s;
}
}
/* ENd Contact Us */
/* Start Grid System */
@media (min-width: 576px){ /* Small Devices => Landscape Phones */
.container{
max-width: 540px;
}
}
@media (min-width: 768px){ /* Medium => Tablets */
.container{
max-width: 720px;
}
}
@media (min-width: 992px){ /* Desktop */
.container{
max-width: 960px;
}
}
@media (min-width: 1200px){ /* Large Screens */
.container{
max-width: 1140px;
}
}
/* End Grid System */

0 comments on commit 0083b86

Please sign in to comment.