forked from ayamomiji/bookmark-tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.scss
62 lines (51 loc) · 882 Bytes
/
style.scss
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
@import "compass/reset";
body {
font-size: 0.8em;
overflow: hidden;
}
#tree {
overflow-y: scroll;
}
#url {
border-top: 1px solid black;
line-height: 1em;
font-size: 1em;
height: 1em;
overflow: hidden;
}
ul ul {
margin-left: 16px;
}
.favicon {
vertical-align: middle;
}
.title {
height: 1.2em;
cursor: pointer;
overflow: hidden;
&:hover {
background-color: #ffa;
}
}
.directory {
> ul.children {
display: none;
}
&.open > ul.children {
display: block;
}
}
.icon {
display: inline;
}
/*
w: 400; h: 550 (1920x1080)
w: 400; h: 600 (2560x1440)
f: sans-serif
Custom Style:
*/
#tree{margin:0;overflow-y:auto;}
.title{height:1.5em;line-height:1.5em;overflow:hidden;padding:3px;white-space:nowrap;}
.title:hover{background-color:#eee;cursor:inherit;}
#url{height:auto;max-height:2.6em;padding:3px;}
li.bookmark{cursor:pointer;}