Scrapboxのホーム画面でタイトルでページの色を制御する
死んだ文章が並ぶScrapboxだと、明暗というか高低というか凹凸を付けたくなる
本来はたぶん混ぜない方がいい
→カード(ページ・サムネイル)の色を変える
https://gyazo.com/790222a715d9f2e22637c037df08f4dd
code:style.css
.grid li.page-list-item > ahref^="/lively-cell-2601/%F0%9F%93%98" > .content {
background-color: #F0EDC0 !important;
}
.grid li.page-list-item > ahref^="/lively-cell-2601/%E2%9D%93" > .content {
background-color: #D8CEF6 !important;
}
.grid li.page-list-item > ahref*="%E2%9C%85" > .content {
opacity:0.5 !important;
}
HTMLカラーコード
属性セレクター - CSS: カスケーディングスタイルシート | MDN
code:style.css
/* title 属性を持つ <a> 要素 */
atitle {
color: purple;
}
/* href が "https://example.org" と一致する <a> 要素 */
a[href="https://example.org"] {
color: green;
}
/* href に "example" を含む <a> 要素 */
ahref*="example" {
font-size: 2em;
}
/* href が "org" で終わる <a> 要素 */
ahref$=".org" {
font-style: italic;
}