Greasy Fork

来自缓存

Greasy Fork is available in English.

全局页面样式美化

指向文字加粗, 滚动条, 指向图片发光, 输入框美化, 去除下划线。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

/* ==UserStyle==
Rewritten_script_code
@name 全局页面样式美化
@description 指向文字加粗, 滚动条, 指向图片发光, 输入框美化, 去除下划线。
@version 1.5
@namespace http://greasyfork.icu/users/749632
==/UserStyle== */

@-moz-document domain("*") {
    /*滚动条*/
    ::-webkit-scrollbar{width: 6px;height: 6px;}
    ::-webkit-scrollbar-track-piece{background-color: #CCCCCC;-webkit-border-radius: 6px;}
    ::-webkit-scrollbar-thumb:vertical{height: 5px;background-color: #999999;-webkit-border-radius: 6px;}
    ::-webkit-scrollbar-thumb:horizontal{width: 5px;background-color: #CCCCCC;-webkit-border-radius: 6px;}
    ::-webkit-scrollbar {width: 9px;height: 9px;}
    ::-webkit-scrollbar-track-piece {background-color: transparent;}
    ::-webkit-scrollbar-track-piece:no-button {}
    ::-webkit-scrollbar-thumb {background-color: #3994EF;border-radius: 3px;}
    ::-webkit-scrollbar-thumb:hover {background-color: #1E90FF;}/*A4EEF0*/
    ::-webkit-scrollbar-thumb:active {background-color: #3994EF;}
    ::-webkit-scrollbar-button:vertical { width: 9px; }
    ::-webkit-scrollbar-button:horizontal { width: 9px; }
    ::-webkit-scrollbar-button:vertical:start:decrement { background-color: white; }
    ::-webkit-scrollbar-button:vertical:end:increment { background-color: white; }
    ::-webkit-scrollbar-button:horizontal:start:decrement { background-color: white; }
    ::-webkit-scrollbar-button:horizontal:end:increment { background-color: white; }
    body::-webkit-scrollbar-track-piece {background-color: white;}
    
    /*指向图片绿光*/
    img:hover{box-shadow: 0px 0px 4px 4px rgba(130,190,10,0.6) !important;-webkit-transition-property: box-shadow;-webkit-transition-duration: .31s;}
    img{-webkit-transition-property: box-shadow;-webkit-transition-duration: .31s;}
    
    /*输入框美化*/
    input[type="text"]:focus, input[type="password"]:focus, textarea:focus { 
    outline: 2px solid #4C7CD0 !important; 
    -webkit-box-shadow:0px 0px 0px #4C7CD0 !important;} 
    input[type="checkbox"]:focus,input[type="submit"]:focus,input[type="reset"]:focus, input[type="radio"]:focus { 
    outline: 1px solid #4C7CD0 !important;}
    
    /*去除下划线*/
    a{text-decoration:none!important}
    a:hover{text-decoration:none!important}
    
    
    a{
    /*color: #014A8F;*/
    -webkit-transition-property:color;
    -webkit-transition-duration: 0.0s;
    }
    
    /*指向文字加粗*/
    a:hover{
    /*color: #0000FF;*/
    -webkit-transition-property:color;
    -webkit-transition-duration: 0.0s;
    text-shadow:0em 0em 0.1em !important;/*font-weight:bold解决跳动*/
    }
}