mirror of
https://github.com/documize/community.git
synced 2025-08-04 21:15:24 +02:00
25 lines
386 B
SCSS
25 lines
386 B
SCSS
.vote-box {
|
|
margin: 50px 0;
|
|
padding: 30px 50px;
|
|
text-align: center;
|
|
max-width: 400px;
|
|
border: 1px dotted $color-border;
|
|
background: $color-off-white;
|
|
@include border-radius(3px);
|
|
|
|
> .prompt {
|
|
font-size: 1.5rem;
|
|
font-weight: 600;
|
|
color: $color-dark;
|
|
}
|
|
|
|
> .buttons {
|
|
margin: 20px 0 0 0;
|
|
}
|
|
|
|
> .ack {
|
|
font-size: 1.2rem;
|
|
font-weight: 600;
|
|
color: $color-green;
|
|
}
|
|
}
|