2020-09-02 02:46:13 +08:00
|
|
|
@import "/imports/ui/stylesheets/variables/breakpoints";
|
2017-12-12 21:08:43 +08:00
|
|
|
|
|
|
|
.parent {
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal {
|
|
|
|
display: flex;
|
2018-10-19 04:37:14 +08:00
|
|
|
padding: var(--lg-padding-x);
|
|
|
|
background-color: var(--color-white);
|
2017-12-12 21:08:43 +08:00
|
|
|
flex-direction: column;
|
2018-10-19 04:37:14 +08:00
|
|
|
border-radius: var(--border-radius);
|
2017-12-12 21:08:43 +08:00
|
|
|
max-width: 95vw;
|
2017-12-14 03:00:16 +08:00
|
|
|
width: 600px;
|
2017-12-12 21:08:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.text {
|
2018-10-19 04:37:14 +08:00
|
|
|
color: var(--color-text);
|
2017-12-12 21:08:43 +08:00
|
|
|
font-weight: normal;
|
2018-10-19 04:37:14 +08:00
|
|
|
padding: var(--line-height-computed) 0;
|
2017-12-12 21:08:43 +08:00
|
|
|
@include mq($small-only) {
|
2018-10-19 04:37:14 +08:00
|
|
|
font-size: var(--font-size-small);
|
|
|
|
}
|
2017-12-12 21:08:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title {
|
|
|
|
margin: 0;
|
2018-10-19 04:37:14 +08:00
|
|
|
font-size: var(--font-size-large);
|
|
|
|
font-weight: var(--headings-font-weight);
|
2017-12-12 21:08:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.button {
|
|
|
|
@include mq($small-only) {
|
2018-10-19 04:37:14 +08:00
|
|
|
font-size: var(--font-size-base);
|
2017-12-12 21:08:43 +08:00
|
|
|
}
|
|
|
|
}
|
2018-05-09 00:30:00 +08:00
|
|
|
|
2018-05-10 02:07:40 +08:00
|
|
|
.textarea {
|
2018-05-09 00:30:00 +08:00
|
|
|
resize: none;
|
|
|
|
margin: 1rem auto;
|
2018-05-10 02:07:40 +08:00
|
|
|
width: 100%;
|
2018-05-09 00:30:00 +08:00
|
|
|
&::placeholder {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
}
|