forked from peteboere/css-crush
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Prepend.css
41 lines (33 loc) · 1.51 KB
/
Prepend.css
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
/*$
Prepend.css contains library variables by default, but it could also contain
reset styles such as reset.css or normalize.css that you would want prepended
to every output file.
*/
@define {
/* Font stacks
Sources:
http://cssfontstack.com
http://www.codestyle.org
---------------------------------------- */
/* Serif */
baskerville: Baskerville, "Baskerville Old Face", "Hoefler Text", Garamond, "Times New Roman", serif;
georgia: Georgia, Times, "Times New Roman", serif;
palatino: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, serif;
times: TimesNewRoman, "Times New Roman", Times, serif;
/* Sans-serif */
arial: Arial, Helvetica, sans-serif;
arial-narrow: "Arial Narrow", Arial, sans-serif;
gill-sans: "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
helvetica: "Helvetica Neue", Helvetica, Arial, sans-serif;
lucida: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Verdana, sans-serif;
trebuchet-ms: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
verdana: Verdana, Geneva, sans-serif;
/* Monospace */
consolas: Consolas, Monaco, monospace;
courier: "Courier New", Courier, monospace;
monaco: Monaco, Consolas, "Lucida Console", monospace;
/* Generic defaults */
serif: $( times );
sans-serif: $( arial );
monospace: $( courier );
}