mirror of
				https://github.com/pierre42100/ComunicWeb
				synced 2025-11-04 04:04:20 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			46 lines
		
	
	
		
			854 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			854 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
/**
 | 
						|
 * Friends list script file
 | 
						|
 *
 | 
						|
 * @author Pierre HUBERT
 | 
						|
 */
 | 
						|
 | 
						|
.personnal-friends-list .friend a,
 | 
						|
.friends-list-ro .friend a {
 | 
						|
	color: white;
 | 
						|
}
 | 
						|
.personnal-friends-list .friend a:hover,
 | 
						|
.friends-list-ro .friend a:hover {
 | 
						|
	color: #001F3F;
 | 
						|
}
 | 
						|
 | 
						|
.personnal-friends-list .friend img,
 | 
						|
.friends-list-ro .friend img {
 | 
						|
	margin: auto 10px auto auto;
 | 
						|
	max-width: 40px;
 | 
						|
	height: 40px;
 | 
						|
	border-radius: 50%;
 | 
						|
	visibility: visible;
 | 
						|
}
 | 
						|
 | 
						|
.personnal-friends-list .friend .friends-name,
 | 
						|
.friends-list-ro .friend .friends-name {
 | 
						|
	display: inline-block;
 | 
						|
	white-space: normal;
 | 
						|
	max-width: 100px;
 | 
						|
	text-align: left;
 | 
						|
	vertical-align: middle;
 | 
						|
}
 | 
						|
 | 
						|
.personnal-friends-list .friend {
 | 
						|
	margin-bottom: 10px;
 | 
						|
}
 | 
						|
 | 
						|
.personnal-friends-list .friend .friends-name {
 | 
						|
	width: 200px;
 | 
						|
	max-width: 200px;
 | 
						|
}
 | 
						|
 | 
						|
.personnal-friends-list .friend .friends-actions {
 | 
						|
	display: inline-block;
 | 
						|
	width: 250px;
 | 
						|
} |