Skip to content

Instantly share code, notes, and snippets.

View luoling8192's full-sized avatar
🏠
Waiting for work

RainbowBird luoling8192

🏠
Waiting for work
View GitHub Profile
@luoling8192
luoling8192 / zhihu-k.js
Last active July 1, 2020 10:13
油猴脚本 - 知乎赞同数用K显示
// ==UserScript==
// @name Zhihu-K
// @namespace https://gist.github.com/rain15z3/82f8d7a5d4778d969d92211c9dfe2fed
// @version 1.0
// @description 知乎赞同数用K显示
// @author RainbowBird
// @match https://www.zhihu.com/*
// @grant none
// @require http://code.jquery.com/jquery-1.11.0.min.js
// ==/UserScript==
@luoling8192
luoling8192 / beautiful-scrollbar.css
Last active August 10, 2021 13:11
Stylus - 全局滚动条美化
::-webkit-scrollbar {
width: 6px;
height: 6px;
background-color: #F5F5F5;
}
::-webkit-scrollbar-track{
-webkit-box-shadow: 0 0 3px rgba(0,0,0,0.3) inset;
background-color: #F5F5F5;
}
::-webkit-scrollbar-thumb{
@luoling8192
luoling8192 / beautiful-baidu.css
Last active July 30, 2020 06:46
Stylus - 百度美化
@-moz-document domain("www.baidu.com") {
#kw {
font-size: 18px;
}
* {
margin: 0;
padding: 0;
box-sizing: content-box;
}
@luoling8192
luoling8192 / beautiful-fonts.css
Last active January 9, 2023 04:43
Stylus - 全局字体美化
/* 全局字体美化
* 作者:RainbowBird
* https://gist.github.com/rain15z3/f8c9c511c7da7b99efd58766500ff084
*/
@font-face {
font-family: monospace;
src: local("JetBrains Mono"), local("PingFang SC");
}