~ubuntu-branches/ubuntu/raring/python-docutils/raring-201211091312

« back to all changes in this revision

Viewing changes to docutils/writers/html4css1/html4css1.css

  • Committer: Bazaar Package Importer
  • Author(s): Jakub Wilk
  • Date: 2010-07-24 09:03:32 UTC
  • mfrom: (11.1.1 experimental)
  • Revision ID: james.westby@ubuntu.com-20100724090332-n30aqcft3axs8xd3
* Upload to unstable.
* Replace patch to fix --local option for tools/buildhtml.py
  (17_revert_buildhtml.diff) with the one that was applied upstream
  (buildhtml-local.diff).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
:Author: David Goodger (goodger@python.org)
3
 
:Id: $Id: html4css1.css 5951 2009-05-18 18:03:10Z milde $
 
3
:Id: $Id: html4css1.css 6253 2010-03-02 00:24:53Z milde $
4
4
:Copyright: This stylesheet has been placed in the public domain.
5
5
 
6
6
Default cascading style sheet for the HTML output of Docutils.
148
148
hr.docutils {
149
149
  width: 75% }
150
150
 
151
 
img.align-left, .figure.align-left{
 
151
img.align-left, .figure.align-left, object.align-left {
152
152
  clear: left ;
153
153
  float: left ;
154
154
  margin-right: 1em }
155
155
 
156
 
img.align-right, .figure.align-right {
 
156
img.align-right, .figure.align-right, object.align-right {
157
157
  clear: right ;
158
158
  float: right ;
159
159
  margin-left: 1em }
160
160
 
 
161
img.align-center, .figure.align-center, object.align-center {
 
162
  display: block;
 
163
  margin-left: auto;
 
164
  margin-right: auto;
 
165
}
 
166
 
161
167
.align-left {
162
168
  text-align: left }
163
169