ComunicWeb/assets/css/components/friends/friendsBar.css
2017-05-31 19:17:31 +02:00

38 lines
572 B
CSS

/**
* Friends bar style sheet
*
* @author Pierre HUBERT
*/
#friendsList {
position: fixed;
right: 0px;
border-left: 1px black solid;
z-index: 999;
background-color: #fff3ff80;
top: 0px;
height: 100%;
width: 50px;
transition: width 1s;
font-size: 70%;
}
#friendsList:hover {
width: 230px;
background-color: #ffffff;
font-size: 100%;
padding: 10px;
padding-top: 50px;
}
#friendsList td {
vertical-align: middle;
}
#friendsList .account-image {
margin: auto 10px auto auto;
max-width: 40px;
height: 40px;
border-radius: 50%;
visibility: visible
}