blob: ac98c87f1508ec4c9e6f17c9b36a74e9f55371ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?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;
}
|