Skip to content

Commit

Permalink
Update style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
melonmasteristaken authored Jun 4, 2024
1 parent 3715622 commit a7f1529
Showing 1 changed file with 19 additions and 5 deletions.
24 changes: 19 additions & 5 deletions assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,28 @@ h4 {
.homebutton {
position: absolute;
top: 70%;
left: 45%;
left: 50%;
z-index: 999;
}
} /* Desktop */
@media screen and (min-width: 1025px) and (max-width: 1199px){} /* small laptop */
@media screen and (min-width: 768px) and (max-width: 1024px){} /* tablet */
@media screen and (min-width: 575px) and (max-width: 767.98px){} /* tablet and large mobiles */
@media screen and (min-width: 320px) and (max-width: 480px){} /* Mobile*/

@media screen and (min-width: 768px) and (max-width: 1024px){
.homebutton {
position: absolute;
top: 70%;
left: 45%;
z-index: 999;
}
} /* tablet */

@media screen and (min-width: 320px) and (max-width: 480px){
.homebutton {
position: absolute;
top: 70%;
left: 35%;
z-index: 999;
}
} /* Mobile*/



0 comments on commit a7f1529

Please sign in to comment.