zoukankan      html  css  js  c++  java
  • 自定义Chrome 背景色 (FF需要User Styles插件)

    Chrome有个自定义背景色的文件  Custom.css

    默认里面什么字都没写
    html, body {background-color: #e0dcc0!important;}     
    这个颜色是我最喜欢的豆沙色  也就是 224 220 192
     
    文件位置在哪儿呢?
    对于XP
    C:Documents and Settings系统用户名Local SettingsApplication DataGoogleChromeUser DataDefaultUser StyleSheets
    对于win7
    C:UsersAdministratorAppDataLocalGoogleChromeUser DataDefaultUser StyleSheets
    对于MacOS
    /Users/ririn/Library/Application Support/Google/Chrome/Default/User StyleSheets

    对于Firefox  下载 User Styles插件可以实现相同功能
    再附加更多样式  有CSDN bnblog ITEye的博文底色

    html, body {background-color: #e0dcc0!important;} 
    html, body {font-size:100%} 
    div.post {background-color: #e0dcc0!important;} 
    div.main {background-color: #e0dcc0!important;}
    div#content  {background-color: #e0dcc0!important;}
    div.showBox  {background-color: #e0dcc0!important;}
    div.WB_feed {background-color: #e0dcc0}
    div.blog_main{background-color: #e0dcc0!important;}
    DIV.iteye-blog-content-contain{background-color: #e0dcc0!important;}
    TEXTAREA#source.goog-textarea {background-color: #e0dcc0!important;}
    div.p_content{background-color: #e0dcc0!important;}/*tieba*/
    DIV.j_lzl_c_b_a.core_reply_content{background-color: #e0dcc0!important;}/*tieba*/
    div.entry-content{background-color: #e0dcc0!important;}/*howtodoinJava*/

  • 相关阅读:
    storm 学习教程
    Scala 面向接口编程
    Scala 继承
    IntelliJ IDEA 代码检查规范QAPlug
    Spark入门实战系列
    IntelliJ Idea 常用快捷键 列表(实战终极总结!!!!)
    使用DOM解析XML文档
    栈结构Stack
    队列Queue ,双端队列Deque
    集合转换为数组toArray(),数组转换为集合asList()
  • 原文地址:https://www.cnblogs.com/cart55free99/p/3486333.html
Copyright © 2011-2022 走看看