| 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 |
} |