forked from GeekyAnts/native-base-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.css
More file actions
41 lines (38 loc) · 794 Bytes
/
Copy pathplugin.css
File metadata and controls
41 lines (38 loc) · 794 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
#anchors-navbar{
border: 1px solid #ccc;
box-shadow: 5px 5px 2px #ccc;
padding: 5px 10px;
position: fixed;
background-color: #fff;
right: 50px;
top: 68px;
font-size: 12px;
white-space: nowrap;
z-index: 999;
cursor: pointer;
text-align: right;
max-height: 70%;
overflow-y: auto;
overflow-x: hidden;
}
#anchors-navbar ul{
display: none;
text-align: left;
padding-right: 10px;
}
#anchors-navbar:hover ul{
display: block;
}
#goTop{
position: fixed;
right: 50px;
bottom: 68px;
border: 1px solid #ccc;
z-index: 999;
cursor: pointer;
font-size: 12px;
padding: 5px 10px;
box-shadow: 5px 5px 2px #ccc;
background-color: #fff;
color: #333;
}