~ubuntu-branches/debian/experimental/pygame/experimental

« back to all changes in this revision

Viewing changes to docs/_static/reset.css

  • Committer: Package Import Robot
  • Author(s): Vincent Cheng
  • Date: 2013-02-21 00:23:03 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20130221002303-08xmo02oym2hxjee
Tags: 1.9.2~pre~r3189-1
* New upstream hg snapshot (rev 3189).
* Avoid potentially overriding a symlink in python3.2-dev. (Closes: #700997)
* Generate correct versioned dependency on python-numpy following ABI change
  using the dh_numpy and dh_numpy3 helpers. (Closes: #698169)
  - Add build-depends on python3-numpy.
* Fix a number of failing tests that rely on pygame being tested with OpenGL
  and a graphical display available, as well as audio/video devices.
* Remove deprecated DMUA flag in debian/control.
* Fix lintian tag vcs-field-not-canonical.
* Update Standards version from 3.9.3 to 3.9.4, no updates required.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Set browser to a known state to get around browser incompatibilities.
2
 
 * Copied from http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/
3
 
 */
4
 
html, body, div, span, applet, object, iframe,
5
 
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
6
 
a, abbr, acronym, address, big, cite, code,
7
 
del, dfn, em, font, img, ins, kbd, q, s, samp,
8
 
small, strike, strong, sub, sup, tt, var,
9
 
dl, dt, dd, ol, ul, li,
10
 
fieldset, form, label, legend,
11
 
table, caption, tbody, tfoot, thead, tr, th, td {
12
 
        margin: 0;
13
 
        padding: 0;
14
 
        border: 0;
15
 
        outline: 0;
16
 
        font-weight: inherit;
17
 
        font-style: inherit;
18
 
        font-size: 100%;
19
 
        font-family: inherit;
20
 
        vertical-align: baseline;
21
 
}
22
 
/* remember to define focus styles! */
23
 
:focus {
24
 
        outline: 0;
25
 
}
26
 
body {
27
 
        line-height: 1;
28
 
        color: black;
29
 
        background: white;
30
 
}
31
 
ol, ul {
32
 
        list-style: none;
33
 
}
34
 
/* tables still need 'cellspacing="0"' in the markup */
35
 
table {
36
 
        border-collapse: separate;
37
 
        border-spacing: 0;
38
 
}
39
 
caption, th, td {
40
 
        text-align: left;
41
 
        font-weight: normal;
42
 
}
43
 
blockquote:before, blockquote:after,
44
 
q:before, q:after {
45
 
        content: "";
46
 
}
47
 
blockquote, q {
48
 
        quotes: "" "";
49
 
}