ComunicWeb/assets/css/components/friends/friendsBar.css

51 lines
681 B
CSS
Raw Normal View History

2017-05-31 17:05:19 +00:00
/**
* 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%;
2017-06-03 12:25:21 +00:00
padding-top: 50px;
/**
2017-05-31 17:17:31 +00:00
width: 50px;
font-size: 70%;
2017-06-03 12:25:21 +00:00
transition: width 1s;
*/
width: 230px;
transition: right 1s;
right: -175px;
2017-05-31 17:05:19 +00:00
}
#friendsList:hover {
background-color: #ffffff;
2017-06-03 12:25:21 +00:00
/**
width: 230px;
2017-05-31 17:17:31 +00:00
font-size: 100%;
padding: 10px;
padding-top: 50px;
2017-06-03 12:25:21 +00:00
*/
right: 0px;
2017-05-31 17:05:19 +00:00
}
#friendsList td {
vertical-align: middle;
}
#friendsList .account-image {
margin: auto 10px auto auto;
2017-05-31 17:17:31 +00:00
max-width: 40px;
2017-05-31 17:05:19 +00:00
height: 40px;
border-radius: 50%;
2017-05-31 17:17:31 +00:00
visibility: visible
2017-05-31 17:05:19 +00:00
}