1
0
Fork 0
mirror of synced 2024-07-03 05:31:38 +12:00
appwrite/public/styles/comps/avatar.less

69 lines
972 B
Plaintext
Raw Normal View History

2020-04-12 18:03:00 +12:00
.avatar-container {
position: relative;
.corner {
position: absolute;
bottom: -3px;
.func-end(-3px);
}
}
2019-05-09 18:54:39 +12:00
.avatar {
width: 60px;
height: 60px;
border-radius: 50%;
2020-02-14 02:49:05 +13:00
background: var(--config-color-background-focus);
2019-05-09 18:54:39 +12:00
display: inline-block;
overflow: hidden;
box-shadow: 0 0 6px rgba(0, 0, 0, 0.09);
position: relative;
z-index: 1;
opacity: 1!important;
&:before {
content: "";
position: absolute;
width: 100%;
height: 100%;
z-index: 0;
2020-02-14 02:49:05 +13:00
background: var(--config-color-background-focus);
2019-05-09 18:54:39 +12:00
}
&.inline {
display: inline-block;
vertical-align: middle;
}
&.trans {
background: transparent;
}
2020-04-12 18:03:00 +12:00
.no-shadow {
box-shadow: none;
}
2019-05-09 18:54:39 +12:00
&.xs {
2020-04-12 18:03:00 +12:00
width: 30px;
height: 30px;
}
&.xxs {
2019-05-09 18:54:39 +12:00
width: 20px;
height: 20px;
}
&.small {
width: 50px;
height: 50px;
}
&.big {
width: 100px;
height: 100px;
}
&.huge {
width: 150px;
height: 150px;
}
}