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
45
46
47
48
|
<?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;
}
input, textarea {
font: 120% Arial, Helvetica, sans-serif;
}
blockquote {
line-height: 1.3em;
}
h1, h2, h3, h4, h5, h6 {
font-weight: bold;
}
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; }
.elgg-monospace {
font-family: Monaco,"Courier New",Courier,monospace;
}
<?php //@todo many location-dependent styles are for styling headings. Move those here and make them into non-location-dependent classes ?>
.elgg-heading-basic {
color: #0054A7;
font-size: 1.2em;
font-weight: bold;
}
|