-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
123 lines (104 loc) · 2.26 KB
/
style.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
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
120
121
122
123
body {
--background-color: #222831;
--secondary-color: #393E46;
background-color: var(--background-color);
color: white;
font-family: "Varela Round", serif;
font-size: 18px;
text-align: center;
--mdc-theme-primary: var(--secondary-color);
--mdc-theme-on-primary: var(--mdc-theme-text-primary-on-dark);
cursor: default;
}
header {
font-family: "Dela Gothic One", serif;
font-weight: bold;
font-size: 60px;
text-align: center;
}
a {
text-decoration: none;
color: lightgray;
transition: .2s;
}
a:hover {
text-decoration: underline;
}
p {
margin: 0;
}
.select-radio {
margin: 20px;
}
select {
background-color: var(--secondary-color);
border: 0;
color: white;
font-size: 90%;
border-radius: 5px;
}
#wzium {
background: -webkit-linear-gradient(left, red, orange, yellow, lightgreen, cyan, lightblue);
background: -o-linear-gradient(right, red, orange, yellow, lightgreen, cyan, lightblue);
background: -moz-linear-gradient(right, red, orange, yellow, lightgreen, cyan, lightblue);
background: linear-gradient(to right, red, orange, yellow, lightgreen, cyan, lightblue);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
#dio {
font-weight: bold;
color: white;
}
.album-art {
width: 125px;
min-width: auto;
min-height: auto;
max-height: 125px;
margin-right: 20px;
border-radius: 10px;
}
@media screen and (min-width: 350px) {
.song-info {
width: 350px;
}
}
@media screen and (max-width: 400px) {
.song-info {
width: 300px;
}
}
.song-info-background {
font-size: 20px;
display: inline-flex;
text-align: left;
word-wrap: break-word;
background-repeat: no-repeat;
background-size: cover;
border-radius: 25px;
}
.song-info {
display: inherit;
backdrop-filter: blur(30px) brightness(40%);
padding: 15px;
border-radius: 20px;
box-shadow: rgba(0, 0, 0, 0.45) 0 25px 20px -20px;
transition: 0.2s;
}
.song-info:hover {
transform: scale(1.03);
}
.title, .author {
font-weight: bold;
}
.author, .album {
color: #9b9b9b;
}
.author {
font-size: 80%;
}
.album, .length, .start, .year {
font-size: 70%;
}
footer {
color: #5d5d5d;
}