source: branches/web-klask/css/print.css @ 40

Last change on this file since 40 was 40, checked in by g7moreau, 16 years ago
  • Add web-klask project from Kevin Reverchon
File size: 2.2 KB
Line 
1/*
2** BLUE:SKY - css print stylesheet
3** This CSS file makes sure that the page is looking
4** good when it gets printed.
5**
6** March 5, 2006 - (version 1.0)
7**
8** this is a part of the open source layout by
9** Jonas John (www.jonasjohn.de) ~ made for oswd.org !
10*/
11
12html * { 
13        margin: 0; 
14        padding: 0; 
15        border: 0;
16}
17
18body { 
19    background: none; 
20    font-size: 100%; 
21    color: #000000;
22    font-family: "Lucida Grande", Verdana, Arial, sans-serif;
23}
24
25
26/* hide these page elements: */
27#left, #path {
28    display:none;
29} 
30
31
32#header {     
33    border-bottom: 0.05em solid #666;
34}
35
36#header a:link, #header a:visited {
37    color: #666666;
38    text-decoration: none;
39    font-family: "Trebuchet MS", Arial, Tahoma, sans-serif;
40    font-weight: bold;
41    font-size: 1.8em;
42    letter-spacing: -0.1em;
43    line-height: 1.2em;
44}
45
46
47#page {
48    width: 100%; 
49    margin: 0em; 
50    background-color: transparent; 
51}
52
53#content {
54    width: 100%; 
55    font-size: 0.95em;
56}
57
58#content h1 {
59    border: none; 
60    clear: both;
61    margin: 0em 0em 0em 0em;
62    padding: 0.5em 0em 0em 0.1em;
63    font-size: 1.4em;
64    font-family: "Trebuchet MS", Arial, sans-serif;
65    color: #666666;
66}
67
68#content p {
69    margin: 0em 0em 0.5em 0em;
70    padding: 0.2em;
71}
72
73#content a:link, #content a:visited {
74    color: #000080;
75}
76
77/* special features (mozilla only) */
78
79/* Prints the link url after the link text (mozilla/ff only) */
80#content p a[href]:after { 
81    content: " < " attr(href) ">";
82    font-size: 0.7em;
83}
84
85/* Prints the title after the acronyms (mozilla/ff only) */
86acronym:after { 
87    content: " (" attr(title) ")";
88    font-style: normal;
89}
90   
91div.img_left {
92    float: left; 
93    margin: 0.5em 0.8em 0em 0em;
94    border: none;
95}
96
97div.img_right {
98    float: right; 
99    margin: 0.5em 0em 0em 0.8em;
100    border: none;
101}
102
103div.img_left img, div.img_right img {
104    border: 0.2em solid #CCCCCC;
105}
106
107br.clear {
108    clear:both;
109    display: none;
110}
111
112
113#footer {     
114    border-top: 0.1em solid #666;
115    color: #000;
116    font-size: 0.8em; 
117    text-align: right;
118    margin: 2.3em 0em 0.5em 0em;
119}
120
Note: See TracBrowser for help on using the repository browser.