Created
April 10, 2016 12:03
-
-
Save sky-y/181bab80de0d032b76bd74ee659d2d8f to your computer and use it in GitHub Desktop.
彩郎(@irodraw)さん「改・WorkFlowyで「三色ボールペン方式」」のStylish(Firefox)用CSS (2015/07/27版)
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
/* | |
原作者(Original Author): 彩郎さん (@irodraw) | |
出典: 改・WorkFlowyで「三色ボールペン方式」 | |
http://www.tjsg-kokoro.com/2015/07/27/kai-3colors/ | |
*/ | |
@namespace url(http://www.w3.org/1999/xhtml); | |
@-moz-document domain("workflowy.com") { | |
.contentUnderline{ | |
border-bottom: 2px #0000FF solid; | |
text-decoration:none; | |
} | |
.contentUnderline.contentItalic{ | |
border-bottom: 2px #FF0000 solid; | |
color: #000000; | |
} | |
.contentBold { | |
font-weight: normal; | |
background: -moz-linear-gradient(top, | |
rgba(188, 245, 169, 0), | |
rgba(188, 245, 169, 0) 5%, | |
rgba(188, 245, 169, 1) 10%, | |
rgba(188, 245, 169, 1) | |
); | |
} | |
.contentItalic{ | |
font-style: normal; | |
color: #FF0000; | |
} | |
.contentBold.contentItalic { | |
background: -moz-linear-gradient(top, | |
rgba(255, 255, 255, 1), | |
rgba(255, 255, 255, 1) 5%, | |
rgba(255, 255, 255, 1) 10%, | |
rgba(255, 255, 255, 1) | |
); | |
color: #04B404; | |
} | |
.contentUnderline.contentItalic.contentBold{ | |
background: -moz-linear-gradient(top, | |
rgba(188, 245, 169, 0), | |
rgba(188, 245, 169, 0) 5%, | |
rgba(188, 245, 169, 1) 10%, | |
rgba(188, 245, 169, 1) | |
); | |
color: #000000; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment