|
楼主 |
发表于 2024-3-22 15:01:24
|
显示全部楼层
谢谢
/*分别是字体粗细(整百数字),字体样式,字体阴影*/
*{font-weight:1000!important;}
*:not([class*="icon"]):not(i) {font-family: "Microsoft Yahei","iconfont","FontAwesome" !important;}
@font-face {font-family: "Microsoft Yahei";src: local("Microsoft Yahei")}
*{text-shadow:0.01em 0.01em 0.01em #999999 !important;}
/**{text-shadow: 0 0 0.00px rgba(0, 0, 0, 1) #999999!important;}*/
/*淡蓝色样式*/
a{-webkit-transition: all 0.3s ease-out;}
a:hover{color: #39F !important;text-shadow:-5px 3px 18px #39F !important;-webkit-transition: all 0.3s ease-out;}
*::-webkit-selection {background: #333333 !important; color: #00FF00 !important; }
/*访问过链接红色*/
a:visited, a:visited *, a:active, a:active * {color: #FF0000 !important;}
/*指向文字加粗*/
a:hover {
/*color: #0000FF ;*/
-webkit-transition-property:color;
-webkit-transition-duration: 0.0s;
font-weight:bold
}
/*排除某个网站*/
/**cb-css-exclusions(harvard.edu google.com)**/ |
|