-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
112 lines (94 loc) · 1.65 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
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
body {
font-family: "Inter", sans-serif;
background-color: #dfdfdf;
color: #000000;
font-weight: 700;
}
.main {
display: grid;
grid-template-columns: 1fr 1fr;
height: 90vh;
}
.leftItem {
height: 100%;
}
button {
border: none;
background-color: #ffffff;
border-radius: 10px;
padding: 7px 20px;
font-size: 20PX;
}
a
{
text-decoration: none;
color: #0058d4;
}
img {
border-radius: 10px;
border: 2px solid #716766;
z-index: -1;
position: relative;
height: 90%;
}
#finalList {
position: absolute;
font-size: 1.7vw;
width: 35vw;
height: 35vw;
z-index: 2;
text-shadow: 2px 2px 20px #ffffff;
background-color: #ffffff53;
margin: auto;
}
#timer {
color: #FF0000;
font-size: 30px;
}
#trackList > li, #finalList > li {
cursor: pointer;
}
#trackList > li:hover {
color: #E3D200;
}
#finalList > li:hover {
color: #FF0000;
}
.albumCover {
background-color: #ffffff;
height: 40vw;
width: 40vw;
border-radius: 10px;
border: 2px solid #716766;
}
.albumCover > h1 {
position: absolute;
top: 30vw;
left: 20vw;
font-size:3vw;
}
@media screen and (max-width: 450px)
{
.main {
display: grid;
grid-template-columns: 1fr;
height: 90vh;
}
.albumCover {
width: 95vw;
height: 95vw;
}
#finalList {
margin: 0;
font-size: 80%;
}
#timer {
margin: 0;
}
.albumCover > h1 {
top: 80vw;
left: 20vw;
font-size: 250%;
}
}