59 lines
767 B
SCSS
59 lines
767 B
SCSS
.navbar {
|
|
background-color: black;
|
|
height: 60px;
|
|
font-size: medium;
|
|
color: white;
|
|
}
|
|
|
|
|
|
.navbar-expand-lg {
|
|
border-bottom: solid;
|
|
border-color: white;
|
|
border-bottom-width: 2px;
|
|
}
|
|
|
|
|
|
// PolyNotFound
|
|
.navbar-brand {
|
|
font-family: cursive;
|
|
font-weight: bold;
|
|
font-size: x-large;
|
|
margin-left: 15px;
|
|
color: white;
|
|
}
|
|
|
|
|
|
// Recherche, Mes Playlists, Historique
|
|
.nav-link {
|
|
color: white;
|
|
}
|
|
.nav-link:hover {
|
|
color: grey;
|
|
}
|
|
|
|
|
|
// Bonton deconnexion
|
|
.btnDeconnexion {
|
|
font-size: medium;
|
|
margin: 0px 10px 0px 10px
|
|
}
|
|
.btnDeconnexion:hover {
|
|
color: grey;
|
|
}
|
|
|
|
|
|
.monLi {
|
|
margin: 0px 10px 0px 10px;
|
|
}
|
|
|
|
|
|
img {
|
|
border: solid 2px white;
|
|
border-radius: 50px;
|
|
margin: 0px 10px 0px 15px;
|
|
width: 40px;
|
|
height: 40px;
|
|
}
|
|
img:hover {
|
|
cursor: pointer;
|
|
}
|