source: ether_2012/web/cathy/css/blueprint-css/blueprint/src/print.css @ 319

Last change on this file since 319 was 319, checked in by vmipsl, 12 years ago

Import du projet Ether pour le nouveau look 2012

File size: 2.1 KB
Line 
1/* --------------------------------------------------------------
2
3   print.css
4   * Gives you some sensible styles for printing pages.
5   * See Readme file in this directory for further instructions.
6
7   Some additions you'll want to make, customized to your markup:
8   #header, #footer, #navigation { display:none; }
9
10-------------------------------------------------------------- */
11
12body {
13  line-height: 1.5;
14  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
15  color:#000;
16  background: none;
17  font-size: 10pt;
18}
19
20
21/* Layout
22-------------------------------------------------------------- */
23
24.container {
25  background: none;
26}
27
28hr {
29  background:#ccc;
30  color:#ccc;
31  width:100%;
32  height:2px;
33  margin:2em 0;
34  padding:0;
35  border:none;
36}
37hr.space {
38  background: #fff;
39  color: #fff;
40  visibility: hidden;
41}
42
43
44/* Text
45-------------------------------------------------------------- */
46
47h1,h2,h3,h4,h5,h6 { font-family: "Helvetica Neue", Arial, "Lucida Grande", sans-serif; }
48code { font:.9em "Courier New", Monaco, Courier, monospace; }
49
50a img { border:none; }
51p img.top { margin-top: 0; }
52
53blockquote {
54  margin:1.5em;
55  padding:1em;
56  font-style:italic;
57  font-size:.9em;
58}
59
60.small  { font-size: .9em; }
61.large  { font-size: 1.1em; }
62.quiet  { color: #999; }
63.hide   { display:none; }
64
65
66/* Links
67-------------------------------------------------------------- */
68
69a:link, a:visited {
70  background: transparent;
71  font-weight:700;
72  text-decoration: underline;
73}
74
75/*
76        This has been the source of many questions in the past. This
77        snippet of CSS appends the URL of each link within the text.
78        The idea is that users printing your webpage will want to know
79        the URLs they go to. If you want to remove this functionality,
80        comment out this snippet and make sure to re-compress your files.
81 */
82a:link:after, a:visited:after {
83  content: " (" attr(href) ")";
84  font-size: 90%;
85}
86
87/* If you're having trouble printing relative links, uncomment and customize this:
88   (note: This is valid CSS3, but it still won't go through the W3C CSS Validator) */
89
90/* a[href^="/"]:after {
91  content: " (http://www.yourdomain.com" attr(href) ") ";
92} */
Note: See TracBrowser for help on using the repository browser.