add selected bg style

This commit is contained in:
Vanessa 2012-08-06 14:27:00 +08:00
parent 535b756036
commit 9a91b4cf1e
2 changed files with 14 additions and 1 deletions

View File

@ -2,7 +2,7 @@
* skin neoease style
*
* @author <a href="mailto:LLY219@gmail.com">Liyuan Li</a>
* @version 1.0.1.6, May 14, 2012
* @version 1.0.1.7, Aug 6, 2012
*/
/* start base */
html, body, div, ul, li, h1, h2, h3, h4, h5, h6 {
@ -10,6 +10,17 @@ html, body, div, ul, li, h1, h2, h3, h4, h5, h6 {
padding: 0;
}
::selection {
background-color: #ccc;
color: #fff;
}
::-moz-selection{
background-color: #ccc;
color: #fff;
}
body {
font-family: "Lucida Grande",'Verdana,\5fae\8f6f\96c5\9ed1';
font-size: 12px;

View File

@ -1,4 +1,6 @@
html,body,div,ul,li,h1,h2,h3,h4,h5,h6{margin:0;padding:0;}
::selection{background-color:#ccc;color:#fff;}
::-moz-selection{background-color:#ccc;color:#fff;}
body{font-family:"Lucida Grande",'Verdana,\5fae\8f6f\96c5\9ed1';font-size:12px;background-color:#F9F9F9;color:#333;}
a:link{outline:none;color:#21759B;text-decoration:none;}
a:visited{color:#555777;}