-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent.css
More file actions
43 lines (40 loc) · 939 Bytes
/
Copy pathcontent.css
File metadata and controls
43 lines (40 loc) · 939 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
42
43
.tikdownload-btn {
position: absolute;
top: 12px;
right: 12px;
width: 36px;
height: 36px;
cursor: pointer;
z-index: 999;
display: none;
border-radius: 50%;
background: rgba(0, 0, 0, 0.6);
padding: 8px;
transition: transform 0.2s, opacity 0.2s, background 0.2s;
align-items: center;
justify-content: center;
}
.tikdownload-btn:hover {
transform: scale(1.15);
background: rgba(254, 44, 85, 0.8);
}
.tikdownload-btn-fixed {
position: fixed !important;
top: 80px !important;
right: 20px !important;
z-index: 2147483647 !important;
display: flex !important;
width: 44px !important;
height: 44px !important;
cursor: pointer;
border-radius: 50%;
background: rgba(0, 0, 0, 0.7);
padding: 10px;
transition: transform 0.2s, background 0.2s;
align-items: center;
justify-content: center;
}
.tikdownload-btn-fixed:hover {
transform: scale(1.15);
background: rgba(254, 44, 85, 0.8);
}