-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
77 lines (77 loc) · 1.87 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
* {
transition: opacity .1s ease;
}
#bookmark-form.edit .btn-add,
#bookmark-form:not(.edit) .btn-edit,
#bookmark-form:not(.edit) .btn-cancel {
display: none;
}
#bookmark-container .bookmark-list {
list-style: none;
padding: 0;
margin: 0;
}
#bookmark-container .bookmark {
position: relative;
padding: .75rem;
box-shadow: 0 0 10px rgba(0,0,0,.1);
border: 1px solid rgba(0,0,0,.2);
border-radius: .25rem;
margin-top: .75rem;
cursor: grab;
}
#bookmark-form.over,
#bookmark-container .over,
#bookmark-remove.over {
opacity: .6;
border-color: #000000;
border-style: dashed;
}
#bookmark-container .bookmark.no-match {
border-color: rgba(0,0,0,0.1);
}
#bookmark-container .bookmark.no-match > *:not(.bookmark-list),
#bookmark-container .bookmark.dragged {
opacity: .4;
}
#bookmark-container .bookmark .fa {
color: #212529;
}
#bookmark-container .bookmark .prev {
position: absolute;
left: 0;
right: 0;
bottom: 100%;
height: .75rem;
margin-bottom: 1px;
}
#bookmark-container .bookmark.list-hidden .bookmark-list {
display: none;
}
#bookmark-container .bookmark.list-hidden > .slide .fa-sort-desc,
#bookmark-container .bookmark:not(.list-hidden) > .slide .fa-sort-asc,
#bookmark-container .bookmark:not(.has-children) > .slide {
display: none;
}
#bookmark-container .bookmark .fa,
#bookmark-container .bookmark .titulo {
pointer-events: none;
}
#bookmark-color-btn {
background-color: #EEEEEE;
}
#bookmark-color-btn.dark > .fa,
#bookmark-container .bookmark.dark > .titulo,
#bookmark-container .bookmark.dark > .slide .fa,
#bookmark-container .bookmark.dark > .enlace .fa {
color: #FFFFFF;
}
#bookmark-container .bookmark .enlace,
#bookmark-container .bookmark .slide {
float: right;
padding: 0 .5rem;
margin: 0 -.5rem 0 .5rem;
}
#bookmark-container .bookmark.folder > .enlace {
display: none;
}