settings
---
ちまちまやっていく
装飾系を消す
code:style.css
/*最初*/
.grid li.page-list-item a {box-shadow:none}
/*中身*/
.page {box-shadow:none}
/*.pin {display:none}*/
見た目を変える
code:style.css
/*最初*/
body {--card-title-bg:none}
.page-list-item.pin + .page-list-item:not(.pin) {
grid-column-start: 1;
}
.grid li.page-list-item a {
border-radius:0px;
}
/*中身*/
.page {border-radius:0px}
.line .indent-mark .dot{
top:13px;
width:2px;
height:2px;
}
---
code:style.css
:root{
--card-backdide1:#4F79FF;
--card-backdide2:#FF7175;
--code-number-color: #000; --cosesnse-default-line-height: 28px;
--gradient-data: rgba(255, 0, 0, 1) 0%, rgba(255, 154, 0, 1) 10%, rgba(208, 222, 33, 1) 20%, rgba(79, 220, 74, 1) 30%, rgba(63, 218, 216, 1) 40%, rgba(47, 201, 226, 1) 50%, rgba(28, 127, 238, 1) 60%, rgba(95, 21, 242, 1) 70%, rgba(186, 12, 248, 1) 80%, rgba(251, 7, 217, 1) 90%, rgba(255, 0, 0, 1) 100%;
}
code:style.css
.lines .line{
.indent-mark{height: 100%}
.table-block .indent-mark{height: auto}/*tableは除外する*/
}
.indent-mark{
.pad{
height: 100% !important;
overflow: unset !important;
}
span:not(:nth-last-child(-n+2)) .pad{
border-right: 1px solid var(--indent-color);
}
}
code:style.css
.line:not(.cursor-line){
.indent:has(span.char-indexdata-char="-":first-child):not(:has(span:first-child a)):not(:has(span:first-child span.blank)){ text-decoration:line-through;
min-height: var(--cosesnse-default-line-height);
}
.indent:not(:has(span:first-child a)):not(:has(span:first-child span.blank)) span.char-indexdata-char="-":first-child{ display:none;
}
}
code:style.css
display: flex;
align-items: center;
&:not(.cursor-line){
height: var(--cosesnse-default-line-height);
&:after{
flex-grow: 1;
content: "";
}
}
}
display:none;
}
}
ピンされてる、特定のハッシュタグを持つページのピンの色を変える
code:style.css
div.pin{
background:linear-gradient(45deg, var(--card-backside1, #90AFC5), }
}
div.pin{
background:linear-gradient(45deg, var(--card-backside1, #336B87), }
}