aboutsummaryrefslogtreecommitdiff
path: root/gray.css
blob: 12526a9982b100a9b6d9303f98d76bbc9242e0a0 (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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
/* Basic settings */
html, body, table, form {
        margin: 0em;
        padding: 0em;
	height: 100%;
}

body {
        font-family: sans-serif;
        font-size: 120%;
        color: #333;
	margin-left: auto;
	margin-right: auto;
	max-width: 960px;
	background-color: silver;
        padding: 1em;
}

div {
	background-color: white;
}

div#content {
	border: 1px solid black;
	min-height: 800px;
	position: relative;
}

a {
        color: blue;
        text-decoration: none;
}

a:hover {
        text-decoration: underline;
}

img {
	border: none 0;
	vertical-align: top;
}

table {
      border-collapse: collapse;
}

.right {
      text-align: right;
}

div#header {
	padding: 1em;
}

/* Header table */
table#header {
      width: 100%;
      margin-bottom: 1em;
}

table#header td.logo {
      width: 140px;
}

table#header td.main {
      padding-left: 10px;
      white-space: nowrap;
      margin: 0px;
}

table#header td.main h1 {
      margin: 0px;
      font-style: normal;
      font-weight: normal;
      font-stretch: normal;
      font-variant: normal;
}

table#header td.main h1 a {
      color: black;	
}

table#header td.sub {
      color: #777;
      border-top: solid 1px #ccc;
      padding-left: 10px;
      vertical-align: top;
}

table#header td.sub h2 {
      font-style: normal;
      font-weight: normal;
      font-stretch: normal;
      font-variant: normal;
      font-size: 100%;
      margin: 0px;
}

/* Main menu (tabs) */
ul.tabs {
	list-style-type: none;
	width: 100%;
        border-bottom: solid 2px #ccc;
        border-collapse: collapse;
	display: table;
	margin: 0;
}

ul.tabs li {
	width: 20%;
	margin-left: 5%;
	display: block;
	float: left;
        vertical-align: bottom;
        padding: 0;
        color: #777;
        font-size: 100%;
}

ul.tabs li a {
        color: #777;
        font-size: 100%;
        text-decoration: none;
        padding: 2px 0.75em;
}

ul.tabs li a.active {
        color: #000;
        background-color: #ccc;
}

ul.tabs li a:hover {
        text-decoration: underline;
}

/* Ditto, table version */
table.tabs {
      border-bottom: solid 2px #ccc;
      border-collapse: collapse;
      margin-top: 2em;
      margin-bottom: 0px;
      width: 100%;
}

table.tabs td {
        padding: 0px 1em;
        vertical-align: bottom;
}

table.tabs td a {
        padding: 2px 0.75em;
        color: #777;
        font-size: 110%;
}

table.tabs td a.active {
        color: #000;
        background-color: #ccc;
}

/* Main text */
div#main {
      margin-top: 2em;
      margin-bottom: 2em;
      margin-left: 5%;
      margin-right: 5%;
      padding-bottom: 10em;
}      
					
/* Copyright section */
#copyright {
        border-top: solid 2px #ccc;
	font-size: 80%; 
	position: absolute;
	height: 12em;
	width: 100%;
    	bottom: 0;
}

/* Download table */
table.download {
	border: 1px black solid;
}

table.download td {
	border: 1px black solid;
        padding: 0.3em;
}

table.download tbody.previous {
	color: silver;
}

table.download tbody.previous a {
	color: lightblue;
}

/* Example output */
span.comment {
        color: red;
        font-style: italic;
}

span.var {
	color: #b8860b;
}

span.lit {
	color: #bc8f8f;
}

span.kw {
	color: #0000ff;
}

table.examples td {
        padding: 0.3em;
}

/* Generator output */
div.generator {
	display: none;
}

/* Release table */
tbody.previous {
	color: silver;
}

tbody.previous a {
	color: lightblue;
}

div.inner {
	padding: 1em;
}

table.comparison {
	margin-left: auto;
	margin-right: auto;
	border: 1px solid black;
}

table.comparison td {
	border: 1px solid black;
	padding: 4px;
}

table.comparison thead td.action {
        text-align: center;
}

table.comparison thead td {
	text-align: center;
}

table.comparison td.instance-type {
	text-align: center;
}

table.comparison td.action {
	text-align: left;
}

table.comparison td {
	text-align: right;
}

Return to:

Send suggestions and report system problems to the System administrator.