summaryrefslogtreecommitdiff
path: root/css/readability-print.css
diff options
context:
space:
mode:
authorJJfutbol <JJfutbol@d4e419ec-0920-11de-bbfd-a7c1bc4c261e>2009-07-09 01:51:25 +0000
committerJJfutbol <JJfutbol@d4e419ec-0920-11de-bbfd-a7c1bc4c261e>2009-07-09 01:51:25 +0000
commit39c3d23a79705caa7441a3cce47ed26ff9d7599b (patch)
treee91d172a992c7af0f38d70b8c4e6c4877f90f9de /css/readability-print.css
parent9b1ba47d51651884f2125eed64f553a23bb103ea (diff)
downloadreadability-simple-39c3d23a79705caa7441a3cce47ed26ff9d7599b.tar.bz2
readability-simple-39c3d23a79705caa7441a3cce47ed26ff9d7599b.zip
- updated css, deployed readability on lab.arc90.com had some changes not included
- added user font size and family styles to print css - added twitter link to index page and styles to css - updated readability-start.js to now use a dynamic lookup of the baseHref - added check for console object, creates blank object if not defined - this way we can hold onto the current debugging for now safely git-svn-id: http://arc90labs-readability.googlecode.com/svn/trunk@60 d4e419ec-0920-11de-bbfd-a7c1bc4c261e
Diffstat (limited to 'css/readability-print.css')
-rwxr-xr-xcss/readability-print.css49
1 files changed, 43 insertions, 6 deletions
diff --git a/css/readability-print.css b/css/readability-print.css
index a4c8cb3..855e827 100755
--- a/css/readability-print.css
+++ b/css/readability-print.css
@@ -1,7 +1,44 @@
-#readInner {
- width: 100% !important;
- font-size: 12pt;
-}
-#readTools {
- display: none;
+#readInner {
+ width: 100% !important;
+}
+#readTools {
+ display: none;
+}
+
+/* ------ Size Options ------- */
+
+.size-small {
+ font-size: 12px;
+}
+.size-medium {
+ font-size: 18px;
+}
+.size-large {
+ font-size: 26px;
+}
+.size-x-large {
+ font-size: 34px;
+}
+
+/* ------ Style Options ------- */
+
+.style-novel {
+ font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
+}
+.style-ebook {
+ font-family: Arial, Helvetica, sans-serif;
+}
+.style-ebook h1 {
+ font-family: "Arial Black", Gadget, sans-serif;
+ font-weight: normal;
+}
+.style-newspaper {
+ font-family: "Times New Roman", Times, serif;
+}
+.style-newspaper h1 {
+ font-family: Georgia, "Times New Roman", Times, serif;
+ text-transform: capitalize;
+}
+.style-terminal {
+ font-family: "Lucida Console", Monaco, monospace;
} \ No newline at end of file