-
-
Save littlepea/bf134ef194fcd4fc427d to your computer and use it in GitHub Desktop.
Customized CSS theme for the Evernote Clearly browser extension based on Notable with XL font size
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
/** | |
* CSS theme for the Clearly browser extension by Evernote. | |
* See: www.evernote.com/clearly/ | |
* | |
* Options used alongside this CSS: | |
* Body font: "Adelle", Georgia, 微軟正黑體, Helvetica, Arial, sans-serif | |
* Header font: Soho-condensed, PT Serif, 微軟正黑體, Helvetica | |
* Monospace font: 微軟正黑體Mono, Inconsolata, Consolas, Droid Sans Mono | |
* Background: #FFFFFF | |
* Foregound: #333333 | |
* Links: #009B00 | |
* Base Size: 1.8em | |
* Line Height: 1.9em | |
* Line Width: 90% | |
* Base CSS: Notable | |
* Footnote: On Print | |
* Text Align: Normal | |
* Large Graphics: Show Always | |
*/ | |
#text a:visited { | |
color: #009B00; | |
text-decoration: none; | |
} | |
#text blockquote { | |
padding-left: 16px; | |
border-left: 6px solid #BBB; | |
color: #666; | |
} | |
#text table { max-width: 100%; } | |
#text thead { background-color: #DADADA; } | |
#text tr:nth-child(even) { background: #E0E0E0; } | |
#text th { border-bottom: 1px dashed #888; } | |
#text hr { border-color: #C5C5C5; } | |
#text pre { | |
margin: 1em 0; | |
padding: .5em .75em; | |
max-width: 100%; | |
border: 1px solid #CCC; | |
border-radius: 4px; | |
background-color: #F8F8F8; | |
font-size: 12px; | |
} | |
#text pre code { | |
margin: 0; | |
padding: 0; | |
border: none; | |
background-color: transparent; | |
white-space: pre-wrap; | |
word-wrap: break-word; /* IE */ | |
} | |
#text code { | |
margin: 0 2px; | |
padding: 0px 5px; | |
border: 1px solid #EAEAEA; | |
border-radius: 3px; | |
background-color: #F8F8F8; | |
white-space: nowrap; | |
color: #666; | |
} | |
img{ display: block; margin: 0 auto 1.8em auto; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment