-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
63 lines (58 loc) · 1.32 KB
/
styles.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
/* Main Download Button */
#clipx-download-button {
background-color: #ff0000; /* YouTube red color */
color: white;
font-size: 14px;
padding: 8px 16px;
border: none;
border-radius: 4px;
cursor: pointer;
margin-left: 10px;
position: relative;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
z-index: 9999;
}
/* Hover effect for the button */
#clipx-download-button:hover {
background-color: #e60000;
transform: scale(1.05);
}
/* Dropdown Menu */
#clipx-dropdown {
display: none; /* Initially hidden */
position: absolute;
top: 100%;
left: 0;
margin-top: 5px;
padding: 8px;
background-color: white;
color: #333;
border-radius: 4px;
border: 1px solid #ccc;
width: 180px;
font-size: 14px;
cursor: pointer;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
transition: opacity 0.3s ease;
opacity: 0;
z-index: 10000; /* Ensures dropdown is above everything else */
}
/* Show dropdown when clicked */
#clipx-dropdown.show {
display: inline-block;
opacity: 1;
}
/* Style for each option in the dropdown */
.clipx-dropdown-option {
padding: 8px;
background-color: white;
color: #333;
border: none;
cursor: pointer;
transition: background-color 0.2s ease;
}
/* Hover effect for dropdown options */
.clipx-dropdown-option:hover {
background-color: #f1f1f1;
}