-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent.css
More file actions
61 lines (54 loc) · 1.76 KB
/
content.css
File metadata and controls
61 lines (54 loc) · 1.76 KB
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
.freedium-floating-btn {
position: fixed;
z-index: 999999;
background-color: #1a8917; /* Medium Green */
color: white !important;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
font-size: 14px;
font-weight: 600;
padding: 10px 16px;
border-radius: 20px;
border: none;
cursor: pointer;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: all 0.2s ease-in-out;
text-decoration: none !important;
display: none !important; /* Hide by default */
align-items: center;
justify-content: center;
}
/* Visibility Control */
.freedium-show {
display: flex !important;
}
/* Positioning Classes */
.pos-bottom-center { bottom: 20px; left: 50%; transform: translateX(-50%); }
.pos-bottom-right { bottom: 20px; right: 20px; }
.pos-bottom-left { bottom: 20px; left: 20px; }
.pos-top-right { top: 20px; right: 20px; }
.pos-top-left { top: 20px; left: 20px; }
/* Interactive States */
.freedium-floating-btn:hover {
background-color: #156d12;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.pos-bottom-right.freedium-floating-btn:hover,
.pos-bottom-left.freedium-floating-btn:hover,
.pos-top-right.freedium-floating-btn:hover,
.pos-top-left.freedium-floating-btn:hover {
transform: translateY(-2px);
}
.pos-bottom-center.freedium-floating-btn:hover {
transform: translate(-50%, -2px); /* Maintain centering while lifting */
}
.pos-bottom-right.freedium-floating-btn:active,
.pos-bottom-left.freedium-floating-btn:active,
.pos-top-right.freedium-floating-btn:active,
.pos-top-left.freedium-floating-btn:active {
transform: translateY(0);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.pos-bottom-center.freedium-floating-btn:active {
transform: translate(-50%, 0);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}