mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-05 20:56:13 -05:00
136 lines
2.0 KiB
CSS
136 lines
2.0 KiB
CSS
.container {
|
|
max-width: 24rem;
|
|
margin-inline: auto;
|
|
}
|
|
|
|
.suggestedInfoText {
|
|
color: var(--color-text-high);
|
|
font-size: var(--fonts-lg);
|
|
}
|
|
|
|
.topContainer {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.topContainerCentered {
|
|
justify-content: center;
|
|
}
|
|
|
|
.radios {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: var(--s-5);
|
|
}
|
|
|
|
.radioContainer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: var(--s-1);
|
|
}
|
|
|
|
.radioLabel {
|
|
font-size: var(--fonts-sm);
|
|
margin-block-end: 0;
|
|
}
|
|
|
|
.usersCount {
|
|
color: var(--color-text-high);
|
|
font-size: var(--fonts-xxs);
|
|
}
|
|
|
|
.suggestedUserInfo {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--s-2);
|
|
}
|
|
|
|
.comment {
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
.commentButton {
|
|
max-width: 12rem;
|
|
margin-inline-start: auto;
|
|
}
|
|
|
|
.viewCommentsAction {
|
|
color: var(--color-text-high);
|
|
font-size: var(--fonts-xs);
|
|
font-weight: var(--semi-bold);
|
|
}
|
|
|
|
.commentTime {
|
|
color: var(--color-text-high);
|
|
font-size: var(--fonts-xxs);
|
|
}
|
|
|
|
.deleteButton {
|
|
display: inline;
|
|
}
|
|
|
|
.modalSelect {
|
|
max-width: 6rem;
|
|
}
|
|
|
|
.modalTextarea {
|
|
width: 100% !important;
|
|
resize: none;
|
|
}
|
|
|
|
.votingContainer {
|
|
max-width: 32rem;
|
|
margin-inline: auto;
|
|
}
|
|
|
|
.votingVoteButton {
|
|
width: 4rem;
|
|
}
|
|
|
|
.votingVoteButtonDownvote {
|
|
border-color: var(--color-error);
|
|
color: var(--color-error);
|
|
outline-color: var(--color-error);
|
|
}
|
|
|
|
.votingSubmitButton {
|
|
display: flex;
|
|
width: 12rem;
|
|
height: 2.5rem;
|
|
margin-block-start: var(--s-6);
|
|
margin-inline: auto;
|
|
}
|
|
|
|
.votingProgress {
|
|
width: 100%;
|
|
}
|
|
|
|
.votingAlert {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: var(--rounded);
|
|
background-color: var(--color-success-high);
|
|
color: var(--color-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);
|
|
}
|
|
|
|
.votingAlert > svg {
|
|
height: 1.75rem;
|
|
fill: var(--color-success);
|
|
}
|
|
|
|
.votingBioHeader {
|
|
font-size: var(--fonts-lg);
|
|
padding-block-end: var(--s-2);
|
|
}
|