summaryrefslogtreecommitdiff
path: root/glew/auto/EGL-Registry/specs/igstyle.css
blob: 447b0dfb71eb27bcd62190c5bff19fae43e60d22 (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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
/* vi: set sw=2 ts=4: */

/*
	$HeadURL: https://cvs.khronos.org/svn/repos/util/trunk/doc/iguide/igstyle.css $
	$Revision: 7453 $
	$Author: markc $
*/

body {
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-weight: normal;
  color: #333333;
  background-color: white;
  margin: 4em;
  max-width: 50em;
}

h1 {
  color: #00A6A6;
}

h2, h3, h4, h5, h6 {
  color: #146A68;
}

/* Set space between editedby and editor to 0.5em.
 * editor margin-top contributes to this.
 */
h4.editedby {
  margin-bottom: 0.5em;
}

/* Remove spaces between editedby & editor and editor & affiliation.
 * affiliation is a div so there's no top-margin to fix.
 */
h3.editor {
  margin-top: 0;
  /* color: #333333; */
  margin-bottom: 0;
}

/* Remove space between copyright and legal notice lines.
 * Legal notice is in a div so there's no top-margin to fix.
 */
p.copyright {
  margin-bottom: 0;
}

/* Remove space between edition, docrev & releaseinfo.*/
p.edition {
  margin-bottom: 0;
}

p.docrev {
  margin-top: 0;
  margin-bottom: 0;
}

p.releaseinfo {
  margin-top: 0;
}

p.title {
  color: #146A68;
}

a {
  text-decoration: none;
}

/* The following a: pseudo-class order is necessary in
 * order to be effective.
 */
a:link {
  color: #009999;
}

a:visited {
  color: #006699;
}

a:hover {
  color: #00CCCC;
}

a:active {
  color: #0000FF;
}

code.code {
  white-space: nowrap;
}

/* Increase space before abstract. */
div.abstract > p.title {
  margin-top: 3em;

}

div.footnote {
  font-size: small;
}

div.legalnotice {
  font-size: x-small;
}

div.article > div.titlepage {
  text-align: center;
}

table {
  border-collapse: collapse;*/
  /*border-spacing: 0;*/
  border-style: ridge;
}

td {
  padding: 0.3em;
}

th {
  padding: 0.3em;
  /* background-color: #FFDEAD; */
  background-color: #EBD8AF;
}

th:first-child {
  /* background-color: #EFEFEF; */
  background-color: #EBE57B;
}

.informalexample {
  /*background-color: #D7D9D9;*/
  background-color: #EBEBEB;
  border: thin dashed #146A68;
}

/* override width="100%" set by xls style sheet. */
div.revhistory > table {
  width: auto;
  border: thin solid;
  font-size: small;
  background-color: #EBEBEB;
}

div.revhistory > table th {
  border-bottom: thin solid;
}

div.revhistory > table td {
  border: thin dotted;
}

div.revhistory > table td.revremark {
  border-bottom: thin solid;
}

.remark {
  background-color: yellow;
  color: maroon;
}

/* Haven't found a way to select .remark *except* when it's a child of
 * .releaseinfo so I've had to add this. I tried the negation
 * pseudo-operator without success.
.releaseinfo .remark {
  background-color: white;
  color: #333333;
}
*/

/* Selector notes:
 * See http://css.maxdesign.com.au/selectutorial/selectors_adjacent.htm
 * 
 * A B selects a B that is a descendant of A.
 * A > B selects a B that is a direct child of A.
 * A + B selects a B that immediately follows an A where A & B are siblings.
 * #foo is an id selector; can do A#foo to select an A with id="foo".
 * .bar is a class selector; can do A.bar to select an A with class="bar".
 * A[attrib<=value>] is an attribute selector. It selects an A with "attrib"
 *    specified. Optionally a specific attribute value can also be specified.
 * A:b is pseudo-element or pseudo-class selector. Examples are first-child,
 *    visited, hover, first-line, first-letter.
 */