blob: c2705a16fd34329570f69f30aab73f13cdb3cdba (
plain)
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
/* PostgreSQL.org Documentation Style */
@import url("global.css");
@import url("table.css");
@import url("text.css");
body {
font-size: 76%;
}
/* Container Definitions */
#commitfestContainerWrap {
text-align: center; /* Win IE5 */
}
#commitfestContainer {
margin: 0 auto;
width: 90%;
padding-bottom: 2em;
display: block;
text-align: left; /* Win IE5 */
}
#commitfestHeader {
background-image: url("/https/git.postgresql.org/layout/images/docs/bg_hdr.png");
height: 83px;
margin: 0px;
padding: 0px;
width: 100%
}
#commitfestHeader tr {
vertical-align: top
}
#commitfestHeaderLogo {
position: relative;
width: 206px;
height: 83px;
border: 0px;
padding: 0px;
margin: 0px;
margin-left: 20px;
}
#commitfestHeaderLogo img { border: 0px; }
#commitfestNav {
position: relative;
text-align: right;
margin-left: 10px;
margin-top: 5px;
color: #fff;
font-weight: bold;
font-size: 0.95em
}
#commitfestContent {
position: relative;
margin-left: 10px;
margin-right: 10px;
margin-top: 20px;
}
#commitfestFooter {
position: relative;
font-size: 0.9em;
color: #666;
line-height: 1.3em;
margin-left: 10px;
margin-right: 10px;
}
/* Heading Definitions */
h1 {
font-weight: bold;
color: #EC5800;
font-size: 1.4em;
}
h2 {
font-weight: bold;
color: #666;
font-size: 1.2em;
}
h3 {
font-weight: normal;
color: #EC5800;
font-size: 1.1em;
}
/* Text Styles */
.txtCurrentLocation {
font-weight: bold;
}
.txtAttribution {
font-size: 90%;
color: #999;
}
p, ol, ul, li {
line-height: 1.5em;
}
/* Link Styles */
#commitfestNav a {
color: #ffffff
}
a:link { color:#0066A2; text-decoration: underline; }
a:visited { color:#004E66; text-decoration: underline; }
a:active { color:#0066A2; text-decoration: underline; }
a:hover { color:#000000; text-decoration: underline; }
#commitfestFooter a:link { color:#666; text-decoration: underline; }
#commitfestFooter a:visited { color:#666; text-decoration: underline; }
#commitfestFooter a:active { color:#666; text-decoration: underline; }
#commitfestFooter a:hover { color:#000000; text-decoration: underline; }
.error { color: #f00; font-weight: bold }
.controlerror { color: #f00 }
|