28 lines
471 B
CSS
28 lines
471 B
CSS
/* Stuck menu styles
|
|
========================================================*/
|
|
.isStuck {
|
|
background: #61ae24;
|
|
padding: 0px 0 0px;
|
|
z-index: 999;
|
|
text-align: center;
|
|
top: -20px;
|
|
}
|
|
.isStuck .search_main,
|
|
.isStuck h1 {
|
|
/*height: 100px;*/
|
|
display: none;
|
|
}
|
|
.isStuck nav {
|
|
float: none;
|
|
display: inline-block;
|
|
margin-top: 0;
|
|
}
|
|
.isStuck .sf-menu {
|
|
float: none;
|
|
}
|
|
@media only screen and (max-width: 979px) {
|
|
.isStuck {
|
|
display: none !important;
|
|
}
|
|
}
|