blob: a550058e83bd1c4675d53d4b7672155c0eeea761 (
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
|
<?php
/**
* CSS typography
*
* @package Elgg.Core
* @subpackage UI
*/
?>
/* ***************************************
Typography
*************************************** */
body {
font-size: 80%;
line-height: 1.4em;
font-family: "Lucida Grande",Arial,Tahoma,Verdana,sans-serif;
}
pre, code {
font-family:Monaco,"Courier New",Courier,monospace;
font-size:12px;
}
blockquote {
line-height:1.3em;
}
small {
font-size: 90%;
}
h1, h2, h3, h4, h5, h6 {
font-weight: bold;
line-height: auto;
}
h1 { font-size: 1.8em; }
h2 { font-size: 1.5em; line-height: 1.1em; }
h3 { font-size: 1.2em; }
h4 { font-size: 1.0em; }
h5 { font-size: 0.9em; }
h6 { font-size: 0.8em; }
<?php //@todo many location-dependent styles are for styling headings. Move those here and make them into non-location-dependent classes ?>
|