mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-03-21 18:04:39 -05:00
* From scrims * wip * wip * wip * wip * WIP * wip * wip * wip * wip * wip * import ordering
136 lines
2.2 KiB
CSS
136 lines
2.2 KiB
CSS
.plus__container {
|
|
max-width: 24rem;
|
|
margin-inline: auto;
|
|
}
|
|
|
|
.plus__suggested-info-text {
|
|
color: var(--text-lighter);
|
|
font-size: var(--fonts-lg);
|
|
}
|
|
|
|
.plus__top-container {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.plus__top-container.content-centered {
|
|
justify-content: center;
|
|
}
|
|
|
|
.plus__radios {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: var(--s-5);
|
|
}
|
|
|
|
.plus__radio-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: var(--s-1);
|
|
}
|
|
|
|
.plus__radio-label {
|
|
font-size: var(--fonts-sm);
|
|
margin-block-end: 0;
|
|
}
|
|
|
|
.plus__users-count {
|
|
color: var(--text-lighter);
|
|
font-size: var(--fonts-xxs);
|
|
}
|
|
|
|
.plus__suggested-user-info {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--s-2);
|
|
}
|
|
|
|
.plus__comment {
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
.plus__comment-button {
|
|
max-width: 12rem;
|
|
margin-inline-start: auto;
|
|
}
|
|
|
|
.plus__view-comments-action {
|
|
color: var(--text-lighter);
|
|
font-size: var(--fonts-xs);
|
|
font-weight: var(--semi-bold);
|
|
}
|
|
|
|
.plus__comment-time {
|
|
color: var(--text-lighter);
|
|
font-size: var(--fonts-xxs);
|
|
}
|
|
|
|
.plus__delete-button {
|
|
display: inline;
|
|
}
|
|
|
|
.plus__modal-select {
|
|
max-width: 6rem;
|
|
}
|
|
|
|
.plus__modal-textarea {
|
|
width: 100% !important;
|
|
resize: none;
|
|
}
|
|
|
|
.plus-voting__container {
|
|
max-width: 32rem;
|
|
margin-inline: auto;
|
|
}
|
|
|
|
.plus-voting__vote-button {
|
|
width: 4rem;
|
|
}
|
|
|
|
.plus-voting__vote-button.downvote {
|
|
border-color: var(--theme-error-transparent);
|
|
color: var(--theme-error);
|
|
outline-color: var(--theme-error);
|
|
}
|
|
|
|
.plus-voting__submit-button {
|
|
display: flex;
|
|
width: 12rem;
|
|
height: 2.5rem;
|
|
margin-block-start: var(--s-6);
|
|
margin-inline: auto;
|
|
}
|
|
|
|
.plus-voting__progress {
|
|
width: 100%;
|
|
}
|
|
|
|
.plus-voting__alert {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: var(--rounded);
|
|
background-color: var(--theme-success-transparent);
|
|
color: var(--text);
|
|
font-size: var(--fonts-sm);
|
|
font-weight: var(--semi-bold);
|
|
gap: var(--s-2);
|
|
line-height: 0.75;
|
|
margin-inline: auto;
|
|
padding-block: var(--s-1);
|
|
padding-inline: var(--s-3) var(--s-4);
|
|
}
|
|
|
|
.plus-voting__alert > svg {
|
|
height: 1.75rem;
|
|
fill: var(--theme-success);
|
|
}
|
|
|
|
.plus-voting__bio-header {
|
|
font-size: var(--fonts-lg);
|
|
padding-block-end: var(--s-2);
|
|
}
|