190 lines
2.9 KiB
SCSS
190 lines
2.9 KiB
SCSS
@import "/imports/ui/stylesheets/variables/_all";
|
|
@import "/imports/ui/components/modal/simple/styles";
|
|
|
|
.overlay {
|
|
@extend .overlay;
|
|
}
|
|
|
|
.modal {
|
|
@extend .modal;
|
|
}
|
|
|
|
.center {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
padding: 2rem 0;
|
|
}
|
|
|
|
.closeBtnWrapper {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.closeBtn {
|
|
background-color: $color-white;
|
|
border: none;
|
|
i {
|
|
color: $color-gray-light;
|
|
}
|
|
|
|
&:focus,
|
|
&:hover{
|
|
background-color: #0a5eac;
|
|
i{
|
|
color: $color-white;
|
|
}
|
|
}
|
|
}
|
|
|
|
Button.audioBtn {
|
|
i{
|
|
color: #3c5764;
|
|
}
|
|
}
|
|
|
|
// Modifies the audio button icon colour
|
|
Button.audioBtn span:first-child {
|
|
color: #1b3c4b;
|
|
background-color: #f1f8ff;
|
|
box-shadow: none;
|
|
border: 5px solid #f1f8ff;
|
|
}
|
|
|
|
// When hovering over a button of class audioBtn, change the border colour of first span-child
|
|
Button.audioBtn:hover span:first-child,
|
|
Button.audioBtn:focus span:first-child {
|
|
border: 5px solid $color-primary;
|
|
background-color: #f1f8ff;
|
|
}
|
|
|
|
// Modifies the button label text
|
|
Button.audioBtn span:last-child {
|
|
color: black;
|
|
font-size: 0.8rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
Button.audioBtn:first-of-type {
|
|
margin-right: 5%;
|
|
}
|
|
|
|
Button.audioBtn:last-of-type {
|
|
margin-left: 5%;
|
|
}
|
|
|
|
.backBtn {
|
|
border: none;
|
|
i {
|
|
color: $color-link;
|
|
}
|
|
|
|
&,
|
|
&:focus,
|
|
&:hover {
|
|
i {
|
|
color: $color-white;
|
|
}
|
|
}
|
|
}
|
|
|
|
.topRow {
|
|
align-items: center;
|
|
display: flex;
|
|
}
|
|
|
|
.audioNote {
|
|
color: $color-text;
|
|
display: inline-block;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.title {
|
|
text-align: center;
|
|
margin: auto;
|
|
color: black;
|
|
font-weight: 400;
|
|
font-size: 1.3rem;
|
|
display: block;
|
|
}
|
|
|
|
.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 {
|
|
@extend %customSelectFocus;
|
|
background-color: $color-white;
|
|
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;
|
|
}
|
|
|
|
.enterAudio {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
margin-right: 2rem;
|
|
}
|
|
|
|
.chooseAudio {
|
|
position:absolute;
|
|
left:50%;
|
|
transform: translate(-50%, 0);
|
|
}
|