mirror of
https://grond.iut-fbleau.fr/stiti/SAE_2.02
synced 2024-11-10 05:11:42 +01:00
47 lines
720 B
CSS
47 lines
720 B
CSS
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f0f0f0;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.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);
|
|
}
|
|
|
|
.album-details h1 {
|
|
font-size: 2em;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.album-details p {
|
|
font-size: 1.2em;
|
|
margin: 5px 0;
|
|
}
|
|
|
|
.album-details img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
margin: 20px 0;
|
|
}
|
|
|
|
.album-details h2 {
|
|
font-size: 1.5em;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.album-details ul {
|
|
list-style-type: none;
|
|
padding: 0;
|
|
}
|
|
|
|
.album-details ul li {
|
|
padding: 10px 0;
|
|
border-bottom: 1px solid #ddd;
|
|
}
|