のカスタム ブロックでbookdown
リンクのスタイルを設定しようとしています。カスタム ブロック タイプは「rmdcomment」と呼ばれ、style.css
ファイルに次を追加しました。
.rmdcomment {
padding: 1em 1em 1em 4em;
margin-top: 30px;
margin-bottom: 30px;
background: #1f9ac9;
position:relative;
color: white;
}
.rmdcomment:before {
content: "\f075";
font-family: FontAwesome;
left:10px;
position:absolute;
top:0px;
font-size: 45px;
color: white;
}
上記は正しく表示されます。
リンクのスタイルを設定する(失敗した)試みで、次のものも追加しました。
.rmdcomment a:link {text-decoration: underline; font-weight:bold; color:white;}
.rmdcomment a:visited {text-decoration: underline; font-weight:bold; color:white;}
.rmdcomment a:hover {text-decoration: underline; font-weight:bold; color:white;}