template-obsidian-vault/.obsidian/plugins/definition-list/styles.css

34 lines
637 B
CSS
Raw Permalink Normal View History

2024-10-02 18:57:21 +00:00
/* reading mode */
dl dt {
font-weight: bold;
}
/* live preview */
.dl-dt {
font-weight: bold;
}
.dl-dd-reg {
display: inline-block;
width: calc(100% - 40px);
padding-left: 40px !important;
/* to add space between definitions, must use padding */
/* padding-bottom: 0.75em !important; */
}
.dl-dd-indent {
display: inline-block;
width: calc(100% - 40px);
padding-left: 40px !important;
text-indent: 0px !important;
/* to add space between definitions, must use padding */
/* padding-bottom: 0.75em !important; */
}
.dl-hidden-marker {
display: inline-block;
overflow: hidden;
height: 0;
width: 0;
}