-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
83 lines (73 loc) · 1.23 KB
/
style.css
File metadata and controls
83 lines (73 loc) · 1.23 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
body {
background-color: #121212;
color: white;
font-family: 'Circular', 'Helvetica Neue', Helvetica, Arial, sans-serif;
margin: 0;
padding: 0;
}
.sidebar {
background-color: #000;
height: 100vh;
position: fixed;
width: 240px;
overflow-y: auto;
}
.main-content {
margin-left: 240px;
padding: 20px;
background: linear-gradient(#1A1A1A, #121212);
}
.card {
background: #181818;
transition: background-color 0.3s ease;
padding: 16px;
position: relative;
}
.card:hover {
background: #282828;
cursor: pointer;
}
.play-button {
opacity: 0;
transition: all 0.3s ease;
position: absolute;
right: 8px;
bottom: 8px;
}
.card:hover .play-button {
opacity: 1;
transform: translateY(-5px);
}
.player-bar {
background-color: #181818;
border-top: 1px solid #282828;
height: 80px;
position: fixed;
bottom: 0;
left: 0;
right: 0;
z-index: 50;
}
.progress-bar {
height: 4px;
background-color: #535353;
position: absolute;
top: -4px;
left: 0;
right: 0;
}
.progress {
height: 100%;
background-color: #1DB954;
width: 30%;
}
::-webkit-scrollbar {
width: 6px;
}
::-webkit-scrollbar-track {
background: #000;
}
::-webkit-scrollbar-thumb {
background: #444;
border-radius: 3px;
}