2018-10-20 01:30:38 +08:00
|
|
|
@import '/imports/ui/stylesheets/mixins/focus';
|
|
|
|
@import '/imports/ui/stylesheets/variables/_all';
|
|
|
|
@import "/imports/ui/components/modal/simple/styles";
|
|
|
|
|
2018-11-10 06:03:25 +08:00
|
|
|
:root{
|
|
|
|
--modal-margin: 3rem;
|
|
|
|
}
|
|
|
|
|
2018-10-20 01:30:38 +08:00
|
|
|
.title {
|
2018-11-09 02:55:12 +08:00
|
|
|
color: var(--color-gray-dark);
|
2018-10-20 01:30:38 +08:00
|
|
|
font-weight: 400;
|
2018-11-10 06:03:25 +08:00
|
|
|
font-size: var(--lg-padding-x);
|
2018-10-20 01:30:38 +08:00
|
|
|
margin: 0;
|
2018-11-10 06:03:25 +08:00
|
|
|
margin-bottom: var(--jumbo-padding-y);
|
2018-10-20 01:30:38 +08:00
|
|
|
text-align: center !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column;
|
|
|
|
}
|
|
|
|
|
2018-11-10 06:03:25 +08:00
|
|
|
.container{
|
|
|
|
margin: var(--modal-margin);
|
|
|
|
margin-top: var(--indicator-padding);
|
|
|
|
margin-bottom: var(--lg-padding-x);
|
|
|
|
}
|
|
|
|
|
|
|
|
.subHeader{
|
|
|
|
color: var(--color-gray-label);
|
|
|
|
font-size: var(--font-size-base);
|
|
|
|
margin-bottom: var(--jumbo-padding-y) !important;
|
2018-10-20 01:30:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.modal {
|
|
|
|
@extend .modal;
|
2018-11-10 06:03:25 +08:00
|
|
|
padding: var(--jumbo-padding-y);
|
2018-10-20 01:30:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.overlay {
|
|
|
|
@extend .overlay;
|
|
|
|
}
|
|
|
|
|
|
|
|
.description{
|
|
|
|
text-align: center;
|
2018-11-10 06:03:25 +08:00
|
|
|
color: var(--color-gray);
|
2018-10-20 01:30:38 +08:00
|
|
|
}
|
|
|
|
.row {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row;
|
|
|
|
flex-grow: 1;
|
|
|
|
justify-content: space-between;
|
2018-11-10 06:03:25 +08:00
|
|
|
margin-bottom: var(--md-padding-x);
|
2018-10-20 01:30:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.col {
|
|
|
|
display: flex;
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-basis: 0;
|
2018-11-10 06:03:25 +08:00
|
|
|
margin-right: var(--md-padding-x);
|
2018-10-20 01:30:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.label {
|
2018-11-09 02:55:12 +08:00
|
|
|
color: var(--color-gray-label);
|
2018-11-10 06:03:25 +08:00
|
|
|
font-size: var(--font-size-small);
|
|
|
|
margin-bottom: var(--lg-padding-y);
|
2018-10-20 01:30:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.formElement {
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column;
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pullContentRight {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
flex-flow: row;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title {
|
|
|
|
font-weight: bold;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bold{
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btnContainer {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
}
|
|
|
|
|
|
|
|
.closeBtn {
|
|
|
|
position: relative;
|
2018-11-09 02:55:12 +08:00
|
|
|
background-color: var(--color-white);
|
2018-10-20 01:30:38 +08:00
|
|
|
|
|
|
|
i {
|
2018-11-09 02:55:12 +08:00
|
|
|
color: var(--color-gray-light);
|
2018-10-20 01:30:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&:focus,
|
|
|
|
&:hover{
|
2018-11-09 02:55:12 +08:00
|
|
|
background-color: var(--color-gray-lighter);
|
2018-10-20 01:30:38 +08:00
|
|
|
i{
|
2018-11-09 02:55:12 +08:00
|
|
|
color: var(--color-gray);
|
2018-10-20 01:30:38 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.header {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
border: none;
|
2018-11-10 06:03:25 +08:00
|
|
|
line-height: var(--jumbo-padding-y);
|
2018-10-20 01:30:38 +08:00
|
|
|
}
|