プロジェクトタイトルの隣に好きな画像を表示するUserCSS
プロジェクトタイトルの隣に好きな画像を表示するUserCSS
2021/07/09 07:50:21アイコン記法のAPIをつかって、画像を表示するテストsuto3.icon
TODAYにしたことによって、「アイコン記法のAPIをつかって」という文面の意味がわからなくなった suto3.icon
すみません……takker.icon
もともとは、background-image にアイコン記法のAPIを使い、ページのアイコンを表示させることを意図していた
アイコン記法なので、ページトップ画像を入れ替えれば、UserCSSの変更なしに画像を入れ替えることができる
code:style.css
.quick-launch .project-home .title::after {
content: ''; /* */
width: 1em; /* */
height: 1em; /* */
margin-left: 10px;
padding: 10px 0px 0px 80px; /* */
position: center bottom;
background-image: url('/api/pages/villagepump/Scrapbox_Beaver/icon');
background-size: contain; /* */
background-repeat: no-repeat; /* */
/* border-radius: 10px; /* */
}