mirror of
https://github.com/documize/community.git
synced 2025-08-06 05:55:25 +02:00
26 lines
386 B
SCSS
26 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: 30px 0 0 0;
|
||
|
}
|
||
|
|
||
|
> .ack {
|
||
|
font-size: 1.2rem;
|
||
|
font-weight: 600;
|
||
|
color: $color-green;
|
||
|
}
|
||
|
}
|