Fix navigation (#73)
* Fix hamburger menu for RTL * Better css rules hierarchy for navigation
This commit is contained in:
parent
42d75aefe4
commit
6c80d2035a
|
@ -11,79 +11,76 @@
|
||||||
font-size: 1.4rem;
|
font-size: 1.4rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
.navigation-list {
|
.navigation-list {
|
||||||
float: right;
|
float: right;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
@media only screen and (max-device-width : 768px) {
|
@media only screen and (max-device-width : 768px) {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 6.0rem;
|
top: 6.0rem;
|
||||||
right: 0;
|
right: 0;
|
||||||
z-index: 5;
|
z-index: 5;
|
||||||
visibility: hidden;
|
visibility: hidden;
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
max-height: 0;
|
max-height: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
background-color: $bg-color;
|
background-color: $bg-color;
|
||||||
border-top: solid 2px $alt-bg-color;
|
border-top: solid 2px $alt-bg-color;
|
||||||
border-bottom: solid 2px $alt-bg-color;
|
border-bottom: solid 2px $alt-bg-color;
|
||||||
transition: opacity 0.25s, max-height 0.15s linear;
|
transition: opacity 0.25s, max-height 0.15s linear;
|
||||||
}
|
}
|
||||||
}
|
.navigation-item {
|
||||||
|
float: left;
|
||||||
.navigation-item {
|
margin: 0;
|
||||||
float: left;
|
position: relative;
|
||||||
margin: 0;
|
@media only screen and (max-device-width : 768px) {
|
||||||
position: relative;
|
float: none !important;
|
||||||
@media only screen and (max-device-width : 768px) {
|
text-align: center;
|
||||||
float: none !important;
|
a, span {
|
||||||
text-align: center;
|
line-height: 5.0rem;
|
||||||
a, span {
|
}
|
||||||
line-height: 5.0rem;
|
}
|
||||||
|
a, span {
|
||||||
|
margin-left: 1.0rem;
|
||||||
|
margin-right: 1.0rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.menu-separator {
|
||||||
|
@media only screen and (max-device-width : 768px) {
|
||||||
|
border-top: 2px solid $fg-color;
|
||||||
|
margin: 0 8.0rem;
|
||||||
|
span {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
a, span {
|
|
||||||
margin-left: 1.0rem;
|
|
||||||
margin-right: 1.0rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.menu-button {
|
#menu-toggle {
|
||||||
display: none;
|
display: none;
|
||||||
@media only screen and (max-device-width : 768px) {
|
@media only screen and (max-device-width : 768px) {
|
||||||
display: block;
|
&:checked + label {
|
||||||
font-size: 2.4rem;
|
color: $alt-bg-color;
|
||||||
font-weight: 400;
|
}
|
||||||
line-height: 6.0rem;
|
&:checked + label + ul {
|
||||||
color: $fg-color;
|
visibility: visible;
|
||||||
cursor: pointer;
|
opacity: 1;
|
||||||
|
max-height: 100rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
.menu-button {
|
||||||
|
display: none;
|
||||||
.menu-separator {
|
@media only screen and (max-device-width : 768px) {
|
||||||
@media only screen and (max-device-width : 768px) {
|
display: block;
|
||||||
border-top: 2px solid $fg-color;
|
font-size: 2.4rem;
|
||||||
margin: 0 8.0rem;
|
font-weight: 400;
|
||||||
span {
|
line-height: 6.0rem;
|
||||||
display: none;
|
color: $fg-color;
|
||||||
}
|
cursor: pointer;
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#menu-toggle {
|
|
||||||
display: none;
|
|
||||||
@media only screen and (max-device-width : 768px) {
|
|
||||||
&:checked + label {
|
|
||||||
color: $alt-bg-color;
|
|
||||||
}
|
|
||||||
&:checked + label + ul {
|
|
||||||
visibility: visible;
|
|
||||||
opacity: 1;
|
|
||||||
max-height: 100rem;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,9 +5,14 @@ body.rtl {
|
||||||
left: 0;
|
left: 0;
|
||||||
right: auto;
|
right: auto;
|
||||||
}
|
}
|
||||||
|
.navigation-item {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.navigation-item {
|
.menu-button {
|
||||||
float: right;
|
@media only screen and (max-device-width : 768px) {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue