34 lines
687 B
SCSS
34 lines
687 B
SCSS
.container-following-note{
|
|
font-family: var(--font-sans);
|
|
font-size: var(--fs-small);
|
|
line-height: calc(var(--baseline)*0.75);
|
|
position: relative;
|
|
margin-top: calc(var(--baseline)*0.25);
|
|
|
|
hyphens: auto;
|
|
hyphenate-limit-chars: 7 3 4;
|
|
hyphenate-limit-lines: 2;
|
|
hyphenate-limit-zone: 8%;
|
|
word-spacing: -0.004em;
|
|
text-align: justify;
|
|
// color: #999;
|
|
|
|
}
|
|
|
|
.body_note{
|
|
// padding-left: calc(var(--indent)*1);
|
|
// position: relative;
|
|
}
|
|
|
|
.following-note_marker::after{
|
|
content: ". "
|
|
}
|
|
|
|
.following-note_call{
|
|
font-family: var(--font-sans);
|
|
font-size: var(--fs-small);
|
|
line-height: 1;
|
|
position: relative;
|
|
top: -4px;
|
|
}
|
|
|