Fix navigation (#73)
* Fix hamburger menu for RTL * Better css rules hierarchy for navigation
This commit is contained in:
parent
42d75aefe4
commit
6c80d2035a
|
@ -11,7 +11,6 @@
|
||||||
font-size: 1.4rem;
|
font-size: 1.4rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
.navigation-list {
|
.navigation-list {
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -33,8 +32,6 @@
|
||||||
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 {
|
.navigation-item {
|
||||||
float: left;
|
float: left;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
@ -51,19 +48,6 @@
|
||||||
margin-right: 1.0rem;
|
margin-right: 1.0rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.menu-button {
|
|
||||||
display: none;
|
|
||||||
@media only screen and (max-device-width : 768px) {
|
|
||||||
display: block;
|
|
||||||
font-size: 2.4rem;
|
|
||||||
font-weight: 400;
|
|
||||||
line-height: 6.0rem;
|
|
||||||
color: $fg-color;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.menu-separator {
|
.menu-separator {
|
||||||
@media only screen and (max-device-width : 768px) {
|
@media only screen and (max-device-width : 768px) {
|
||||||
border-top: 2px solid $fg-color;
|
border-top: 2px solid $fg-color;
|
||||||
|
@ -73,6 +57,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#menu-toggle {
|
#menu-toggle {
|
||||||
display: none;
|
display: none;
|
||||||
|
@ -87,3 +72,15 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.menu-button {
|
||||||
|
display: none;
|
||||||
|
@media only screen and (max-device-width : 768px) {
|
||||||
|
display: block;
|
||||||
|
font-size: 2.4rem;
|
||||||
|
font-weight: 400;
|
||||||
|
line-height: 6.0rem;
|
||||||
|
color: $fg-color;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -5,9 +5,14 @@ body.rtl {
|
||||||
left: 0;
|
left: 0;
|
||||||
right: auto;
|
right: auto;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
.navigation-item {
|
.navigation-item {
|
||||||
float: right;
|
float: right;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.menu-button {
|
||||||
|
@media only screen and (max-device-width : 768px) {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue