Add new views and styles for music application

- Created new CSS files for styling the application, including home.css and style.css.
- Implemented 403 and 404 error views with appropriate messages and navigation.
- Developed a dump view to display deleted elements with restoration options.
- Enhanced home view to include music search functionality and display results.
- Added listplay view for managing music playlists, including creation and deletion options.
- Implemented loadmusic view for uploading new music with necessary fields.
- Created login and register views for user authentication.
- Developed sound view to display individual music tracks with playback controls and options for liking and deleting.
- Updated menu view to include navigation links based on user authentication status.
This commit is contained in:
2026-01-05 17:20:17 -04:00
parent 24f62ca4c2
commit a8624fc847
33 changed files with 1370 additions and 0 deletions

30
style/home.css Normal file
View File

@@ -0,0 +1,30 @@
.volumeSound{
position: absolute;
transform: rotate(270deg);
width: 25%;
right: -20px;
top: -15px;
}
.cursor-pointer{
cursor: pointer;
transition: .2s;
}
.cursor-pointer:hover{
transform: scale(1.1);
}
.btn-description{
color: white;
border-radius: 12px;
border: none;
font-size: 10px;
}
.music{
color: white;
padding: 10px;
border: 1px rgba(255, 255, 255, 0.247) solid;
border-radius: 10px;
}