blob: b76ae46a535eec8fcd8930348f5f0cd81a628451 (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
/**
* "Yet Another Multicolumn Layout" - YAML CSS Framework
*
* (en) Uniform design of standard content elements
* (de) Einheitliche Standardformatierungen für die wichtigten Inhalts-Elemente
*
* @copyright Copyright 2005-2012, Dirk Jesse
* @license CC-BY 2.0 (http://creativecommons.org/licenses/by/2.0/),
* YAML-CDL (http://www.yaml.de/license.html)
* @link http://www.yaml.de
* @package yaml
* @version 4.0
* @revision $Revision: 657 $
* @lastmodified $Date: 2012-01-11 21:36:23 +0100 (Mi, 11 Jan 2012) $
*/
@media all {
/* --- Lists | Listen -------------------------------------------------------------------------------- */
ul,
ol,
dl {
margin-left: 0;
margin-right: 1em;
}
li {
margin-left: 0;
margin-right: 0.8em;
}
dd {
margin-left: 0;
margin-right: 0.8em;
}
/* --- general text formatting | Allgemeine Textauszeichnung ------------------------------------------ */
blockquote {
margin-left: 0;
margin-right: 1.5em;
}
}
|