This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a:link, a:visited, a:active { | |
color: #8e8d93; | |
-webkit-transition: all .15s; | |
-moz-transition: all .15s; | |
-ms-transition: all .15s; | |
-o-transition: all .15s; | |
transition: all .15s; | |
} | |
a.top:link, a.top:visited, a.top:active { | |
color: #000; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#weasel.custom.yaml | |
patch: | |
"preset_color_schemes/Solarized_Lite": | |
author: "五磅兔 zcunlin@foxmail.com, based on Aben's 曬經石\Solarized_Rock, original artwork by ethanschoonover‘s solarized" | |
back_color: 0xe3f6fd | |
border_color: 0xd5e8ee | |
candidate_text_color: 0x969483 | |
hilited_back_color: 0xd5e8ee | |
hilited_candidate_back_color: 0x98a12a | |
hilited_candidate_text_color: 0xd5e8ee |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript: (function() { | |
NodeList.prototype.forEach = Array.prototype.forEach; | |
var navId = 'shellexy_html5nav_bar'; | |
if (nav = document.getElementById(navId)) { | |
document.body.style.marginLeft = document.body.getAttribute('marginLeft'); | |
return nav.parentElement.removeChild(nav); | |
} | |
if (!document.styleSheets.length) { | |
document.body.appendChild(document.createElement('style')); | |
} |