-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
98 lines (85 loc) · 1.97 KB
/
Copy pathstyles.css
File metadata and controls
98 lines (85 loc) · 1.97 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/* Kontener przycisków MeTube */
.metube-buttons-container {
display: flex;
gap: 8px;
margin-right: 8px;
align-items: center;
}
/* Styl przycisków */
.metube-btn {
display: flex;
align-items: center;
gap: 6px;
padding: 8px 16px;
border: none;
border-radius: 20px;
font-family: 'Roboto', 'Arial', sans-serif;
font-size: 14px;
font-weight: 500;
cursor: pointer;
transition: all 0.2s ease;
}
.metube-btn svg {
flex-shrink: 0;
}
/* Przycisk MP3 - pomarańczowy */
.metube-btn-mp3 {
background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
color: white;
}
.metube-btn-mp3:hover {
background: linear-gradient(135deg, #ff5722 0%, #e68a00 100%);
transform: scale(1.05);
box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}
/* Przycisk MP4 - niebieski */
.metube-btn-mp4 {
background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
color: white;
}
.metube-btn-mp4:hover {
background: linear-gradient(135deg, #1e88e5 0%, #1565c0 100%);
transform: scale(1.05);
box-shadow: 0 4px 12px rgba(33, 150, 243, 0.4);
}
/* Efekt kliknięcia */
.metube-btn:active {
transform: scale(0.95);
}
/* Powiadomienie */
.metube-notification {
position: fixed;
top: 80px;
right: 20px;
padding: 16px 24px;
border-radius: 8px;
font-family: 'Roboto', 'Arial', sans-serif;
font-size: 14px;
font-weight: 500;
z-index: 999999;
opacity: 0;
transform: translateX(100%);
transition: all 0.3s ease;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.metube-notification.show {
opacity: 1;
transform: translateX(0);
}
.metube-notification-success {
background: linear-gradient(135deg, #4caf50 0%, #43a047 100%);
color: white;
}
.metube-notification-error {
background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
color: white;
}
/* Dark mode support */
@media (prefers-color-scheme: dark) {
.metube-btn-mp3 {
box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}
.metube-btn-mp4 {
box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
}
}