-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
49 lines (44 loc) · 1.09 KB
/
Copy pathstyle.css
File metadata and controls
49 lines (44 loc) · 1.09 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
.codex-player-wrapper {
position: relative;
max-width: 900px;
width: 100%;
background: #050505;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
#codex-video {
width: 100%;
display: block;
}
/* Buzlu Cam (Glassmorphism) Efekti */
.codex-glass-controls {
position: absolute;
bottom: 0;
width: 100%;
background: rgba(20, 20, 20, 0.6);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding: 15px 20px;
display: flex;
flex-direction: column;
gap: 10px;
opacity: 0;
transform: translateY(10px);
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.codex-player-wrapper:hover .codex-glass-controls {
opacity: 1;
transform: translateY(0);
}
/* İlerleme Çubuğu Hover Efekti */
#progress-bar {
height: 5px;
background: linear-gradient(90deg, #00a8ff, #9c88ff); /* CodEX Özel Gradient */
border-radius: 5px;
transition: height 0.2s ease;
}
.progress-area:hover #progress-bar {
height: 8px;
}