Spaces:
Runtime error
Runtime error
File size: 2,330 Bytes
8fd7a1d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 |
@import "../../css/colors.css";
@import "../../css/units.css";
.modal-content {
width: 600px;
}
.body {
background: $ui-modal-background;
padding: 1.5rem 2.25rem;
}
.visualization-container {
display: flex;
justify-content: space-around;
}
.meter-container, .waveform-container {
background: $ui-primary;
border: 1px solid $ui-black-transparent;
border-radius: 5px;
padding: 3px;
/* Force these to be on their own render layer because they update often */
transform: translateZ(0);
}
.meter-container {
margin-right: 5px;
height: 180px;
}
.waveform-container {
display: flex;
justify-content: space-around;
align-items: center;
width: 100%;
height: 180px;
position: relative;
}
.help-text {
margin: 10px auto 0;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
color: rgb(167, 170, 181);
font-size: 0.95rem;
font-weight: 500;
}
.playing-text {
color: $looks-secondary;
}
.recording-text {
color: $red-primary;
}
.main-button-row {
display: flex;
justify-content: space-around;
margin-top: 15px;
}
.main-button-row button {
padding: 0.5rem 0.75rem;
border-radius: 0.25rem;
background: transparent;
border: none;
}
.main-button-row button:disabled {
opacity: 0.25;
}
.main-button-row button:active, .main-button-row button:focus {
outline: none;
}
.button-row {
font-weight: bolder;
text-align: right;
display: flex;
justify-content: space-between;
}
.button-row button {
padding: 0.75rem 1rem;
border-radius: 0.25rem;
background: white;
border: 1px solid $ui-black-transparent;
font-weight: 600;
font-size: 0.85rem;
color: $looks-secondary;
}
.button-row button.ok-button {
background: $looks-secondary;
border: $looks-secondary;
color: white;
}
.button-row button + button {
margin-left: 0.5rem;
}
.main-button {
text-align: center;
}
/* Increase specificity to make sure this wins out over normalize.css */
svg.record-button {
overflow: visible;
}
.record-button-circle {
fill: $red-primary;
stroke: $red-tertiary;
}
.record-button-circle-outline {
fill: $red-primary;
opacity: 0.2;
transition: 0.1s;
}
[dir="rtl"] .rerecord-button img {
transform: scaleX(-1);
}
|