format _mark.scss
This commit is contained in:
parent
1ce267f006
commit
05b6e07a2b
1 changed files with 19 additions and 15 deletions
|
@ -23,23 +23,27 @@ ul.log-list {
|
|||
margin: 0;
|
||||
padding-bottom: 0.5em;
|
||||
padding-left: 0.8em;
|
||||
}
|
||||
// The actual line being placed before each list item, tweak width and color as appropriate
|
||||
li:before {
|
||||
background-color: var(--pico-color);
|
||||
width: 2px;
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: -0.75em;
|
||||
}
|
||||
}
|
||||
// The actual line being placed before each list item, tweak width and color as appropriate
|
||||
li:before {
|
||||
background-color: var(--pico-color);
|
||||
width: 2px;
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: -0.75em;
|
||||
}
|
||||
|
||||
// Start the line further down on the first list item
|
||||
li:first-child:before { top: 15px; }
|
||||
// Start the line further down on the first list item
|
||||
li:first-child:before {
|
||||
top: 15px;
|
||||
}
|
||||
|
||||
// Stop the line short on the final list item
|
||||
li:last-child:before { height: 15px; }
|
||||
// Stop the line short on the final list item
|
||||
li:last-child:before {
|
||||
height: 15px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue