-
Notifications
You must be signed in to change notification settings - Fork 4
/
style.css
145 lines (112 loc) · 2.08 KB
/
style.css
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
/* Title */
.card-title,
.card-header {
background: #f6f6f6;
color: #000;
}
.navbar-brand h1 {
letter-spacing: 0;
line-height: 1;
opacity: 1;
transition: visibility 0s ease, max-height .15s ease, opacity .15s ease;
max-height: 4em;
visibility: visible;
transition-delay: 0s;
}
.navbar-brand .h2 {
line-height: 1.2;
align-self: flex-end;
}
.menu-select-list {
z-index: 1021;
}
/* Bacground Color */
.bg-light2 {
background-color: #F6F6F6;
}
/* Focus hover */
#selectFiles:hover , #selectFiles:focus{
border: .250rem solid #f16e00!important;
border-right: none;
}
.bd-toc nav a:hover {
color: #000;
text-decoration: underline;
}
.bd-toc nav a {
color: #595959;
text-decoration: none;
}
.bd-toc nav li {
margin-bottom: .25rem;
}
#pageManager .navbar-nav .nav-link.active, #pageManager .navbar-nav .show > .nav-link {
color: #000;
}
#pageManager .navbar-nav .nav-link:hover {
color: #000;
text-decoration: underline;
}
#pageManager .navbar-nav .nav-link:focus{
color: #000
}
/* Table */
.table > :not(:first-child) {
border-top: none;
}
/* Custom Div ID */
.bd-toc nav {
font-size: .875rem;
}
.bd-toc nav ul {
padding-left: 0;
margin-bottom: 0;
list-style: none;
}
.bd-toc nav ul ul {
padding-left: 1rem;
margin-top: .25rem;
}
@media (min-width: 768px) {
#tableOfContents{
overflow-y: auto;
height: calc(100vh - 20rem);
}
}
#filter {
max-height: calc(100vh - 9.6rem);
}
/* Utilities */
[aria-expanded="true"] .icon-arrow-down {
transform: rotate(180deg);
}
.border {
border-width: .0625rem !important;
}
li::marker {
color: #060606;
vertical-align: middle;
font-weight: bold;
}
li li::marker {
color: #666;
}
li li li::marker {
color: #666;
}
li ol {
margin:2px 0;
}
li ul {
margin:2px 0;
}
/* Print */
@media print {
body {
padding-top: 0 !important;
}
.col-print-12 {
flex: 0 0 100%;
max-width: 100%;
}
}