1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-23 15:19:42 +02:00
documize/gui/app/styles/widget/widget-avatar.scss

58 lines
996 B
SCSS
Raw Normal View History

2016-07-07 18:54:16 -07:00
.avatar {
color: $color-white;
background-color: $color-gray;
@include border-radius(20px);
2016-11-20 13:41:43 -08:00
@include ease-in();
padding: 10px 0 0 0;
2016-07-07 18:54:16 -07:00
letter-spacing: 1px;
text-align: center;
height: 35px;
width: 35px;
}
.avatar-large {
color: $color-white;
background-color: $color-gray;
@include border-radius(100px);
2016-11-20 13:41:43 -08:00
@include ease-in();
2016-07-07 18:54:16 -07:00
height: 100px;
width: 100px;
font-size: 30px;
padding: 28px;
letter-spacing: 1px;
text-align: center;
margin: 0 auto;
2016-11-20 13:41:43 -08:00
}
.avatar-picker {
background-color: $color-off-white;
@include border-radius(20px);
@include ease-in();
padding: 7px 0 0 0;
letter-spacing: 1px;
text-align: center;
height: 35px;
width: 35px;
cursor: pointer;
&:hover {
> i {
color: $color-link;
}
}
> i {
color: $color-gray;
font-size: 1.4rem;
@include ease-in();
}
}
.avatar-remover {
&:hover {
color: $color-white;
background-color: $color-red;
cursor: pointer;
}
2016-07-07 18:54:16 -07:00
}