-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
60 lines (52 loc) · 948 Bytes
/
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
@font-face {
font-family: 'CustomFont';
src: url('font.ttf') format('truetype');
}
body {
font-family: 'CustomFont', Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
background-image: url('bg.png');
background-repeat: repeat;
}
h1 {
color: #fff;
text-align: center;
margin-bottom: 20px;
}
input[type="file"] {
display: none;
}
button {
background-color: #FFD700;
border: none;
color: #fff;
padding: 10px 20px;
margin: 5px;
cursor: pointer;
border-radius: 5px;
font-size: 16px;
}
button:hover {
background-color: #FFA500;
}
select {
width: 200px;
font-size: 16px;
padding: 5px;
border-radius: 5px;
}
label {
color: #fff;
font-size: 18px;
margin-bottom: 10px;
}
#trackList {
height: 300px;
margin-bottom: 20px;
}