-
Notifications
You must be signed in to change notification settings - Fork 9
/
DEVONthink To Go TOC CSS.css
52 lines (46 loc) · 1.21 KB
/
DEVONthink To Go TOC CSS.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
/* Smooth scrolling IF user doesn't have a preference due to motion sensitivities */
@media screen and (prefers-reduced-motion: no-preference) {
html {
scroll-behavior: smooth;
}
}
.TOC {
background: #272A2B none repeat scroll 0 0;
border: 0px solid #aaa;
border-radius: 15px;
display: table;
font-size: 95%;
color: #0c9fd0;
margin-bottom: 1em;
padding-top: 1em !important;
padding-right: 1em;//calc(100%-5px);
width: 100%;
}
.TOC li, .TOC ul, .TOC ol, .TOC ul li, .TOC ol li{
list-style: decimal;
}
.TOC:before {
content: "Table of Contents";
font-weight: bold;
font-size: 1.1em;
color: #0b88b2;
padding-left: 1em;
margin-bottom: -1em;
}
.top-link {
transition: all .25s ease-in-out;
position: fixed;
bottom: 0;
right: 0;
display: inline-flex;
color: #000000;
cursor: pointer;
align-items: center;
justify-content:center;
margin: 0 2em 2em 0;
border-radius: 50%;
padding: .25em;
width: 1em;
height: 1em;
background-color: #F8F8F8;
}