rangement fichier + réglage beug

This commit is contained in:
2024-06-12 11:18:32 +02:00
parent 253fd100d8
commit 4e2ccff2e4
33 changed files with 100 additions and 564 deletions

43
ci/assets/CSS/album.css Normal file
View File

@@ -0,0 +1,43 @@
.albums {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 0 auto;
padding: 20px;
}
.album {
box-sizing: border-box;
width: 18%;
margin-bottom: 20px;
border: 1px solid #ccc;
border-radius: 10px;
padding: 10px;
margin-top: 50px;
text-align: center;
background-color: #f9f9f9;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: transform 0.2s;
}
.album img {
max-width: 80%;
height: auto;
border-bottom: 1px solid #ccc;
margin-bottom: 10px;
border-radius: 10px 10px 0 0;
}
.album-title {
font-size: 1.2em;
font-weight: bold;
color: #333;
margin-top: 10px;
}
.album:hover {
transform: scale(1.05);
}

29
ci/assets/CSS/artiste.css Normal file
View File

@@ -0,0 +1,29 @@
.artiste {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 20px;
}
.artiste a {
display: block;
width: 80%;
border: 1px solid #ddd;
padding: 10px;
margin: 10px 0;
text-align: center;
background-color: #fff;
text-decoration: none;
color: #333;
border-radius: 5px;
transition: background-color 0.3s, border-color 0.3s;
}
.artiste a:hover {
background-color: #f0f0f0;
border-color: #ccc;
}
.artiste a:visited {
color: #333;
}

View File

@@ -0,0 +1,66 @@
/* Style pour les boutons */
button[type='submit'].create-button,
button[type='submit'].delete-button {
background-color: #1ed860;
color: white;
padding: 8px 12px;
border: none;
border-radius: 5px;
cursor: pointer;
margin: 5px;
transition: background-color 0.3s, color 0.3s;
}
button.upload-image-button {
background-color: transparent;
color: green;
border: 1px solid green;
padding: 8px 12px;
border-radius: 5px;
cursor: pointer;
margin-top: 10px;
transition: background-color 0.3s, color 0.3s;
}
button.upload-image-button:hover {
background-color: green;
color: white;
}
/* Style pour le conteneur de la playlist */
div.playlist-container {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
padding-top: 20px; /* Ajouter un padding pour éviter que le contenu ne soit caché par la barre de navigation */
}
/* Style pour chaque élément de la playlist */
div.playlist-item {
width: 200px;
margin: 10px;
padding: 12px;
border: 1px solid #ccc;
border-radius: 8px;
text-align: center;
transition: transform 0.3s;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
div.playlist-item img {
max-width: 100%;
height: auto;
border-radius: 5px;
}
/* Style pour le nom de la playlist */
div.playlist-item h3 {
margin-top: 10px;
font-size: 20px;
color: #333; /* changer la couleur du texte */
}
div.playlist-item:hover {
transform: scale(1.05);
}

42
ci/assets/CSS/song.css Normal file
View File

@@ -0,0 +1,42 @@
/* 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;
}
.song-header {
display: flex;
justify-content: space-between;
align-items: center;
}
.song-name {
font-size: 18px;
font-weight: bold;
}
.add-to-playlist {
font-size: 16px;
cursor: pointer;
background-color: #4CAF50;
color: white;
border: none;
padding: 5px 10px;
border-radius: 5px;
}
.add-to-playlist:hover {
background-color: #45a049;
}

253
ci/assets/CSS/style.css Normal file
View File

@@ -0,0 +1,253 @@
body {
box-sizing: border-box;
background-color: white;
font-size: 16px;
height: 80%;
padding-top: 100px;
margin-right: 5px;
}
.content {
max-width: 1200px;
margin: 80px auto 0;
padding: 20px;
}
.navbar a {
color: white;
text-decoration: none;
margin: 0 5px;
}
.navbar {
background-color: black;
padding: 20px;
display: flex;
justify-content: space-between;
align-items: center;
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
box-sizing: border-box;
}
.bouton a{
color: #FFF;
text-decoration: none;
}
.bouton {
display: flex;
text-decoration: none;
background-color: #1ed860;
font-weight: bold;
padding: 12px;
border-radius: 60px;
border: 2px;
margin: 0 40px;
}
.user {
margin-right: 50px;
padding-left: center;
list-style: none;
display: flex;
text-decoration: none;
font-weight: bold;
justify-content: space-between;
}
.menu {
display: flex;
flex-direction: column;
}
.menu ul {
list-style: none;
display: flex;
flex-direction: row;
margin: 0;
}
.menu li {
display: inline-block;
margin-right: 15px;
}
.menu a {
text-decoration: none;
font-weight: bold;
color: #FFF;
font-family: Open Sans, 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-size: 1.2rem;
}
#Page {
text-align: center;
padding: 50px 0;
background: url(img/fond.jpeg);
}
#Page img {
width: 1000px;
height: 500PX;
}
.text-page {
border-top: 2px solid #1ed860;
margin-top: 100px;
color: white;
}
#header {
background-color: #1ed860;
padding: 2px 0;
}
.mention_legale h2{
color: #1ed860;
font-size: 2em;
margin-left: 400px;
}
.mention_legale{
background-color: white;
border-radius: 20px;
margin: 60px auto 0;
padding: 40px;
}
.box {
display: flex;
flex-direction: column;
border-radius: 50px;
padding: 20px;
margin: 20px 0;
}
.box-img {
display: flex;
flex-direction: row-reverse;
align-items: center;
justify-content: space-between;
}
.box .box-img img{
width: 250px;
height: 150px;
border-radius: 8px;
padding-right: 50px;
margin-left: 100px;
object-fit: initial;
}
.box-content{
display: flex;
flex-direction: row;
align-items: center;
}
.text-content{
flex: 1;
}
.box p{
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-size: 1.2em;
margin-bottom: 10px;
text-align: center;
}
.box h2 {
color: #1ed860;
font-weight: bold;
font-family: 'Open Sans', 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-size: 3.5em;
margin-bottom: 10px;
}
.box h3{
color: #1ed860;
font-weight: bold;
font-size: 2em;
margin-bottom: 10px;
}
.box p{
text-align: justify;
}
.box img {
width: 200px;
height: 200px;
object-fit: cover;
border-radius: 8px;
margin-right: 50px;
margin-left: 40px;
}
.content-section h2 {
color: #1ed860;
}
.logo img {
padding-left: 10px;
width: 200px;
height: 80px;
margin-right: auto;
}
img {
max-width: 100%;
height: auto;
}
.footer {
background-color: black;
color: white;
padding: 20px;
text-align: center;
margin-top: 20px;
width: 100%;
box-sizing: border-box;
}
.footer-content {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
.footer-section {
text-align: center;
margin: 10px;
}
.footer-logo {
order: 1;
}
.logo-reseaux {
display: flex;
align-items: center;
justify-content: center;
margin-top: 10px;
}
.logo-reseaux img {
width: 40px;
height: 40px;
}
.footer-section h3 {
margin-bottom: 10px;
font-size: 1.5em;
}
.footer-section a {
color: white;
}
.footer-section img {
width: 30px;
height: 30px;
margin-right: 5px;
}
#scrollTopBtn {
display: none;
position: fixed;
bottom: 20px;
right: 20px;
background-color: #1ed860;
border: none;
border-radius: 5px;
font-size: 25px;
padding: 10px;
cursor: pointer;
}