diff --git a/CodeIgniter-3.1.13/application/views/musiques_list.php b/CodeIgniter-3.1.13/application/views/musiques_list.php index c25dd5e..00294b7 100644 --- a/CodeIgniter-3.1.13/application/views/musiques_list.php +++ b/CodeIgniter-3.1.13/application/views/musiques_list.php @@ -32,12 +32,18 @@ Couverture de l'album diff --git a/CodeIgniter-3.1.13/application/views/search_results.php b/CodeIgniter-3.1.13/application/views/search_results.php index 03bd754..b7cc96a 100644 --- a/CodeIgniter-3.1.13/application/views/search_results.php +++ b/CodeIgniter-3.1.13/application/views/search_results.php @@ -3,70 +3,79 @@ + Résultats de la recherche -

Résultats de la recherche pour ""

+

Résultats de la recherche pour ""

-

+

-

Musiques

- +
+

Musiques

+ +
-

Albums

- +
+

Albums

+ +
-

Genres

- +
+

Genres

+ +
-

Artistes

- +
+

Artistes

+ +
-

Aucun résultat trouvé.

+

Aucun résultat trouvé.

diff --git a/CodeIgniter-3.1.13/assets/css/musiques_list.css b/CodeIgniter-3.1.13/assets/css/musiques_list.css index a76360d..258728d 100644 --- a/CodeIgniter-3.1.13/assets/css/musiques_list.css +++ b/CodeIgniter-3.1.13/assets/css/musiques_list.css @@ -35,7 +35,7 @@ a { a:hover { text-decoration: underline; } -/* Styles pour les boutons de pagination */ + .pagination { text-align: center; margin-top: 20px; @@ -58,4 +58,19 @@ a:hover { .pagination .active { background-color: #29043e; -} \ No newline at end of file +} + +.music-links { + margin-top: 10px; +} + +.music-links a { + display: inline-block; + margin-right: 10px; + color: #560d61; + text-decoration: none; +} + +.music-links a:hover { + text-decoration: underline; +} diff --git a/CodeIgniter-3.1.13/assets/css/search_results.css b/CodeIgniter-3.1.13/assets/css/search_results.css new file mode 100644 index 0000000..6c534d6 --- /dev/null +++ b/CodeIgniter-3.1.13/assets/css/search_results.css @@ -0,0 +1,62 @@ +body { + font-family: Arial, sans-serif; + margin: 0; + padding: 0; + background-color: #f8f8f8; +} + +.search-title { + color: #6a0dad; + text-align: center; + margin-top: 20px; +} + +.error-message { + color: #f44336; + text-align: center; +} + +.section { + margin-bottom: 30px; +} + +.section-title { + color: #6a0dad; + font-size: 1.5em; +} + +ul { + padding: 0; +} + +ul li { + margin-bottom: 10px; +} + +ul li a { + color: #6a0dad; + text-decoration: none; + transition: color 0.3s ease; +} + +ul li a:hover { + color: #4a0772; +} + +.no-results { + text-align: center; + color: #777; /* Grey */ +} + +/* Responsive styles */ +@media screen and (max-width: 768px) { + ul li { + width: 45%; + } +} + +@media screen and (max-width: 576px) { + ul li { + width: 100%; + } +} diff --git a/CodeIgniter-3.1.13/assets/css/style.css b/CodeIgniter-3.1.13/assets/css/style.css index 7bc1ff3..ff6c1a6 100644 --- a/CodeIgniter-3.1.13/assets/css/style.css +++ b/CodeIgniter-3.1.13/assets/css/style.css @@ -135,3 +135,42 @@ header.short-text a { background-color: #6a0080; } +.music-links { + margin-top: 10px; +} + +.music-links a { + display: inline-block; + margin-right: 10px; + padding: 5px 10px; + border-radius: 5px; + color: #fff; + text-decoration: none; + transition: background-color 0.3s ease; +} +.spotify { + background-color: #5bab15; +} + +.youtube { + background-color: #c51414; +} + +.spotify:hover{ + background-color: #3c6915; +} + +.youtube:hover { + background-color: #7a1818; +} + +.artist-name, +.album-name { + display: inline-block; + margin-right: 10px; + padding: 5px 10px; + border-radius: 5px; + background-color: #7300ff; + color: #fff; + transition: background-color 0.3s ease; +} diff --git a/CodeIgniter-3.1.13/assets/img/reseaux_sociaux/soundcloud.png b/CodeIgniter-3.1.13/assets/img/reseaux_sociaux/soundcloud.png new file mode 100644 index 0000000..022d30b Binary files /dev/null and b/CodeIgniter-3.1.13/assets/img/reseaux_sociaux/soundcloud.png differ diff --git a/CodeIgniter-3.1.13/assets/img/reseaux_sociaux/spotify.png b/CodeIgniter-3.1.13/assets/img/reseaux_sociaux/spotify.png new file mode 100644 index 0000000..46da94c Binary files /dev/null and b/CodeIgniter-3.1.13/assets/img/reseaux_sociaux/spotify.png differ