52 lines
746 B
SCSS
52 lines
746 B
SCSS
.voteDisclaimer {
|
|
width: 60%;
|
|
padding-bottom: 60px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.voteContainer {
|
|
padding: 50px 0 0 0;
|
|
justify-content: center;
|
|
}
|
|
|
|
.voteSection {
|
|
background-color: var(--link-color);
|
|
transition: 0.5s ease;
|
|
}
|
|
|
|
.vote {
|
|
width: 33%;
|
|
min-width: 220px;
|
|
padding-bottom: 50px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
display: block;
|
|
margin: 0 5px;
|
|
}
|
|
|
|
.vote div {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.vote h2 {
|
|
text-align: center;
|
|
color: white;
|
|
padding-bottom: 15px;
|
|
}
|
|
|
|
.vote .button-outer {
|
|
background-color: white;
|
|
color: black;
|
|
text-shadow: none;
|
|
}
|
|
|
|
.available-button-outer {
|
|
border: 2px solid #4caf50;
|
|
}
|
|
|
|
.not-available-button-outer {
|
|
border: 2px solid #ffa433;
|
|
}
|