ブログのテンプレートのスタイルシートで枠線を変えようと思っているのですが、cssで何もしたことがないので少し戸惑います… 背景は暗いままにしたいのですが、投稿の周りに、少し異なる色の小さな境界線を作成したいと考えています。私の推測が正しければ、これらの定義のいくつかを変更する必要があります。
body {
background:$bgcolor;
margin:0;
color:$textcolor;
font: x-small "Trebuchet MS", Trebuchet, Verdana, Sans-serif;
font-size/* */:/**/small;
font-size: /**/small;
text-align: center;
}
a:link {
color:$linkcolor;
text-decoration:none;
}
a:visited {
color:$visitedlinkcolor;
text-decoration:none;
}
a:hover {
color:$titlecolor;
text-decoration:underline;
}
a img {
border-width:0;
}
これは、私が使用しているテンプレート全体を含むペーストです: http://pastie.org/932535
目的の効果を達成するための簡単な方法はありますか? あなたの助けに感謝します!