blob: 7056c9efe22507dd7bf3beb8dc743a84330fdb00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*
Plugin: BuddyPress First Letter Avatar
Plugin website: http://dev49.net
*/
/* BuddyPress First Letter Avatar */
.bpfla.round-avatars {
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
/* Uncomment this for a fancy shadow around your avatars
(you can also change the shadow parameters!):
-webkit-box-shadow: 0 0 4px rgba(0, 0, 0, .5);
-moz-box-shadow: 0 0 4px rgba(0, 0, 0, .5);
box-shadow: 0 0 4px rgba(0, 0, 0, .5);
*/
}
|