Scrapboxのホーム画面でタイトルでページの色を制御する
本来はたぶん混ぜない方がいい
→カード(ページ・サムネイル)の色を変える
style.css .grid li.page-list-item > a[href^="/lively-cell-2601/%F0%9F%93%98"] > .content {
background-color: #F0EDC0 !important;
}
.grid li.page-list-item > a[href^="/lively-cell-2601/%E2%9D%93"] > .content {
background-color: #D8CEF6 !important;
}
.grid li.page-list-item > a[href*="%E2%9C%85"] > .content {
opacity:0.5 !important;
}
style.css/* title 属性を持つ <a> 要素 */
a[title] {
color: purple;
}
/* href が "https://example.org" と一致する <a> 要素 */
a[href="https://example.org"] {
color: green;
}
/* href に "example" を含む <a> 要素 */
a[href*="example"] {
font-size: 2em;
}
/* href が "org" で終わる <a> 要素 */
a[href$=".org"] {
font-style: italic;
}