bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/polling/styles.scss

101 lines
1.9 KiB
SCSS
Raw Normal View History

2016-07-28 05:50:35 +08:00
@import "../../stylesheets/variables/_all";
2018-10-15 22:36:26 +08:00
$poll-width: 18rem;
2018-10-16 03:05:50 +08:00
$max-btn-width: 9em;
2018-10-15 22:36:26 +08:00
$col-amount: 2;
.overlay {
position: absolute;
height: 100vh;
width: 100vw;
z-index: 1015;
pointer-events: none;
2018-10-26 02:19:25 +08:00
@media screen and (max-width: 479px), screen and (max-height: 479px) {
background-color: rgba(0, 0, 0, 0.349);
}
}
2016-07-28 05:50:35 +08:00
.pollingContainer {
pointer-events:auto;
2018-10-15 22:36:26 +08:00
width: $poll-width;
2018-10-12 23:05:53 +08:00
position: absolute;
2018-10-26 02:19:25 +08:00
z-index: 1016;
2018-10-26 01:44:03 +08:00
border: 1px solid var(--color-off-white);
border-radius: var(--border-radius);
box-shadow: var(--color-gray-dark) 0px 0px var(--lg-padding-y);
align-items: center;
2018-10-12 23:05:53 +08:00
text-align: center;
font-weight: 600;
2018-10-26 01:44:03 +08:00
padding: var(--md-padding-y);
background-color: var(--color-white);
bottom: var(--sm-padding-x);
right: var(--sm-padding-x);
2016-07-28 05:50:35 +08:00
}
.pollingTitle {
2018-10-26 02:19:25 +08:00
color: var(--color-white);
white-space: nowrap;
2018-10-26 01:44:03 +08:00
padding-bottom: var(--md-padding-y);
padding-top: var(--md-padding-y);
2018-10-26 02:19:25 +08:00
@media screen and (max-height: 479px), screen and (max-width: 479px) {
bottom: auto;
right: auto;
top: 50%;
left: 50%;
margin-right: -50%;
transform: translate(-50%, -50%);
}
2016-07-28 05:50:35 +08:00
}
.pollingAnswers {
display: grid;
2018-10-15 22:36:26 +08:00
grid-template-columns: repeat($col-amount, 1fr);
2018-10-12 23:05:53 +08:00
> pollButtonWrapper:nth-child(odd) {
grid-column: 1;
}
> pollButtonWrapper:nth-child(even) {
2018-10-15 22:36:26 +08:00
grid-column: $col-amount;
2018-10-12 23:05:53 +08:00
}
@media screen and (max-width: 479px) {
grid-template-columns: repeat(1, 1fr);
> pollButtonWrapper:nth-child(odd) {
grid-column: 1;
2018-09-09 13:23:33 +08:00
}
> pollButtonWrapper:nth-child(even) {
grid-column: 1;
}
}
z-index: 1;
2016-07-28 05:50:35 +08:00
}
.pollButtonWrapper {
text-align: center;
2018-10-26 01:44:03 +08:00
padding: var(--sm-padding-y);
width: 100%;
}
.pollingButton {
width: 100%;
2018-10-16 03:05:50 +08:00
max-width: $max-btn-width;
@media screen and (max-width: 479px) {
max-width: none;
}
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.hidden {
display: none;
2016-07-28 05:50:35 +08:00
}