-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbubbler.css
75 lines (67 loc) · 1.75 KB
/
bubbler.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
.bubbler-wrapper {
font-family: "Roboto", "Helvetica", "Arial", sans-serif;
position: fixed;
bottom: 0;
right: 0;
margin: 0 3.5em 3.5em 0;
cursor: pointer;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.bubbler-wrapper div {
width: 1.7em;
height: 1.7em;
font-size: 2em;
line-height: 1.7em;
text-align: center;
background: white;
border-radius: 50%;
-webkit-box-shadow: 0px 1px 1px 1px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0px 1px 1px 1px rgba(0, 0, 0, 0.1);
box-shadow: 0px 1px 1px 1px rgba(0, 0, 0, 0.1);
}
.bubbler-wrapper .bubbler-menu-loader {
color: white;
background: cornflowerblue;
}
.bubbler-wrapper div:not(:last-child) {
margin-bottom: 0.3em;
}
.bubbler-wrapper .bubbler-menu-item {
overflow: hidden;
opacity: 0;
max-height: 0px;
transition: opacity 0.2s, max-height 0s 0.2s;
}
.bubbler-wrapper:hover .bubbler-menu-item {
opacity: 1;
max-height: 100%;
transition: opacity 0.2s, max-height 0s;
}
.bubbler-wrapper .bubbler-menu-item .bubbler-menu-item-label-wrapper {
visibility: hidden;
position: fixed;
font-size: 0.5em;
right: 7em;
opacity: 0;
transition: all 0.2s ease-in-out;
transform: translateX(0.5em);
}
.bubbler-wrapper .bubbler-menu-item:hover .bubbler-menu-item-label-wrapper {
visibility: visible;
opacity: 1;
transition: all 0.2s ease-in-out;
transform: translateX(-0.5em);
}
.bubbler-wrapper .bubbler-menu-item .bubbler-menu-item-label-wrapper .bubbler-menu-item-label {
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
background: #8B8E8F;
padding: 5px;
color: white;
}