269 lines
3.5 KiB
CSS
Raw Normal View History

2024-05-25 00:33:32 +02:00
section.list
{
display : flex;
justify-content : space-between;
flex-wrap:wrap;
}
section.list > div
{
2024-05-30 19:28:09 +02:00
width : 30%;
2024-05-25 00:33:32 +02:00
}
section.list img {
display:inline-block;
}
.short-text {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
2024-06-18 19:01:19 +02:00
display: grid;
grid-template-columns: 200px auto;
2024-06-19 12:08:26 +02:00
grid-template-rows: auto auto;
2024-06-18 19:01:19 +02:00
justify-content: space-between;
2024-05-25 00:33:32 +02:00
}
strong {
margin-left: 233px;
}
ul.option li {
margin-right: 50px;
}
2024-05-29 16:30:22 +02:00
2024-05-30 19:28:09 +02:00
/* modification par Yann */
2024-06-18 19:01:19 +02:00
#titre {
font-size: 23px;
text-shadow: 2px 2px 3px black;
}
2024-05-30 19:28:09 +02:00
nav {
position: fixed;
2024-06-01 10:02:46 +02:00
width: 100%;
2024-06-10 15:17:52 +02:00
background-color: #283d5d;
2024-05-30 19:28:09 +02:00
top: 0;
2024-06-01 10:02:46 +02:00
right: 0;
2024-05-30 19:28:09 +02:00
}
2024-06-09 04:13:50 +02:00
main.container {
2024-05-30 19:28:09 +02:00
margin-top: 60px;
}
ul.options {
margin-right : 50px;
}
2024-06-10 15:17:52 +02:00
.sous {
display: none;
2024-06-11 17:30:30 +02:00
border-radius: 5px;
border: solid 1px black;
background-color: #283d5d;
2024-06-11 12:28:08 +02:00
position: absolute;
2024-06-19 13:08:07 +02:00
top: 55px;
right: 55px;
text-align: center;
}
.sous li {
display: block!important;
padding: 5px;
margin-right: 5px!important;
2024-06-10 15:17:52 +02:00
}
nav > ul li:hover .sous {
display: block;
2024-06-11 12:28:08 +02:00
}
.deroulant a {
text-decoration: none;
color: white;
display: inline-block;
2024-06-10 15:17:52 +02:00
}
2024-06-11 12:28:08 +02:00
.deroulant > a::after {
content: " ▼ ";
font-size: 17px;
2024-06-11 12:28:08 +02:00
}
.sous a:hover{
2024-06-11 17:30:30 +02:00
color: #1399fc;
2024-06-11 12:28:08 +02:00
}
2024-06-09 04:13:50 +02:00
section.connexion {
display: flex;
justify-content: space-between;
}
div.authentification {
width: 45%;
}
div.new {
width: 45%;
}
2024-06-14 14:56:16 +02:00
/* Styles pour les détails des pistes */
.track-list {
width: 100%;
margin: 0 auto;
}
.track-id {
display: flex;
justify-content: space-between;
padding: 10px;
border-bottom: 1px solid #ccc;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.track-name {
flex-grow: 1;
overflow: visible;
text-overflow: clip;
}
.track-time {
flex-shrink: 0;
margin-left: 20px;
}
#tri {
text-align: right;
}
/* mise en forme du tri */
/*.sous_tri {
display: none;
position: absolute;
text-align: right;
background-color: black;
}
.tri {
color: #a4acba;
text-align: right;
display: inline-block;
}
.tri:hover sous_tri {
display: block;
}
.sous_tri a:hover{
color: #1399fc;
}*/
2024-06-17 13:37:47 +02:00
.sorting-search {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
width: 100%;
}
.tri-container {
display: flex;
align-items: center;
}
.search-container {
display: flex;
align-items: center;
}
.search-input {
width: 200px;
padding: 5px;
margin-right: 10px;
}
.back-form {
display: inline-block;
}
.search-genre {
margin-right: 10px;
padding: 5px;
font-size: 14px;
}
.tri-select {
width: 55%;
}
.tri-button {
width: 55%!important;
}
form.search-form {
margin-left: -200px;
}
2024-06-18 19:01:19 +02:00
2024-06-18 20:28:49 +02:00
form.create-playlist-form {
width: 40%;
margin: 0 auto;
}
form.add-song-form {
width: 40%;
margin: 0 auto;
}
form.generate-playlist-form {
width: 40%;
margin: 0 auto;
}
section.playlists {
display: flex;
justify-content: left;
flex-wrap: wrap;
gap: 100px;
margin-top: 50px;
}
.btn-supp {
width: 30%;
}
2024-06-18 19:01:19 +02:00
2024-06-19 13:01:16 +02:00
.btn.btn-secondary {
margin-left: 50px;
}
2024-06-18 19:01:19 +02:00
/* bouton ajouter sur les albums et musique */
.ajout-albums {
2024-06-18 19:01:19 +02:00
padding: 0;
margin-top: 5px;
grid-column: 2/3;
grid-row: 2/3;
}
.ajout-artistes {
padding: 0;
margin-bottom: 20px;
grid-column: 2/3;
grid-row: 2/3;
}
.ajout-album-list {
padding: 0;
margin-top: 10px;
grid-column: 2/3;
grid-row: 2/3;
}
.musics-album {
margin-bottom: 0;
2024-06-18 19:01:19 +02:00
}