-
Notifications
You must be signed in to change notification settings - Fork 71
/
animations.css
58 lines (52 loc) · 1.07 KB
/
animations.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
#resolution-toolbar{
align-content: center;
position: absolute;
width: 500px;
height: 120px;
top: 10px;
right:100px;
background-color: rgb(250, 250, 250);
z-index: 9;
box-shadow: 0px 2px 5px 0 rgba(0, 0, 0, 0.36);
transition: all .4s;
padding-left: 30px;
padding-right: 30px;
padding-top: 5px;
padding-botton: 5px;
opacity: 0.9;
border-radius: 5px;
}
#zoom-toolbar{
align-content: center;
position: absolute;
/*width: 100px;*/
height: 30%;
top: 100px;
right: 30px;
/*background-color: rgb(250, 250, 250);*/
z-index: 9;
transition: all .4s;
padding-top: 25px;
padding-botton: 25px;
/*opacity: 0.9;*/
border-radius: 5px;
}
#toolbar-button-panel{
position: absolute;
top: 10px;
right:10px;
z-index: 9;
}
.showtoolbar{
-webkit-transform: translateY(0);
transform: translateY(0);
visibility: visible;
}
.hidetoolbar{
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
visibility: hidden;
}
.collapse{
display: none;
}