Skip to content

Commit

Permalink
Create style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
PythJScharm authored Apr 11, 2024
1 parent 55bfe8d commit e6c4fba
Showing 1 changed file with 59 additions and 0 deletions.
59 changes: 59 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
body {
font-family: 'Arial', sans-serif;
background-color: #3498db;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}

h1 {
color: #fff;
text-align: center;
}

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;
}

#trackList {
height: 300px;
}

/* Additional styling for buttons */
#fileInputButton {
background-color: #FF4500;
}

#fileInputButton:hover {
background-color: #FF6347;
}

0 comments on commit e6c4fba

Please sign in to comment.