garrett (owner)

Revisions

gist: 23569 Download_button fork
public
Description:
userstyle for Google docs survey results, in a printable form (toggle it off to make it usable after printing)
Public Clone URL: git://gist.github.com/23569.git
Embed All Files: show embed
gdocs-survey-printable.userstyle.css #
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
@namespace url(http://www.w3.org/1999/xhtml);
 
@-moz-document domain("spreadsheets.google.com") {
 
  #ss-body {
    height: auto !important;
    overflow: visible !important;
    overflow-y: visible !important;
    display: inline !important;
    font-size: 0.9em;
  }
 
  html, body.g-doc {
    overflow: auto !important;
    display: inline !important;
  }
 
  #ss-header,
  .ss-experimental-box,
  #ss-top-nav,
  #ss-footer {
    display: none;
  }
 
  #charts {
    border: none !important;
  }
 
}