Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-doc
Path: blob/main/website/content/en/layout/css/global.css
18096 views
1
/*
2
*FreeBSD.org - Global Styles
3
*
4
* $FreeBSD$
5
*/
6
7
body {
8
margin: 0;
9
padding: 0;
10
font-family: verdana, sans-serif;
11
color: #000;
12
background: #fff url("../images/hdr_fill.png") repeat-x;
13
}
14
15
h1 {
16
font-size: 120%;
17
font-weight: bold;
18
margin: 0em 0em 1.2em 0em;
19
}
20
21
h2 {
22
font-size: 115%;
23
margin: 1.2em 0em 1.2em 0em;
24
font-weight: bold;
25
}
26
27
h3 {
28
font-size: 110%;
29
margin: 1.2em 0em 1.2em 0em;
30
font-weight: bold;
31
}
32
33
h4 {
34
font-size: 100%;
35
margin: 1.2em 0em 1.2em 0em;
36
font-weight: bold;
37
}
38
39
h5 {
40
font-size: 90%;
41
margin: 1.2em 0em 1.2em 0em;
42
font-weight: bold;
43
}
44
45
h6 {
46
font-size: 85%;
47
margin: 1.2em 0em 1.2em 0em;
48
font-weight: bold;
49
}
50
51
img {
52
border: 0;
53
}
54
55
ol, ul, li {
56
font-size: 1.0em;
57
line-height: 1.2em;
58
margin-top: 0.2em;
59
margin-bottom: 0.1em;
60
}
61
62
p {
63
line-height: 1.2em;
64
margin: 1.2em 0em 1.2em 0em;
65
}
66
67
li > p {
68
margin-top: 0.2em;
69
}
70
71
pre {
72
font-family: monospace;
73
font-size: 1.1em;
74
}
75
76
tt {
77
font-family: monospace;
78
font-size: 1.1em;
79
}
80
81
strong, b {
82
font-weight: bold;
83
}
84
85
form textarea {
86
text-align: left;
87
}
88
89