2016-07-06 22:11:37 +00:00
|
|
|
@import '../constants/colors';
|
|
|
|
|
|
|
|
.response-pane {
|
|
|
|
position: relative;
|
|
|
|
|
2017-01-23 22:41:31 +00:00
|
|
|
.overlay {
|
2016-07-06 22:11:37 +00:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
2016-11-27 21:42:38 +00:00
|
|
|
z-index: 100;
|
2016-07-06 22:11:37 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
overflow: hidden;
|
2016-10-02 22:10:43 +00:00
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
& > * {
|
|
|
|
max-width: 30rem;
|
|
|
|
}
|
2016-07-06 22:11:37 +00:00
|
|
|
|
2017-01-20 22:06:26 +00:00
|
|
|
.btn {
|
2017-01-23 22:41:31 +00:00
|
|
|
border-color: var(--hl-xl);
|
2016-09-13 18:31:07 +00:00
|
|
|
|
|
|
|
&:hover {
|
2017-01-23 22:41:31 +00:00
|
|
|
background: var(--hl-sm);
|
|
|
|
border-color: var(--hl);
|
2016-09-13 18:31:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-06 22:11:37 +00:00
|
|
|
i.fa {
|
2017-01-20 22:06:26 +00:00
|
|
|
font-size: 4rem;
|
2016-07-06 22:11:37 +00:00
|
|
|
}
|
|
|
|
}
|
2017-01-27 01:00:27 +00:00
|
|
|
|
|
|
|
.response-pane__notify {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
overflow: hidden;
|
|
|
|
text-align: center;
|
|
|
|
height: 100%;
|
|
|
|
max-width: 30rem;
|
|
|
|
margin: auto;
|
|
|
|
}
|
2016-07-06 22:11:37 +00:00
|
|
|
}
|