8dc333f1 by Jeff Balicki

mobile menu

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent 23cd6b2a
......@@ -14653,6 +14653,7 @@ input[type=checkbox] {
@media only screen and (max-width: 768px) {
#main-nav .custom-logo-link {
width: 70%;
max-width: 300px;
}
}
#main-nav .custom-logo-link img {
......@@ -14710,6 +14711,11 @@ input[type=checkbox] {
font-weight: bold;
color: #0484b8;
}
@media only screen and (max-width: 768px) {
#main-nav #main-menu a {
font-size: 18px;
}
}
#main-nav #main-menu a:hover {
color: #2c2c2c;
text-decoration: underline;
......@@ -14855,7 +14861,7 @@ input[type=checkbox] {
}
@media only screen and (max-width: 768px) {
.search .search-form {
width: 100%;
width: 99%;
margin-top: 0px;
margin-bottom: 10px;
}
......@@ -14865,7 +14871,7 @@ input[type=checkbox] {
}
@media only screen and (max-width: 768px) {
.search .search-form label {
width: 95%;
width: 98%;
}
}
.search .search-form .search-field {
......@@ -14962,6 +14968,13 @@ input[type=checkbox] {
}
}
@media only screen and (max-width: 1000px) {
.pre-header .container,
.nav-container {
max-width: unset !important;
}
}
#wrapper-footer-full {
background-color: #fff;
padding-bottom: 0px;
......
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
......@@ -24,6 +24,7 @@
margin-left: 0px;
@media only screen and (max-width: 768px) {
width: 70%;
max-width: 300px;
}
img {
transition: 0.4s;
......@@ -81,6 +82,12 @@
font-size: 18px;
font-weight: bold;
color: #0484b8;
@media only screen and (max-width: 1000px) {
//font-size: 16px;
}
@media only screen and (max-width: 768px) {
font-size: 18px;
}
}
a:hover {
color: #2c2c2c;
......@@ -219,7 +226,7 @@
margin: auto;
margin-top: 40px;
@media only screen and (max-width: 768px) {
width: 100%;
width: 99%;
margin-top: 0px;
margin-bottom: 10px;
}
......@@ -229,7 +236,7 @@
width: 90%;
@media only screen and (max-width: 768px) {
width: 95%;
width: 98%;
}
}
......@@ -328,4 +335,10 @@
#navbarNavDropdown.show {
}
.pre-header .container,
.nav-container{
@media only screen and (max-width: 1000px) {
max-width: unset !important;
}
}
\ No newline at end of file
......