-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathuser-agent.css
More file actions
50 lines (47 loc) · 802 Bytes
/
user-agent.css
File metadata and controls
50 lines (47 loc) · 802 Bytes
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
49
50
/*
* Ferus' user agent stylesheet.
* This is the first stylesheet loaded into the layout engine.
*
* Author(s):
* Trayambak Rai (xtrayambak at disroot dot org)
*/
/* Paragraphs */
p {
font-size: 24px;
color: rgb(0, 0, 0);
}
strong {
font-size: 24px;
color: rgb(0, 0, 0);
} /* FIXME: add support for multiple class matchers in one selector */
a {
font-size: 24px;
color: rgb(0, 0, 255); /* Make anchors appear blue. */
}
/* Headings
* They progressively get smaller with each level.
*/
h1 {
font-size: 32px;
color: rgb(0, 0, 0);
}
h2 {
font-size: 30px;
color: rgb(0, 0, 0);
}
h3 {
font-size: 28px;
color: rgb(0, 0, 0);
}
h4 {
font-size: 24px;
color: rgb(0, 0, 0);
}
h5 {
font-size: 22px;
color: rgb(0, 0, 0);
}
h6 {
font-size: 20px;
color: rgb(0, 0, 0);
}