135 lines
No EOL
2.3 KiB
CSS
135 lines
No EOL
2.3 KiB
CSS
.description {
|
|
/* margin-bottom: calc(var(--baseline)*1); */
|
|
padding-left: calc(var(--unit)*0.75);
|
|
padding-right: calc(var(--unit)*0.75);
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.description-after {
|
|
margin-top: -2px;
|
|
margin-bottom: calc(var(--baseline)*1);
|
|
}
|
|
|
|
.description-before {
|
|
margin-bottom: 2px;
|
|
}
|
|
|
|
.description-before,
|
|
.description-after {
|
|
|
|
font-size: var(--sign-size);
|
|
color: var(--sign-color);
|
|
letter-spacing: var(--sign-spacing);
|
|
font-family: var(--sign-family);
|
|
line-height: var(--sign-baseline);
|
|
|
|
}
|
|
|
|
.description::before,
|
|
.description::after {
|
|
content: "......";
|
|
font-size: var(--sign-size);
|
|
color: var(--sign-color);
|
|
letter-spacing: var(--sign-spacing);
|
|
font-family: var(--sign-family);
|
|
line-height: var(--sign-baseline);
|
|
word-break: break-all;
|
|
width: calc(var(--unit)*0.75 + 4px);
|
|
overflow-wrap: anywhere;
|
|
display: block;
|
|
}
|
|
|
|
.description::before {
|
|
position: absolute;
|
|
left: 0;
|
|
top: -3px;
|
|
}
|
|
|
|
.description::after {
|
|
position: absolute;
|
|
right: -13px;
|
|
top: -3px;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
h5 {
|
|
font-size: var(--sign-size);
|
|
color: var(--sign-color);
|
|
font-weight: normal;
|
|
position: relative;
|
|
z-index: 10;
|
|
top: calc(var(--baseline)*1);
|
|
|
|
background-color: white;
|
|
display: inline;
|
|
}
|
|
|
|
h5::before, h6::before{
|
|
font-size: var(--sign-size);
|
|
color: var(--sign-color);
|
|
letter-spacing: var(--sign-spacing);
|
|
font-family: var(--sign-family);
|
|
line-height: var(--sign-baseline);
|
|
}
|
|
|
|
|
|
.pagedjs_right_page h5{
|
|
left: -80px;
|
|
}
|
|
|
|
.pagedjs_right_page h5::before{
|
|
content: "+++++++"
|
|
}
|
|
|
|
.pagedjs_left_page h5{
|
|
left: -49px;
|
|
}
|
|
|
|
.pagedjs_left_page h5::before{
|
|
content: "+++++"
|
|
}
|
|
|
|
|
|
|
|
.h6_container {
|
|
position: relative;
|
|
z-index: 10;
|
|
top: calc(var(--baseline)*1);
|
|
}
|
|
|
|
h6 {
|
|
font-size: var(--sign-size);
|
|
color: var(--sign-color);
|
|
font-weight: normal;
|
|
position: relative;
|
|
background-color: white;
|
|
display: inline;
|
|
|
|
}
|
|
|
|
h6::before {
|
|
content: "++";
|
|
|
|
}
|
|
|
|
|
|
.decor-h6 {
|
|
font-size: var(--sign-size);
|
|
color: var(--sign-color);
|
|
letter-spacing: var(--sign-spacing);
|
|
font-family: var(--sign-family);
|
|
line-height: var(--sign-baseline);
|
|
position: absolute;
|
|
left: -49px;
|
|
top: calc(var(--baseline)*-2.5 + 11px);
|
|
}
|
|
|
|
.pagedjs_right_page .decor-h6 {
|
|
left: -80px;
|
|
top: calc(var(--baseline)*-4.5 + 11px);
|
|
} |