SAE_2.02/CodeIgniter-3.1.13/assets/css/album_view.css

72 lines
1.1 KiB
CSS
Raw Normal View History

body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
margin: 0;
padding: 0;
}
2024-05-22 20:59:59 +02:00
.album-details {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background-color: #ffffff;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
2024-05-22 20:59:59 +02:00
.album-details h1 {
font-size: 2em;
margin-bottom: 10px;
}
2024-05-22 20:59:59 +02:00
.album-details p {
font-size: 1.2em;
margin: 5px 0;
2024-05-22 20:03:53 +02:00
}
2024-05-22 20:59:59 +02:00
.album-details img {
max-width: 100%;
height: auto;
margin: 20px 0;
2024-05-22 20:03:53 +02:00
}
2024-05-22 20:59:59 +02:00
.album-details h2 {
font-size: 1.5em;
margin-top: 20px;
2024-05-22 20:03:53 +02:00
}
2024-05-22 20:59:59 +02:00
.album-details ul {
list-style-type: none;
padding: 0;
2024-05-22 20:03:53 +02:00
}
2024-05-22 20:59:59 +02:00
.album-details ul li {
padding: 10px 0;
border-bottom: 1px solid #ddd;
}
2024-06-06 13:45:22 +02:00
.select-playlist {
display: block;
width: 100%;
padding: 8px;
font-size: 16px;
margin-bottom: 10px;
}
.btn-add-to-playlist {
display: block;
width: 100%;
padding: 10px 20px;
background-color: #6814c7;
color: white;
font-size: 16px;
border: none;
cursor: pointer;
border-radius: 5px;
margin-top: 10px;
}
.btn-add-to-playlist:hover {
background-color: #400d7b;
}