使用:Windows端
需求:例如在写笔记时我希望将包含定理的块添加一个边框并设置颜色以突出显示,请问在logseq中可以实现吗?
可以,这里有个例子(边框相关的是border
):
div[data-refs-self*="Theorem" i] {
background: rgba(0, 48, 59, 0.2);
border: 2px solid;
border-color: #000000;
border-radius: 10px;
/* padding: 0.6em 0.4em 0.4em 0.4em; */
margin-bottom: 10px;
}
a.tag[data-ref="Theorem" i]::before { content: ''; margin-right: 0px; width: 0px;}
a.tag[data-ref="Theorem" i] {
background-color: rgba(101, 101, 101, 0.2);
color:rgb(35, 113, 116);
}
更多类似的代码你可以参考
好的,非常感谢!