2017-03-25 00:01:35 +08:00
|
|
|
@import "../../../stylesheets/variables/_all";
|
2016-10-12 03:10:06 +08:00
|
|
|
|
2017-03-23 04:52:41 +08:00
|
|
|
.center {
|
2017-03-23 04:10:49 +08:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
padding-top: 2rem;
|
2016-10-12 03:10:06 +08:00
|
|
|
}
|
|
|
|
|
2017-03-23 04:52:41 +08:00
|
|
|
.closeBtn {
|
2017-03-23 04:10:49 +08:00
|
|
|
background-color: #FFFFFF;
|
|
|
|
border: none;
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
i {
|
|
|
|
color: $color-gray-light;
|
|
|
|
}
|
2016-10-12 03:10:06 +08:00
|
|
|
}
|
|
|
|
|
2017-03-23 04:10:49 +08:00
|
|
|
Button.audioBtn {
|
|
|
|
i{
|
|
|
|
color: #3c5764;
|
|
|
|
}
|
2016-10-12 03:10:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Modifies the audio button icon colour
|
2017-03-23 04:52:41 +08:00
|
|
|
Button.audioBtn span:first-child {
|
2017-03-23 04:10:49 +08:00
|
|
|
color: #1b3c4b;
|
|
|
|
background-color: #f1f8ff;
|
2016-10-12 03:10:06 +08:00
|
|
|
box-shadow: none;
|
2017-03-23 04:10:49 +08:00
|
|
|
border: 5px solid #f1f8ff;
|
2016-10-12 03:10:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// When hovering over a button of class audioBtn, change the border colour of first span-child
|
2017-03-23 04:52:41 +08:00
|
|
|
Button.audioBtn:hover span:first-child {
|
2016-10-12 03:10:06 +08:00
|
|
|
border: 5px solid $color-primary;
|
2017-03-23 04:10:49 +08:00
|
|
|
background-color: #f1f8ff;
|
2016-10-12 03:10:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Modifies the button label text
|
2017-03-23 04:52:41 +08:00
|
|
|
Button.audioBtn span:last-child {
|
2017-03-23 04:10:49 +08:00
|
|
|
color: black;
|
|
|
|
font-size: 0.8rem;
|
2017-03-24 22:24:23 +08:00
|
|
|
font-weight: 600;
|
2017-03-23 04:10:49 +08:00
|
|
|
}
|
|
|
|
|
2017-03-23 04:52:41 +08:00
|
|
|
Button.audioBtn:first-of-type {
|
2017-03-23 04:10:49 +08:00
|
|
|
margin-right: 5%;
|
2016-10-12 03:10:06 +08:00
|
|
|
}
|
|
|
|
|
2017-03-23 04:52:41 +08:00
|
|
|
Button.audioBtn:last-of-type {
|
2017-03-23 04:10:49 +08:00
|
|
|
margin-left: 5%;
|
2016-10-12 03:10:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.inner {
|
2017-03-23 04:52:41 +08:00
|
|
|
padding: 1em;
|
|
|
|
min-height: 20rem;
|
2016-10-12 03:10:06 +08:00
|
|
|
}
|
2016-10-13 03:55:02 +08:00
|
|
|
|
2017-03-23 04:52:41 +08:00
|
|
|
.backBtn {
|
2016-10-25 00:01:50 +08:00
|
|
|
border: none;
|
2017-03-23 04:10:49 +08:00
|
|
|
i {
|
|
|
|
color: $color-primary;
|
|
|
|
}
|
2016-10-13 03:55:02 +08:00
|
|
|
}
|
|
|
|
|
2017-03-23 04:52:41 +08:00
|
|
|
.topRow {
|
2017-03-23 04:10:49 +08:00
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
2016-10-13 03:55:02 +08:00
|
|
|
}
|
2016-12-06 00:21:55 +08:00
|
|
|
|
2017-03-23 04:52:41 +08:00
|
|
|
.audioNote {
|
2016-12-23 03:32:26 +08:00
|
|
|
color: $color-text;
|
|
|
|
display: inline-block;
|
2017-03-23 04:10:49 +08:00
|
|
|
font-size: 0.9rem;
|
2016-12-23 03:32:26 +08:00
|
|
|
}
|
|
|
|
|
2017-03-23 04:52:41 +08:00
|
|
|
.title {
|
2017-03-23 04:10:49 +08:00
|
|
|
text-align: center;
|
|
|
|
margin: auto;
|
|
|
|
color: black;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 1.3rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column;
|
|
|
|
padding: 2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.row {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row;
|
|
|
|
flex-grow: 1;
|
|
|
|
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;
|
|
|
|
font-size: 0.7rem;
|
|
|
|
font-weight: 600;
|
|
|
|
margin-bottom: 0.3rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.formElement {
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column;
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.select {
|
|
|
|
background-color: #fff;
|
|
|
|
border: 0;
|
|
|
|
border-bottom: 0.1rem solid $color-gray-lighter;
|
|
|
|
color: $color-gray-light;
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
.enterAudio {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
margin-right: 2rem;
|
|
|
|
}
|
2017-03-24 06:50:30 +08:00
|
|
|
|
|
|
|
.chooseAudio {
|
|
|
|
position:absolute;
|
|
|
|
left:50%;
|
|
|
|
transform: translate(-50%, 0);
|
|
|
|
}
|
|
|
|
|