mirror of
https://github.com/adulau/brouilleursdeblanc.git
synced 2024-11-07 12:06:26 +00:00
Merge branch 'hotfix/nav-cleanup' into develop
This commit is contained in:
commit
91f1445f45
2 changed files with 627 additions and 2955 deletions
3567
assets/css/main.css
3567
assets/css/main.css
File diff suppressed because it is too large
Load diff
|
@ -47,6 +47,7 @@ body {
|
||||||
// Responsive nav toggle stuff
|
// Responsive nav toggle stuff
|
||||||
#site-nav {
|
#site-nav {
|
||||||
z-index: 9999;
|
z-index: 9999;
|
||||||
|
display: none;
|
||||||
@media @medium {
|
@media @medium {
|
||||||
-webkit-animation-duration: 1s;
|
-webkit-animation-duration: 1s;
|
||||||
-moz-animation-duration: 1s;
|
-moz-animation-duration: 1s;
|
||||||
|
@ -58,18 +59,22 @@ body {
|
||||||
animation-delay: .05s;
|
animation-delay: .05s;
|
||||||
}
|
}
|
||||||
&.closed {
|
&.closed {
|
||||||
display: none;
|
|
||||||
@media @medium {
|
@media @medium {
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
&.opened {
|
&.opened {
|
||||||
|
display: block;
|
||||||
max-height: 100%;
|
max-height: 100%;
|
||||||
li {
|
li {
|
||||||
float: none;
|
float: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.no-js #site-nav {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
#nav-toggle {
|
#nav-toggle {
|
||||||
display: block;
|
display: block;
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
|
@ -290,14 +295,14 @@ span + .entry-title {
|
||||||
border-bottom-width: 0;
|
border-bottom-width: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Pagination
|
|
||||||
.pagination {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
// Disqus Comments
|
// Disqus Comments
|
||||||
#disqus_thread {
|
#disqus_thread {
|
||||||
margin-top: 2em;
|
margin-top: 2em;
|
||||||
}
|
}
|
||||||
|
// Pagination
|
||||||
|
.pagination {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
// Page layout
|
// Page layout
|
||||||
#home,
|
#home,
|
||||||
#page {
|
#page {
|
||||||
|
|
Loading…
Reference in a new issue