94 lines
2.1 KiB
SCSS
94 lines
2.1 KiB
SCSS
.myContainer {
|
|
background-color: white ;
|
|
text-align: center;
|
|
width: 35vw;
|
|
margin: 1vh 0vh 3vh 0vh;
|
|
padding: 0px;
|
|
border: solid 2px black;
|
|
border-radius: 10px;
|
|
box-shadow: 10px 5px 5px black;
|
|
}
|
|
|
|
// SearchBar -----------------------------------------------------------
|
|
|
|
.searchBarContainer {
|
|
text-align: center;
|
|
margin: 0px 0px 0px 0px;
|
|
padding: 10px 0px 10px 0px;
|
|
//background-color: #dcdcdc;
|
|
background: linear-gradient(top, rgba(38,38,38,0.8), #e6e6e6 25%, #fff 38%, #c5c5c5 87%, rgba(38,38,38,0.8));
|
|
background: -webkit-linear-gradient(top, #c5c5c5, #e6e6e6 25%, #fff 38%, #c5c5c5 87%, #c5c5c5);
|
|
font-size: large;
|
|
border-bottom: solid 1px black;
|
|
border-top-left-radius: 10px;
|
|
border-top-right-radius: 10px;
|
|
}
|
|
|
|
.inputSearchBar {
|
|
width: 70%;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
|
|
// Liste des playlists -------------------------------------------------
|
|
|
|
.playlistListContainer {
|
|
max-width: 100%;
|
|
height: 60vh;
|
|
overflow-y: scroll;
|
|
padding: 0px;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.playlistContainer {
|
|
max-width: 100%;
|
|
padding: 0px;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
|
|
.btnPlaylist {
|
|
background-color: white;
|
|
padding: 20px;
|
|
border-bottom: solid 1px black;
|
|
//width: 100%;
|
|
width: 35vw;
|
|
overflow-x: hidden;
|
|
}
|
|
.btnPlaylist:hover {
|
|
background-color: #f0f0f0;
|
|
}
|
|
|
|
.btnPlaylistFocus {
|
|
background-color: #e6e6e6;
|
|
}
|
|
.btnPlaylistFocus:hover {
|
|
background-color: #e6e6e6;
|
|
}
|
|
|
|
|
|
.playListCount {
|
|
color: gray;
|
|
font-style: italic;
|
|
}
|
|
|
|
// Bouton creer playlist -------------------------------------------------
|
|
|
|
.btnCreerPlaylistContainer {
|
|
margin: 0px 0px 0px 0px;
|
|
background-color: #dcdcdc;
|
|
font-size: large;
|
|
border-top: solid 1px black;
|
|
border-bottom-left-radius: 10px;
|
|
border-bottom-right-radius: 10px;
|
|
}
|
|
|
|
.btnCreerPlaylist {
|
|
margin: 0px 0px 0px 0px;
|
|
border-bottom-left-radius: 10px;
|
|
border-bottom-right-radius: 10px;
|
|
background: linear-gradient(top, rgba(38,38,38,0.8), #e6e6e6 25%, #fff 38%, #c5c5c5 87%, rgba(38,38,38,0.8));
|
|
background: -webkit-linear-gradient(top, #c5c5c5, #e6e6e6 25%, #fff 38%, #c5c5c5 87%, #c5c5c5);
|
|
//background: linear-gradient(180deg, #e6e6e6 0%, rgba(0,0,0,0.25) 49%, rgba(38,38,38,0.6) 51%, rgba(0,0,0,0.25) 100%);
|
|
}
|
|
|