generated at
UserCSS:ページリストの見出しにFontAwesomeアイコンをつける
style.css
:root { --main-color: DarkGray; /* 主調色 */ }

ページタイトルの先頭にアイコンFontAwesome)を追加
style.css
.grid li.page-list-item > a[href^="/suto3/"] > .content > .header > .title::before { font-family: 'Font Awesome 5 Free'; font-weight: 900; /*content: '\f096'; /* 四角 */ /*content: '\f0c8'; /* 四角 */ content: '\f15b'; /* ファイル */ font-size: 12px; color: var(--main-color); }

UserCSS