mirror of
https://github.com/pmoreno-rodriguez/grav-theme-future2021.git
synced 2025-06-07 20:08:54 +00:00
Updated styles
This commit is contained in:
parent
db4ad8cdd3
commit
48072d2d26
4 changed files with 42 additions and 1 deletions
|
@ -1964,6 +1964,17 @@ ul.actions li {
|
||||||
padding: 0 0 0 1em;
|
padding: 0 0 0 1em;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
|
ul.actions.start {
|
||||||
|
-moz-justify-content: -moz-flex-start;
|
||||||
|
-webkit-justify-content: -webkit-flex-start;
|
||||||
|
-ms-justify-content: -ms-flex-start;
|
||||||
|
justify-content: flex-start;
|
||||||
|
width: 100%;
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
ul.actions.start li:first-child {
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
ul.actions.special {
|
ul.actions.special {
|
||||||
-moz-justify-content: center;
|
-moz-justify-content: center;
|
||||||
-webkit-justify-content: center;
|
-webkit-justify-content: center;
|
||||||
|
@ -3500,6 +3511,14 @@ body.single #footer {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
padding-top: 0;
|
padding-top: 0;
|
||||||
}
|
}
|
||||||
|
#menu .sidebar-content.lang {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
@media screen and (max-width: 736px) {
|
||||||
|
#menu .sidebar-content.lang {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
}
|
||||||
body.is-menu-visible #menu {
|
body.is-menu-visible #menu {
|
||||||
-moz-transform: translateX(0);
|
-moz-transform: translateX(0);
|
||||||
-webkit-transform: translateX(0);
|
-webkit-transform: translateX(0);
|
||||||
|
|
2
assets/css/main.min.css
vendored
2
assets/css/main.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -18,6 +18,18 @@
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.start {
|
||||||
|
@include vendor('justify-content', 'flex-start');
|
||||||
|
width: 100%;
|
||||||
|
margin-left: 0;
|
||||||
|
|
||||||
|
li {
|
||||||
|
&:first-child {
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
&.special {
|
&.special {
|
||||||
@include vendor('justify-content', 'center');
|
@include vendor('justify-content', 'center');
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
|
@ -114,6 +114,16 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.sidebar-content.lang {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
@include breakpoint('<=small') {
|
||||||
|
.sidebar-content.lang {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
body.is-menu-visible & {
|
body.is-menu-visible & {
|
||||||
@include vendor('transform', 'translateX(0)');
|
@include vendor('transform', 'translateX(0)');
|
||||||
visibility: visible;
|
visibility: visible;
|
||||||
|
|
Loading…
Add table
Reference in a new issue