blob: 8a32235b41a0fdf7ab9131ddfeab68895abf2142 (
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
|
/* Bold definition list terms */
/* ************************** */
/* :Author: Günter Milde */
/* :Copyright: © 2008 Günter Milde. */
/* :License: Released under the terms of the `2-Clause BSD license`_, in short: */
/* */
/* Copying and distribution of this file, with or without modification, */
/* are permitted in any medium without royalty provided the copyright */
/* notice and this notice are preserved. */
/* This file is offered as-is, without any warranty. */
/* */
/* .. _2-Clause BSD license: http://www.spdx.org/licenses/BSD-2-Clause */
/* :Id: $Id$ */
/* Style sheet for use with Docutils */
/* Extends the standard docutils style sheet */
/* Instead of modifying html4css1.css, you can convert your sources with: */
/* rst2html --stylesheet=/html4css1.css,/bold-definition-terms.css INFILE */
/* to get bold face definition terms. */
/* :: */
dl.docutils dt { font-weight: bold; }
|