body
要素には「view-teampedia-index」、各記事には「entry」、よみがなには「yomigana」というクラスが付けられています。そこで、次のように、よみがなの色(ここでは水色)を指定します。
.view-teampedia-index .entry .yomigana {
color: #0099cc;
}
content
プロパティを使ってサブタイトル要素の前後に括弧記号を挿入します。
/* subtitle の前に開き括弧記号を挿入 */
.view-teampedia-index .entry .subtitle:before {
content: "(";
}
/* subtitle の後ろに閉じ括弧記号を挿入 */
.view-teampedia-index .entry .subtitle:after {
content: ")";
}
text_color.png
subtitle1.png