2018-01-31 00:32:37 +08:00
|
|
|
@import '/imports/ui/stylesheets/mixins/focus';
|
2019-04-08 22:22:22 +08:00
|
|
|
@import '/imports/ui/stylesheets/mixins/_indicators';
|
2018-01-31 00:32:37 +08:00
|
|
|
@import '/imports/ui/stylesheets/variables/_all';
|
2016-08-24 02:04:49 +08:00
|
|
|
|
2017-01-27 23:41:11 +08:00
|
|
|
.title {
|
2018-10-19 04:37:14 +08:00
|
|
|
color: var(--color-gray-dark);
|
2017-01-27 23:41:11 +08:00
|
|
|
font-weight: 400;
|
|
|
|
font-size: 1.3rem;
|
|
|
|
margin: 0;
|
|
|
|
margin-bottom: 1.5rem;
|
2016-08-24 02:04:49 +08:00
|
|
|
}
|
|
|
|
|
2018-01-31 00:32:37 +08:00
|
|
|
.subtitle {
|
|
|
|
font-size: 0.9rem;
|
2019-08-28 01:43:12 +08:00
|
|
|
margin-bottom: 1rem;
|
2018-01-31 00:32:37 +08:00
|
|
|
}
|
|
|
|
|
2017-01-27 23:41:11 +08:00
|
|
|
.form {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column;
|
2016-08-24 02:04:49 +08:00
|
|
|
}
|
|
|
|
|
2017-01-27 23:41:11 +08:00
|
|
|
.row {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row;
|
|
|
|
flex-grow: 1;
|
|
|
|
justify-content: space-between;
|
|
|
|
margin-bottom: 0.7rem;
|
2016-08-24 02:04:49 +08:00
|
|
|
}
|
|
|
|
|
2017-01-27 23:41:11 +08:00
|
|
|
.col {
|
|
|
|
display: flex;
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-basis: 0;
|
2016-08-24 02:04:49 +08:00
|
|
|
|
2017-01-27 23:41:11 +08:00
|
|
|
&:last-child {
|
2019-05-14 21:15:54 +08:00
|
|
|
padding-right: 0;
|
|
|
|
padding-left: 1rem;
|
|
|
|
|
|
|
|
[dir="rtl"] & {
|
|
|
|
padding-right: 0.1rem;
|
|
|
|
padding-left: 0;
|
|
|
|
}
|
2017-01-27 23:41:11 +08:00
|
|
|
}
|
2016-08-24 02:04:49 +08:00
|
|
|
}
|
|
|
|
|
2020-03-19 22:19:40 +08:00
|
|
|
.colHeading {
|
|
|
|
display: block;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 0.9rem;
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2017-01-27 23:41:11 +08:00
|
|
|
.label {
|
2018-10-19 04:37:14 +08:00
|
|
|
color: var(--color-gray-label);
|
2017-01-27 23:41:11 +08:00
|
|
|
font-size: 0.9rem;
|
|
|
|
margin-bottom: 0.5rem;
|
2016-08-24 02:04:49 +08:00
|
|
|
}
|
|
|
|
|
2017-01-27 23:41:11 +08:00
|
|
|
.labelSmall {
|
2018-10-19 04:37:14 +08:00
|
|
|
color: var(--color-link);
|
2017-01-27 23:41:11 +08:00
|
|
|
font-size: 0.7rem;
|
|
|
|
margin-bottom: 0.3rem;
|
2016-08-24 23:06:51 +08:00
|
|
|
}
|
|
|
|
|
2017-01-27 23:41:11 +08:00
|
|
|
.formElement {
|
2017-02-16 02:49:40 +08:00
|
|
|
position: relative;
|
2017-01-27 23:41:11 +08:00
|
|
|
display: flex;
|
|
|
|
flex-flow: column;
|
|
|
|
flex-grow: 1;
|
2016-08-24 02:04:49 +08:00
|
|
|
}
|
|
|
|
|
2017-01-27 23:41:11 +08:00
|
|
|
.select {
|
2018-10-19 04:37:14 +08:00
|
|
|
@include elementFocus(var(--color-primary));
|
2017-11-02 00:01:55 +08:00
|
|
|
|
2018-10-19 04:37:14 +08:00
|
|
|
background-color: var(--color-white);
|
|
|
|
border: var(--border-size) solid var(--color-white);
|
|
|
|
border-radius: var(--border-size);
|
|
|
|
border-bottom: 0.1rem solid var(--color-gray-lighter);
|
|
|
|
color: var(--color-gray-label);
|
2016-08-24 02:04:49 +08:00
|
|
|
width: 100%;
|
2017-01-27 23:41:11 +08:00
|
|
|
height: 1.75rem;
|
2017-09-16 03:25:45 +08:00
|
|
|
padding: 1px;
|
2019-04-08 22:22:22 +08:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
@include highContrastOutline();
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
@include highContrastOutline();
|
|
|
|
outline-style: solid;
|
|
|
|
}
|
2016-08-24 02:04:49 +08:00
|
|
|
}
|
|
|
|
|
2017-01-27 23:41:11 +08:00
|
|
|
.pullContentRight {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
flex-flow: row;
|
2016-12-23 16:26:22 +08:00
|
|
|
}
|
|
|
|
|
2017-01-27 23:41:11 +08:00
|
|
|
.pullContentCenter {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
flex-flow: row;
|
2016-12-24 05:27:49 +08:00
|
|
|
}
|
|
|
|
|
2017-01-27 23:41:11 +08:00
|
|
|
.separator {
|
|
|
|
margin: 2.5rem 0;
|
2018-10-19 04:37:14 +08:00
|
|
|
border: 1px solid var(--color-gray-lighter);
|
2017-01-27 23:41:11 +08:00
|
|
|
opacity: 0.25;
|
2016-12-24 05:27:49 +08:00
|
|
|
}
|
|
|
|
|
2017-01-27 23:41:11 +08:00
|
|
|
.bold {
|
|
|
|
font-weight: bold;
|
2016-12-24 05:27:49 +08:00
|
|
|
}
|
|
|
|
|
2017-01-27 23:41:11 +08:00
|
|
|
.spacedLeft {
|
2019-05-14 21:15:54 +08:00
|
|
|
margin: 0 0 0 1rem;
|
|
|
|
|
|
|
|
[dir="rtl"] & {
|
|
|
|
margin: 0 1rem 0 0;
|
|
|
|
}
|
2016-12-23 16:26:22 +08:00
|
|
|
}
|