-
Notifications
You must be signed in to change notification settings - Fork 592
/
menutree.css
135 lines (128 loc) · 2.37 KB
/
menutree.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
.in-page-preview-buttons-full-reader {
right:50px;
top:-15px;
border-radius: 50%;
width: 48px;
height: 48px;
background: rgba(255, 255, 255, 0.2);
box-shadow: 0 1px 8px 1.5px rgba(0, 0, 0, 0.35), 0 20px 70px 8px rgba(0, 0, 0, 0.25);
}
.in-page-editor-buttons,.in-page-preview-buttons {
margin-top:100px;
position:fixed;
z-index:10;
}
.in-page-button {
/*margin-right:15px;*/
width:20px;
height:20px;
display:inline-block;
list-style:none;
cursor:pointer;
font-size:17px;
}
.in-page-button>svg {
width:25px;
height:25px;
display:inline-block;
padding-left: 12px;
padding-top: 12px;
}
.icon-list:before{
display: inline-block;
text-decoration: inherit;
}
.icon-list {
}
.in-page-preview-buttons ul {
color: #2c3e50;
padding-left: 0;
}
#tree_nav {
margin: 10px;
cursor: pointer;
}
#tree_nav:hover {
fill:#666;
}
#toc-list {
background-clip:padding-box;
border-radius:4px;
float:left;
font-size:14px;
list-style:none outside none;
margin:2px 0 0;
min-width:160px;
position:absolute;
padding:5px 0 20px;
top:100%;
z-index:1000;
box-shadow: 0 1px 8px 1.5px rgba(0, 0, 0, 0.35), 0 20px 70px 8px rgba(0, 0, 0, 0.25);
}
#toc-list .toc ul {
margin-left:20px;
padding-left: 0;
}
#toc-list .toc>ul {
margin:0
}
#toc-list a:hover {
background:0 0;
color:#005580;
text-decoration:underline;
}
#toc-list a {
color:#08c;
text-decoration:none;
display:inline;
}
#toc-list h3 {
margin:10px 0;
padding-left:15px;
}
#toc-list hr {
margin:10px 0;
}
.dropdown-menu {
display: none;
}
.dropdown-menu.pull-right {
left: auto;
right: 0;
}
.theme-white {
background-color: #f9f9f5;
/*background-color: rgba(0, 0, 0, 0.5);*/
color: #2c3e50;
transform: none !important;
top: auto !important;
left: auto !important;
}
.pull-right {
float: right;
}
.table-of-contents {
overflow-x:hidden;
overflow-y:auto;
width:330px;
max-height:400px;
padding:5px 0;
}
.toc ul {
list-style-type:none;
}
.open > .dropdown-menu {
display: block;
}
@media (max-width: 550px) {
.in-page-preview-buttons-full-reader {
right:30px;
top:-15px;
border-radius: 50%;
width: 38px;
height: 38px;
}
#toc-list {
max-width:270px;
}
}