source: branches/posledni/forum/styles/prosilver/theme/print.css

Last change on this file was 702, checked in by george, 15 years ago
  • Upraveno: Aktualizace fóra.
File size: 3.1 KB
Line 
1/* proSilver Print Style Sheet
2-------------------------------------------------
3 Author: subBlue ( http://www.subBlue.com/ )
4 Version: 25 August 2004
5
6 Copyright 2004 phpBB Group
7-------------------------------------------------*/
8
9
10/* Lots still TODO here! */
11
12/* General markup styles */
13* {
14 padding: 0;
15 margin: 0;
16}
17
18body {
19 font: 11pt Verdana, Arial, Helvetica, sans-serif;
20 color:#000000;
21}
22
23a:link { color: #000000; text-decoration: none; }
24a:visited { color: #000000; text-decoration: none; }
25a:active { color: #000000; text-decoration: none; }
26
27img, .noprint, #sub-header, #sub-footer, .navbar, .box1, .divider, .signature { display: none; }
28/* Display smilies (Bug #47265) */
29.content img {
30 display: inline;
31}
32
33/* Container for the main body */
34#wrap {
35 margin: 0 2em;
36}
37
38p { font-size: 85%; }
39.copyright { font-size: 75%; }
40.page-number { float:right; width: auto; text-align: right; font-size: 75%; }
41
42h1, h2, h3, h1 a, h2 a, h3 a {
43 font-family: "Trebuchet MS",georgia,Verdana,Sans-serif;
44 color: #000000;
45 background: none;
46 text-decoration: none;
47 font-weight: bold;
48}
49
50h1 { font-size: 20pt; }
51h2 { font-size: 16pt; margin-top: 1em; }
52h3 { font-size: 14pt; margin-top: 1em; }
53
54.content {
55 font-size: 11pt;
56 line-height: 14pt;
57 margin-bottom: 1em;
58 font-family: "Lucida Grande", "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
59 overflow: hidden;
60}
61
62/* CSS2 Print tip from: http://www.alistapart.com/articles/goingtoprint/ */
63.postbody a:link, .postbody a:visited, .postbody a:active, .postbody a:hover {
64 text-decoration: underline;
65 padding: 0.1em 0.2em;
66 margin: -0.1em -0.2em;
67 color: #666;
68 background: none;
69 font-size: 100%;
70}
71
72html>body .postbody a:link:after, html>body .postbody a:visited:after {
73 content: " (" attr(href) ") ";
74 font-size: 90%;
75 text-decoration: none;
76}
77
78hr {
79 height: 1px;
80 background-color: #999999;
81 border-width: 0;
82}
83
84.author {
85 font-family: Verdana, Arial, Helvetica, sans-serif;
86 font-size: 75%;
87 margin-bottom: 0.6em;
88}
89
90.date {
91 font-family: Verdana, Arial, Helvetica, sans-serif;
92 float: right;
93 position: relative;
94 text-align: right;
95 font-size: 75%;
96}
97
98/* Dont want to print url for names or titles in content area */
99.postbody .author a:link, .postbody .author a:visited,
100html>body .postbody .author a:link:after,
101html>body .postbody .author a:visited:after,
102.postquote .quote-by a:link, .postquote .quote-by a:visited,
103html>body .postquote .quote-by a:link:after,
104html>body .postquote .quote-by a:visited:after,
105html>body .postbody h1 a:link:after, html>body .postbody h2 a:link:after {
106 text-decoration: none;
107 content: "";
108}
109
110/* Poster profile */
111.postprofile { display: none; }
112.grip-show { display:none; }
113
114/* Quote */
115.postquote, blockquote {
116 font-size: 85%;
117 margin: 1em 18% 1em 4%;
118 padding: 0.5em;
119 position: relative;
120 line-height: 1.5em;
121 border: 1px #999999 solid;
122}
123
124.postquote img { display: none; }
125.postquote span { display: block; }
126.postquote span .postquote { font-size: 100%; }
127.quote-by, blockquote cite {
128 color: black;
129 display : block;
130 font-weight: bold;
131}
132
133/* List */
134ol, ul {
135 margin-left: 15pt
136}
137
138/* Misc page elements */
139div.spacer { clear: both; }
140
141/* Accessibility tweaks: Mozilla.org */
142.skip_link { display: none; }
Note: See TracBrowser for help on using the repository browser.