blob: 0f6680e8d0f632275ba0453a60bde1ffd3e2eca5 (
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
|
/* Classes:
h1.title the title of the page
div.coq encloses all generated body
div.doc contents of (** *) comments
div.footer footer
div.togglescript "Proof." line
div.proofscript contents of proof script
span.docright contents of (**r *) comments
span.bracket contents of [ ] within comments
span.kwd Coq keyword
span.tactic Coq tactic
span.id any other identifier
*/
body {
color: black;
background: white;
}
h1.title {
font-size: 2em;
text-align: center
}
h1 {
font-size: 1.5em;
}
h2 {
font-size: 1.17em;
}
h3 {
font-size: 1em;
}
h1, h2, h3 {
font-family: sans-serif;
margin-left: -5%;
}
div.coq {
margin-left: 15%;
margin-right: 5%;
font-family: monospace;
}
div.doc {
margin-left: -5%;
margin-top: 0.2em;
margin-bottom: 0.5em;
font-family: serif;
}
div.toggleproof {
font-size: 0.8em;
text-decoration: underline;
}
div.toggleproof:hover {
cursor: pointer;
}
div.proofscript {
font-size: 0.8em;
}
div.footer {
margin-top: 1em;
margin-bottom: 1em;
font-size: 0.8em;
font-style: italic;
}
span.docright {
position: absolute;
left: 60%;
width: 40%;
font-family: serif;
}
span.bracket {
font-family: monospace;
color: #008000;
}
span.kwd {
color: #cf1d1d;
}
a:visited {color : #416DFF; text-decoration : none; }
a:link {color : #416DFF; text-decoration : none; }
a:hover {text-decoration : none; }
a:active {text-decoration : none; }
|