特定のリンクにアイコンをつけるUserCSS
共通
code:style.css
div.line span:not(.modal-image):not(.pointing-device-map) > a.link:not(.icon):is(
)::after {
display: none;
}
先頭にアイコンをつける
code:style.css
.line span:not(.deco-\.) > span > a.link:is(
)::before {
display: inline-block;
width: 1em; /*16px;*/
height: 1em; /*16px;*/
vertical-align: -1px;/*-3px;*/
text-align: center;
background-size: contain;
background-repeat: no-repeat;
/* margin-right: 2px; */
}
個別
PDF
code:style.css
:is(.line, .line .deco) a.link:is(
)::before {
font-family: 'Font Awesome 5 Free';
content: '\f1c1';
font-weight: 400; /* use Regular Style */
margin-right: 1px;
}
Github
code:style.css
:is(.line, .line .deco) a.link:is(
)::before {
font-family: 'Font Awesome 5 Brands';
content: '\f09b';
font-weight: 400;
margin-right: 1px;
}
Twitter
code:style.css.old
:is(.line, .line .deco) a.link:is(
)::before {
font-family: 'Font Awesome 5 Brands';
content: '\f099';
font-weight: 400;
margin-right: 1px;
}
テンプレート
code:css
:is(.line, .line .deco) a.link:is(
)::before {
font-family: "Font Awesome 5 Free","Font Awesome 5 Brands"
content: "\f266"; /* Font Awesomeのアイコンの文字コード */
font-weight: 400; /* 通常はnormal(400), SOLIDアイコンはbold(700以上) */
margin-right: 1px; /* アイコンとリンク文字の間隔(隙間) */
}