/* Make the signup form text larger */
.simple_form .lead.signup-request {
    font-size: 180%;
    line-height: 1.1em;
}

.simple_form .lead.signup-request strong {
    color: red;
}


.simple_form .lead.signup-request a {
    color: #8c8dff;
}

.simple_form.new_user textarea {
    height: 12em;
}

/* Collapsed posts can be up to 250px high, but do not expand them more than their native height */
.status__wrapper.collapsed .status__content, .status.collapsed .status__content {
    max-height: 250px;
    height: auto;
}

/* muted + collapsed posts (e.g. collapsed notifications) collapse down to 20px */
.status__wrapper.collapsed.muted .status__content, .status.collapsed.muted .status__content {
    max-height: 20px;
}

/* Give muted + collapsed posts a somewhat brighter font so the contrast isn't too low */
.muted.collapsed .status__content, .muted.collapsed .status__content__text, .muted.collapsed .status__content a, .muted.collapsed .status__content p, .muted.collapsed .status__display-name strong {
  color: #7882a0;
}

/* Shrink the collapse fadeout gradient to the bottom half */
.status.collapsed .status__content::after {
  top: 50%;
}

/* Shrink the collapse fadeout gradient to the bottom half */
.status__wrapper.collapsed .status__content {
  -webkit-mask-image: linear-gradient(#000 60%,transparent);
  mask-image: linear-gradient(#000 60%,transparent);
}


