nodebb-plugin-whoisin
Version:
A NodeBB plugin to embed a simple button to RSVP in a post
59 lines (57 loc) • 1.15 kB
text/less
div.whoisin {
padding-bottom: 5rem;
div.participants {
float: left;
img.whoisin-avatar {
opacity: 0;
-webkit-animation: new-avatar-animation .3s linear forwards;
-ms-animation: new-avatar-animation .3s linear forwards;
animation: new-avatar-animation .3s linear forwards;
width: 5rem;
height: 5rem;
}
@-webkit-keyframes new-avatar-animation {
from {
opacity: 0;
transform: scale(7,7);
}
to {
opacity: 1;
transform: scale(1,1);
}
}
@-ms-keyframes new-avatar-animation {
from {
opacity: 0;
transform: scale(7,7);
}
to {
opacity: 1;
transform: scale(1,1);
}
}
@keyframes new-avatar-animation {
from {
opacity: 0;
transform: scale(7,7);
}
to {
opacity: 1;
transform: scale(1,1);
}
}
}
div.whoisin-btn-wrapper, button.iamin, button.iamnotin {
transition-property: opacity, height;
transition-duration: 400ms, 400ms;
height: 5rem;
opacity: 1;
float: left;
}
div.whoisin-btn-wrapper button.hidden {
transition-property: opacity, height;
transition-duration: 400ms, 400ms;
height: 0;
opacity: 0;
}
}