Modified site min-width

This commit is contained in:
mitchelljfs 2018-07-09 23:53:47 -07:00
parent 1c5d48d206
commit 28c1cf0905
2 changed files with 7 additions and 7 deletions

View File

@ -9,11 +9,11 @@
margin: auto; margin: auto;
margin-top: 50px; margin-top: 50px;
max-width: 500px; max-width: 500px;
min-width: 60%; min-width: 50%;
text-align: center; text-align: center;
} }
@media screen and ( max-width: 500px ) { @media screen and (max-width: 500px) {
.main-container { .main-container {
margin-bottom: 50px; margin-bottom: 50px;
margin-top: auto; margin-top: auto;

View File

@ -26,8 +26,8 @@
} }
.navbar-menu { .navbar-menu {
margin: 0 18.75%; margin: 0 23.75%;
width: 62.5%; width: 52.5%;
} }
.navbar-menu div { .navbar-menu div {
@ -55,7 +55,7 @@
background-color: rgb(139, 191, 209); background-color: rgb(139, 191, 209);
} }
@media screen and ( max-width: 500px ) { @media screen and (max-width: 500px) {
.navbar { .navbar {
bottom: 0; bottom: 0;
padding-bottom: 5px; padding-bottom: 5px;
@ -71,11 +71,11 @@
padding: 5px 0; padding: 5px 0;
width: 100%; width: 100%;
} }
.navbar-menu div:hover { .navbar-menu div:hover {
background-color: inherit; background-color: inherit;
} }
.active-button div:hover { .active-button div:hover {
background-color: rgb(130, 160, 196); background-color: rgb(130, 160, 196);
} }