PluginProbe
WP-Print / 2.53
WP-Print v2.53
3.0.0 trunk 1.00 2.00 2.01 2.02 2.03 2.04 2.05 2.06 2.10 2.11 2.20 2.30 2.31 2.40 2.50 2.52 2.53 2.54 2.55 2.56 2.57 2.57.1 2.57.2 All 29 releases
wp-print / print-css.css

print-css.css in WP-Print 2.53, at print-css.css

73 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /*
2 * WordPress Plugin: WP-Print
3 * Copyright (c) 2012 Lester "GaMerZ" Chan
4 *
5 * File Written By:
6 * - Lester "GaMerZ" Chan
7 * - http://lesterchan.net
8 *
9 * File Information:
10 * - CSS Style For Printer Friendly Page
11 * - wp-content/plugins/wp-print/print-css.css
12 */
13
14
15 Body {
16 font-family: Verdana, Arial, Tahoma;
17 font-size: 12px;
18 color: #000000;
19 }
20 .Center {
21 margin: 0px auto 0px auto;
22 }
23 #Outline {
24 width: 90%;
25 margin-left: auto;
26 margin-right: auto;
27 padding: 10px;
28 border: 1px solid #000000;
29 }
30 #BlogTitle {
31 font-weight: bold;
32 font-size: 16px;
33 margin-bottom: 5px;
34 }
35 #BlogDate {
36 margin-top: 5px;
37 margin-bottom: 10px;
38 }
39 #BlogContent {
40 padding: 10px;
41 margin-top: 10px;
42 }
43 HR.Divider {
44 width: 80%;
45 height: 1px;
46 color: #000000;
47 }
48 #CommentTitle {
49 font-weight: bold;
50 font-size: 16px;
51 padding-bottom: 10px;
52 }
53 .CommentDate {
54 margin-top: 5px;
55 margin-bottom: 10px;
56 }
57 .CommentContent {
58 padding: 2px 10px 10px 10px;
59 }
60 @media print {
61 #comments_controls,
62 #print-link {
63 display: none;
64 }
65 }
66 .alignleft, div.alignleft {
67 float: left;
68 margin: 10px 10px 5px 0;
69 }
70 .alignright, div.alignright {
71 float: right;
72 margin: 10px 0 5px 10px;
73 }