-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
119 lines (105 loc) · 2.33 KB
/
styles.css
File metadata and controls
119 lines (105 loc) · 2.33 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');
#fullscreen-player {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
z-index: 9999;
background: #000;
color: white;
font-family: 'Montserrat', sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#fullscreen-blur-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
filter: blur(30px) brightness(0.4);
transform: scale(1.2);
z-index: 0;
transition: all 0.8s ease-in-out;
}
#pattern-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
opacity: 0.8;
mix-blend-mode: overlay;
pointer-events: none;
}
#fullscreen-cover {
width: 450px;
height: 450px;
object-fit: cover;
border-radius: 20px;
box-shadow: 0 20px 40px rgba(0,0,0,0.5);
z-index: 2;
transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
#fullscreen-title {
margin-top: 20px;
font-size: 28px;
font-weight: 700;
z-index: 2;
transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s cubic-bezier(0.4, 0, 0.2, 1);
text-align: center;
}
#fullscreen-artist {
font-size: 18px;
opacity: 0.8;
transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s cubic-bezier(0.4, 0, 0.2, 1);
z-index: 2;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 90vw;
text-align: center;
margin-top: 15px;
}
.monochrome80 {
filter: blur(0.7px);
/* filter: grayscale(40%); */
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}
.lowopacity {
opacity: 0.7 !important;
}
.dimmed {
filter: blur(30px) brightness(0.25) saturate(0.8);
filter: grayscale(40%);
}
.textpause {
filter: blur(1px);
}
.loading-spinner {
width: 50px;
height: 50px;
border: 5px solid rgba(255, 255, 255, 0.2);
border-radius: 50%;
border-top: 5px solid #1DB954;
animation: spin 1s linear infinite;
position: absolute;
z-index: 10;
display: none;
}
.change-blur {
filter: blur(12px) !important;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.fullscreen-active {
cursor: none !important;
}