~ubuntu-branches/ubuntu/natty/moin/natty-updates

« back to all changes in this revision

Viewing changes to wiki/htdocs/rightsidebar/css/print.css

  • Committer: Bazaar Package Importer
  • Author(s): Jonas Smedegaard
  • Date: 2008-06-22 21:17:13 UTC
  • mto: This revision was merged to the branch mainline in revision 18.
  • Revision ID: james.westby@ubuntu.com-20080622211713-inlv5k4eifxckelr
ImportĀ upstreamĀ versionĀ 1.7.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*  print.css - MoinMoin Default Styles
 
2
 
 
3
Copyright (c) 2001, 2002, 2003 by Juergen Hermann
 
4
*/
 
5
 
 
6
/* content styles */
 
7
 
 
8
html {
 
9
        font-family: Times, serif;
 
10
        font-size: 12pt;
 
11
}
 
12
 
 
13
body {
 
14
    /* Give about 3.4cm in Mozilla/Firefox and about 2.2cm in Safari */
 
15
        margin: 1.5cm;
 
16
}
 
17
 
 
18
a, a:visited, a.nonexistent, a.badinterwiki {
 
19
        color: black;
 
20
        text-decoration: none;
 
21
}
 
22
 
 
23
a:hover {
 
24
        text-decoration: underline;
 
25
}
 
26
 
 
27
.info a {
 
28
    color: gray;
 
29
}
 
30
 
 
31
pre {
 
32
        font-size: 10pt;
 
33
}
 
34
 
 
35
a.interwiki:before, a.badinterwiki:before {
 
36
        content: attr(title) ":";
 
37
}
 
38
 
 
39
a.interwiki img, a.badinterwiki img {
 
40
        display: none;
 
41
}
 
42
 
 
43
.footnotes div {
 
44
        width: 5em;
 
45
        border-top: 1pt solid gray;
 
46
}
 
47
 
 
48
/* user interface styles */
 
49
 
 
50
#header, #sidebar, #footer, #timings, #credits, #interwiki, #pagelocation {
 
51
        display: none;
 
52
}
 
53