Files
lucent-laravel/front/public/css/avatar.css
T
2024-10-10 19:55:21 +03:00

24 lines
388 B
CSS

.avatar {
/* Center the content */
display: inline-block;
vertical-align: middle;
/* Used to position the content */
position: relative;
/* Colors */
color: #fff;
/* Rounded border */
border-radius: 50%;
}
.avatar__letters {
/* Center the content */
left: 50%;
position: absolute;
top: 50%;
transform: translate(-50%, -50%);
}