misuzu/assets/less/classes/usercard.less

138 lines
2.9 KiB
Text
Raw Normal View History

.usercard {
width: 300px;
transition: box-shadow .5s;
z-index: 1;
color: #fff;
text-shadow: 0 1px 4px #111;
2018-10-22 21:05:22 +00:00
box-shadow: 0 1px 2px #000;
2019-01-03 18:02:38 +00:00
background-color: var(--accent-colour);
overflow: hidden;
&:hover {
2018-10-22 21:05:22 +00:00
box-shadow: 0 1px 4px #000;
z-index: 2;
}
&__background {
position: absolute;
top: 0;
2019-01-03 18:02:38 +00:00
left: 0;
width: 100%;
2019-01-03 18:02:38 +00:00
height: 100%;
background: var(--accent-colour);
}
&__container {
height: 100%;
width: 100%;
pointer-events: none;
display: flex;
flex-direction: column;
background-color: var(--background-colour-translucent-8);
}
&__details {
margin: 5px;
display: flex;
justify-content: center;
flex-direction: column;
}
&__avatar {
width: 50px;
height: 50px;
flex: 0 0 auto;
margin: 5px;
}
&__main {
display: flex;
height: 60px;
}
&__actions {
display: flex;
&__background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
mask-image: linear-gradient(0deg, var(--background-colour) 0, transparent 100%);
-webkit-mask-image: linear-gradient(0deg, var(--background-colour) 0, transparent 100%);
background: var(--accent-colour) var(--background-pattern);
background-blend-mode: multiply;
}
}
&__action {
width: 32px;
height: 32px;
line-height: 32px;
font-size: 1.5em;
border-radius: 2px;
margin: 5px;
margin-right: 0;
color: #fff;
cursor: pointer;
pointer-events: initial;
transition: background-color .2s;
text-align: center;
&:hover,
&:focus {
background-color: fade(#fff, 20%);
}
&:active {
background-color: fade(#fff, 10%);
}
}
&__name {
2018-09-23 14:42:15 +00:00
color: var(--user-colour);
text-shadow: 0 0 5px var(--user-colour);
font-size: 1.4em;
line-height: 1.4em;
2018-08-16 02:02:27 +00:00
text-overflow: ellipsis;
max-width: 220px;
overflow: hidden;
}
&__info {
font-size: .9em;
display: flex;
align-items: baseline;
vertical-align: middle;
}
&__item {
margin-left: 2px;
color: inherit;
text-decoration: none;
2018-08-15 20:29:18 +00:00
flex: 0 0 auto;
2018-08-16 02:02:27 +00:00
text-overflow: ellipsis;
max-width: 150px;
overflow: hidden;
white-space: nowrap;
&--active {
pointer-events: auto;
}
&--country {
align-items: baseline;
vertical-align: middle;
margin-right: 4px;
}
&--donator {
//background-image: url('/images/tenshi.png');
width: 37px;
height: 11px;
font-size: 0;
}
}
}