Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

GAP 4.8.9 installation with standard packages -- copy to your CoCalc project to get it

610986 views
1
/* gapdoc.css Frank Lübeck */
2
3
/* basic settings */
4
body {
5
position: relative;
6
background: #ffffff;
7
color: #000000;
8
/* background-image: url(gapdoc.jpg);
9
margin-top: 15px;
10
margin-bottom: 15px;
11
margin-left: 10px;
12
margin-right: 10px; */
13
width: 70%;
14
margin: 0pt;
15
padding: 15pt;
16
font-family: Helvetica,Verdana,Arial,sans-serif;
17
text-align: justify;
18
}
19
20
h1 { font-size: 200%; }
21
h2 { font-size: 160%; }
22
h3 { font-size: 160%; }
23
h4 { font-size: 130%; }
24
h5 { font-size: 100%; }
25
26
p.foot {
27
font-size: 60%;
28
font-style: normal;
29
}
30
31
a:link {
32
color: #00008e;
33
text-decoration: none;
34
}
35
a:visited {
36
color: #00008e;
37
text-decoration: none;
38
}
39
a:active {
40
color: #000000;
41
text-decoration: none;
42
}
43
44
/* general alignment classes */
45
.pcenter {
46
text-align: center;
47
}
48
49
.pleft {
50
text-align: left;
51
}
52
53
.pright {
54
text-align: right;
55
}
56
57
/* layout for the Func-like elements */
58
div.func {
59
background-color: #e0e0e0;
60
margin: 0pt 0pt;
61
}
62
63
64
/* general and special table settings */
65
table {
66
margin-left: auto;
67
margin-right: auto;
68
}
69
70
td, th {
71
border-collapse: collapse;
72
border-style: none;
73
}
74
75
table.func {
76
padding: 0pt 1ex;
77
margin-left: 1ex;
78
margin-right: 1ex;
79
background-color: transparent;
80
/* line-height: 1.1; */
81
width: 100%;
82
}
83
84
/* Example elements */
85
table.example {
86
background-color: #efefef;
87
border-style: none;
88
border-width: 0pt;
89
padding: 0px;
90
width: 100%
91
}
92
table.example td {
93
border-style: none;
94
border-width: 0pt;
95
padding: 0ex 1ex;
96
}
97
98
/* links to chapters in all files */
99
/* if there are too many chapters then use 'display: none' here */
100
div.chlinktop {
101
background-color: #dddddd;
102
border-style: solid;
103
border-width: thin;
104
margin: 2px;
105
text-align: center;
106
/* width: 100%; */
107
}
108
109
div.chlinktop a {
110
background-color: #e9e9e9;
111
}
112
113
div.chlinkbot {
114
background-color: #dddddd;
115
border-style: solid;
116
border-width: thin;
117
margin: 2px;
118
text-align: center;
119
/* width: 100%; */
120
}
121
122
div.chlinkbot a {
123
background-color: #e9e9e9;
124
}
125
126
span.chlink1 {
127
}
128
129
/* and this is for the "Top", "Prev", "Next" links */
130
div.chlinkprevnexttop {
131
background-color: #dddddd;
132
border-style: solid;
133
border-width: thin;
134
text-align: center;
135
margin: 2px;
136
/* width: 100%; */
137
}
138
139
div.chlinkprevnexttop a {
140
background-color: #e9e9e9;
141
}
142
143
div.chlinkprevnextbot {
144
background-color: #dddddd;
145
border-style: solid;
146
border-width: thin;
147
text-align: center;
148
margin: 2px;
149
/* width: 100%; */
150
}
151
152
div.chlinkprevnextbot a {
153
background-color: #e9e9e9;
154
}
155
156
157
/* table of contents */
158
div.ContChap {
159
}
160
161
div.ContSect {
162
text-align: left;
163
margin-left: 1em;
164
}
165
166
span.ContSS {
167
display: none;
168
margin-left: 2em;
169
}
170
171
span.ContSS br {
172
display: none;
173
}
174
175
div.ContSect:hover span.ContSS {
176
display: block;
177
text-align: left;
178
margin-left: 1em;
179
}
180
181
div.ChapSects {
182
position: fixed;
183
left: 75%;
184
font-size: 80%;
185
}
186
187
/* Table elements */
188
table.GAPDocTable {
189
border-collapse: collapse;
190
border-style: none;
191
border-color: black;
192
}
193
194
table.GAPDocTable td, table.GAPDocTable th {
195
padding: 3pt;
196
border-width: thin;
197
border-style: solid;
198
border-color: #555555;
199
}
200
201
caption.GAPDocTable {
202
caption-side: bottom;
203
width: 70%;
204
margin-top: 1em;
205
margin-left: auto;
206
margin-right: auto;
207
}
208
209
td.tdleft {
210
text-align: left;
211
}
212
213
td.tdright {
214
text-align: right;
215
}
216
217
td.tdcenter {
218
text-align: center;
219
}
220
221
/* general settings */
222
pre {
223
font-family: "Courier New",Courier,monospace;
224
font-size: 70%;
225
color:#111111;
226
}
227
228
tt,code {
229
font-family: "Courier New",Courier,monospace;
230
font-size: 110%;
231
color: #284d49; }
232
233
var {
234
color: #cf0000;
235
}
236
237
/* may be overwritten for some types of elements */
238
/* Verb elements */
239
pre.normal {
240
color: #000000;
241
}
242
243
/* Func-like elements and Ref to Func-like */
244
code.func {
245
color: #006500;
246
}
247
248
/* K elements */
249
code.keyw {
250
color: #ff0000;
251
}
252
253
/* F elements */
254
code.file {
255
color: #8e4510;
256
}
257
258
/* C elements */
259
code.code {
260
}
261
262
/* Item elements */
263
code.i {
264
}
265
266
/* Button elements */
267
strong.button {
268
}
269
270
/* Headings */
271
span.Heading {
272
}
273
274
/* Arg elements */
275
var.Arg {
276
}
277
278
/* Example elements, is in tables, see above */
279
div.Example {
280
}
281
282
/* Package elements */
283
strong.pkg {
284
}
285
286
/* URL-like elements */
287
span.URL {
288
}
289
290
/* Mark elements */
291
strong.Mark {
292
}
293
294
/* Ref elements */
295
b.Ref {
296
}
297
298
/* this contains the contents page */
299
div.contents {
300
}
301
302
/* this contains the index page */
303
div.index {
304
}
305
306
/* ignore some text for non-css layout */
307
span.nocss {
308
display: none;
309
}
310
311