mirror of
https://github.com/pmoreno-rodriguez/grav-theme-future2021.git
synced 2025-06-08 04:18:53 +00:00
Optimize distances in sidebarmenu
This commit is contained in:
parent
ba40915301
commit
ffcc69af2a
3 changed files with 20 additions and 14 deletions
|
@ -2036,11 +2036,12 @@ ul.icons li > * .label {
|
|||
ul.posts {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin-bottom: 0.25rem;
|
||||
}
|
||||
ul.posts li {
|
||||
border-top: dotted 1px rgba(160, 160, 160, 0.3);
|
||||
margin: 1.5em 0 0 0;
|
||||
padding: 1.5em 0 0 0;
|
||||
margin: 0.25em 0 0 0;
|
||||
padding: 0.25em 0 0 0;
|
||||
}
|
||||
ul.posts li:first-child {
|
||||
border-top: 0;
|
||||
|
@ -2076,6 +2077,7 @@ ul.posts article header {
|
|||
ul.posts article header h3 {
|
||||
font-size: 0.7em;
|
||||
margin-top: 0.125em;
|
||||
margin-bottom: 0.25em;
|
||||
}
|
||||
ul.posts article header .published {
|
||||
display: block;
|
||||
|
@ -2690,6 +2692,7 @@ table.alt tfoot {
|
|||
.menulink {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
margin-top: -0.3rem;
|
||||
}
|
||||
|
||||
ul.menulink > li,
|
||||
|
|
|
@ -9,11 +9,12 @@
|
|||
ul.posts {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin-bottom: 0.25rem;
|
||||
|
||||
li {
|
||||
border-top: dotted 1px _palette(border);
|
||||
margin: (_size(element-margin) * 0.75) 0 0 0;
|
||||
padding: (_size(element-margin) * 0.75) 0 0 0;
|
||||
margin: (_size(element-margin) * 0.125) 0 0 0;
|
||||
padding: (_size(element-margin) * 0.125) 0 0 0;
|
||||
|
||||
&:first-child {
|
||||
border-top: 0;
|
||||
|
@ -46,6 +47,7 @@
|
|||
h3 {
|
||||
font-size: 0.7em;
|
||||
margin-top: 0.125em;
|
||||
margin-bottom: 0.25em;
|
||||
}
|
||||
|
||||
.published {
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
.menulink {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
margin-top: -0.3rem;
|
||||
}
|
||||
|
||||
ul.menulink > li,
|
||||
|
@ -74,7 +75,8 @@ ul.subitem_hide {
|
|||
display:none;
|
||||
}
|
||||
ul.subitem_hide > li > ul,
|
||||
ul.subitem_hide > li a span {
|
||||
ul.subitem_hide > li a span
|
||||
{
|
||||
|
||||
-webkit-transition: color 0.2s ease;
|
||||
transition: color 0.2s ease;
|
||||
|
@ -85,7 +87,6 @@ ul.subitem_hide > li a span {
|
|||
ul.subitem_hide > li {
|
||||
list-style-type: none;
|
||||
margin-left: 0.4em;
|
||||
|
||||
}
|
||||
.dropdown-btn {
|
||||
cursor: pointer;
|
||||
|
|
Loading…
Add table
Reference in a new issue