blob: da057611a4dbfe7cf6170ee2d5f34690bfef96b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/*!
Handheld Style Sheet for the W3C Markup Validation Service.
Copyright 2005 W3C (MIT, INRIA, Keio). All Rights Reserved.
See http://www.w3.org/Consortium/Legal/ipr-notice.html#Copyright
*/
@media handheld {
/* should not be necessary to wrap this way, but safer is better */
html, body, #menu, #banner, .jumpbar, address, .copyright, #revalidate {
background:white !important;
}
body {
padding: 0;
}
#banner, #main, #address {
margin: 0 !important;
padding: 0 !important;
}
#banner {
height: auto;
}
#source div pre { white-space: normal }
#source div pre a {display: block }
}
|