我正在尝试更改上模板的样式表中的边框
my blog
,但是我从来没有用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
有没有快速的方法达到预期的效果?谢谢你的帮助!