カードを一色にする
after
https://gyazo.com/94577f638c87f13ab9a8a9652f6642e2
before
https://gyazo.com/270fc572e1bfd497321a7f045d73487e
Scrapboxで文章オンリーのページを作った際に余白を有効活用するCSSを導入した結果、カードの背景色が2色になっているのがノイズでしかなくなったので、統一することにした。緑にしたのは単なる趣味なので#eeffeeの部分を自分の好きな色にするとよい。
code:style.css
.grid li.page-list-item a .header{
background-color: #eeffee;
}
.grid li.two-two.page-list-item a .title {
background-color: #eeffee; !important
}
.grid li.page-list-item a .content{
background-color: #eeffee;
}
UserCSS.icon