2017-09-26 04:28:36 +08:00
|
|
|
@import "/imports/ui/stylesheets/variables/_all";
|
|
|
|
|
|
|
|
.form {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column;
|
|
|
|
margin-top: 1.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.audioNote {
|
|
|
|
@include mq($small-only) {
|
|
|
|
font-size: 0.8rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.row {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row;
|
|
|
|
justify-content: space-between;
|
|
|
|
margin-bottom: 0.7rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.col {
|
|
|
|
display: flex;
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-basis: 0;
|
|
|
|
margin-right: 1rem;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-right: 0;
|
|
|
|
padding-right: 0.1rem;
|
|
|
|
padding-left: 4rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.labelSmall {
|
|
|
|
color: black;
|
2017-09-29 21:38:10 +08:00
|
|
|
font-size: 0.85rem;
|
2017-09-26 04:28:36 +08:00
|
|
|
font-weight: 600;
|
2017-09-29 21:38:10 +08:00
|
|
|
margin-bottom: 0.5rem;
|
2017-09-26 04:28:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.formElement {
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column;
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.select {
|
|
|
|
background-color: #fff;
|
|
|
|
border: 0;
|
|
|
|
border-bottom: 0.1rem solid $color-text;
|
|
|
|
color: $color-text;
|
|
|
|
width: 100%;
|
|
|
|
// appearance: none;
|
|
|
|
height: 1.75rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.audioMeter {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pullContentRight {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
flex-flow: row;
|
|
|
|
}
|
|
|
|
|
|
|
|
.verticalLine {
|
|
|
|
color: #f3f6f9;
|
|
|
|
border-left: 1px solid;
|
|
|
|
height: 5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.backBtn {
|
|
|
|
margin-right: 0.5rem;
|
|
|
|
border: none;
|
|
|
|
|
|
|
|
@include mq($small-only) {
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.enterAudio {
|
|
|
|
margin-top: 1.5rem;
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chooseAudio {
|
|
|
|
position:absolute;
|
|
|
|
left:50%;
|
|
|
|
transform: translate(-50%, 0);
|
|
|
|
}
|
2017-09-29 21:38:10 +08:00
|
|
|
|
|
|
|
.calling:after {
|
|
|
|
overflow: hidden;
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: bottom;
|
|
|
|
-webkit-animation: ellipsis steps(4,end) 900ms infinite;
|
|
|
|
animation: ellipsis steps(4,end) 900ms infinite;
|
|
|
|
content: "\2026"; /* ascii code for the ellipsis character */
|
|
|
|
width: 0;
|
|
|
|
margin-right: 1.25em;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes ellipsis {
|
|
|
|
to {
|
|
|
|
width: 1.25em;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@-webkit-keyframes ellipsis {
|
|
|
|
to {
|
|
|
|
width: 1.25em;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
}
|