-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjr_7.css
More file actions
79 lines (61 loc) · 996 Bytes
/
Copy pathjr_7.css
File metadata and controls
79 lines (61 loc) · 996 Bytes
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
/* Whole document: */
body{
font-family: avenir;
font-size: 14pt;
color: black;
}
/* Headers */
h1 {
font-size: 22pt;
color: #B00C25;
}
h2 {
font-size: 18pt;
color: #083610;
}
h3 {
font-size: 16pt;
color: #36034f;
}
/* Code Chunks */
pre {
max-height: 350px;
background-color: #E4ECE7;
overflow-y: auto;
}
pre[class] {
max-height: 250px;
}
/* unvisited link */
a:link {
color: #374AD5;
}
/* mouse over link */
a:hover {
color: #833C3C;
}
/* TOC */
.list-group-item.active:hover {
z-index: 1;
color: red;
background-color: #E4ECE7;
border-color: #E4ECE7;
}
.list-group-item.active:hover {
z-index: 2;
color: red;
background-color: #E4ECE7;
border-color: #E4ECE7;
}
.list-group-item.active {
z-index: 1;
color: black;
background-color: #E4ECE7;
border-color: #E4ECE7;
}
.list-group-item.active {
z-index: 2;
color: black;
background-color: #E4ECE7;
border-color: #E4ECE7;
}