File: admonitions.css

package info (click to toggle)
xhtmlrenderer 0.0~R8%2Bdfsg2-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 11,292 kB
  • sloc: java: 46,036; xml: 1,518; makefile: 27; sh: 11
file content (43 lines) | stat: -rw-r--r-- 1,019 bytes parent folder | download | duplicates (3)
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
32
33
34
35
36
37
38
39
40
41
42
43
/*
 * admonitions.css
 *
 * Copyright (c) 2004 David Holroyd, and contributors
 * Copyright (c) 2005 Michael Thiele, and contributors
 * See the file 'COPYING' for terms of use
 *
 * Part of wysiwygDocBook 1.01, a developed DocBook CSS stylesheet based on version 0.4 from
 *   http://www.badgers-in-foil.co.uk/projects/docbook-css/
 *
 * This file contains formatting for admonition elements
 */

warning:before, caution:before, tip:before, note:before, important:before {
	font-weight: bolder;
	font-family: sans-serif;
}

warning {
	border-top: 1px solid #ff0000;
	border-bottom: 1px solid #ff0000;
	padding: .5em .5em;
}
caution {
	border-top: 1px solid #ff0000;
	border-bottom: 1px solid #ff0000;
	padding: .5em .5em;
}
tip {
	border-top: 1px solid #000000;
	border-bottom: 1px solid #000000;
	padding: .5em .5em;
}
note {
	border-top: 1px solid #000000;
	border-bottom: 1px solid #000000;
	padding: .5em .5em;
}
important {
	border-top: 1px solid #ff0000;
	border-bottom: 1px solid #ff0000;
	padding: .5em .5em;
}