23 lines
395 B
CSS
23 lines
395 B
CSS
|
/* Style de la liste des chansons */
|
||
|
.list {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: center;
|
||
|
margin: 20px;
|
||
|
}
|
||
|
|
||
|
.list div {
|
||
|
width: 100%;
|
||
|
max-width: 600px;
|
||
|
margin: 10px 0;
|
||
|
border: 1px solid #ccc;
|
||
|
padding: 15px;
|
||
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
||
|
background-color: #f9f9f9;
|
||
|
}
|
||
|
|
||
|
.short-text {
|
||
|
font-size: 18px;
|
||
|
font-weight: bold;
|
||
|
}
|