123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224 |
- /* Voice Graph */
- * {
- --voice-graph-z-index: 0;
- }
- voice-graph-2d {
- display: block;
- --padding: 2em;
- }
- voice-graph-2d > canvas {
- position: relative;
- height: 100%;
- width: 100%;
- float: left;
- }
- voice-graph-2d {
- padding: var(--padding);
- overflow: hidden;
- }
- voice-graph-2d > .axis-labels {
- display: flex;
- justify-content: space-between;
- position: absolute;
- line-height: var(--padding);
- }
- voice-graph-2d > .axis-labels > .title {
- font-weight: bold;
- }
- voice-graph-2d > .x.axis-labels {
- top: 0px;
- left: var(--padding);
- right: var(--padding);
- }
- voice-graph-2d > .x-opposite.axis-labels {
- bottom: 0px;
- left: var(--padding);
- right: var(--padding);
- }
- .current-value {
- z-index: calc(var(--voice-graph-z-index) + 3);
- text-shadow: var(--body-background) 0px 1px, var(--body-background) 0px -1px, var(--body-background) 1px 0px, var(--body-background) -1px 0px;
- }
- voice-graph-2d > .y-opposite.axis-labels {
- top: var(--padding);
- bottom: var(--padding);
- left: 0px;
- writing-mode: vertical-rl;
- text-orientation: mixed;
- }
- voice-graph-2d > .y.axis-labels {
- top: var(--padding);
- bottom: var(--padding);
- right: 0px;
- writing-mode: vertical-lr;
- text-orientation: sideways-left;
- }
- voice-graph-2d > .overlay {
- position: absolute;
- top: var(--padding);
- left: var(--padding);
- bottom: var(--padding);
- right: var(--padding);
- overflow: visible;
- }
- voice-graph-2d > .overlay > .marker {
- display: online-block;
- height: 1.5em;
- width: 1.5em;
- border-radius: 50%;
- background: black;
- border: .1em solid white;
- position: absolute;
- z-index: calc(var(--voice-graph-z-index) + 2);
- color: white;
- text-align: center;
- line-height: 1em;
- /*transition: all .1s;*/
- top: calc(-.75em);
- left: calc(-.75em);
- }
- .marker:hover {
- opacity: 1;
- }
- .custom-widgets button.marker:after {
- box-shadow: 0px;
- display: none;
- }
- /*voice-graph-2d > .overlay > .marker:hover {*/
- voice-graph-2d > .overlay > .marker.preview {
- }
- voice-graph-2d > .overlay > .marker.playing{
- border: 2px solid yellow;
- }
- voice-graph-2d > .overlay > .x.hairline {
- content: '';
- border-left: .1em dotted black;
- display: block;
- position: absolute;
- z-index: calc(var(--voice-graph-z-index) + 1);
- height: 100%;
- top: 0px;
- left: -1px;
- transition: .1s all;
- }
- voice-graph-2d > .overlay > .hairline.hidden {
- opacity: 0;
- }
- voice-graph-2d > .x-opposite.axis-labels > .current-value {
- position: absolute;
- width: calc(2 * var(--padding)) ;
- text-align: center;
- bottom: 0px;
- opacity: 0;
- left: calc(-1 * var(--padding));
- transition: .1s all;
- }
- voice-graph-2d > .overlay > .y.hairline {
- content: '';
- border-top: .1em dotted black;
- display: block;
- position: absolute;
- z-index: calc(var(--voice-graph-z-index) + 2);
- width: 100%;
- left: 0px;
- top: -1px;
- transition: .1s all;
- }
- voice-graph-2d > .y-opposite.axis-labels > .current-value {
- position: absolute;
- height: calc(2 * var(--padding));
- text-align: center;
- transform: rotate(180deg);
- transform-origin: center;
- left: 0px;
- bottom: calc(-1 * var(--padding));
- opacity: 0;
- transition: .1s all;
- }
-
- voice-graph-2d .marker > .infobox {
- position: absolute;
- width: 18ch;
- left: calc(0.5em - 9ch);
- top: calc(-1 * var(--padding));
- pointer-events: none;
- text-shadow: rgba(0,0,0,.5) 1px 1px, rgba(0,0,0,.5) -1px -1px, rgba(0,0,0,.5) 1px -1px, rgba(0,0,0,.5) -1px 1px;
- }
- .ratings-bar {
- box-sizing: border-box;
- display: flex;
- width: 100%;
- overflow: hidden;
- border-radius: 5px 5px 5px 5px;
- }
- .ratings-bar > span {
- padding: 2px 0px 2px 0px;
- display: inline-block;
- box-sizing: border-box;
- overflow: hidden;
- font-size: small;
- line-height: 1em;
- }
- .infobox .strongly-agree {
- background: #43db20;
- color: white;
- border-radius: 0px 5px 5px 0px;
- }
- .infobox .agree {
- background: #a5db99;
- color: white;
- }
- .infobox .disagree {
- background: #e28888;
- color: white;
- }
- .infobox .strongly-disagree{
- background: #e22222;
- color: white;
- border-radius: 5px 0px 0px 5px;
- }
- .clef {
- position: absolute;
- left: 0px;
- width: var(--padding);
- /*z-index: calc(var(--voice-graph-z-index) + 2);*/
- text-align: center;
- transform-origin: center center;
- transform: scale(2);
- padding: 0px;
- margin-bottom: -.5em;
- }
- .clef.treble { top: var(--padding); }
- .clef.bass { bottom: var(--padding); }
- .instrument {
- position: absolute;
- bottom: calc(var(--padding) * .1);
- height: calc(var(--padding) * .8);
- }
- .instrument svg {
- height: 100%;
- }
- .instrument.flute {
- right: var(--padding);
- }
- .instrument.tuba {
- left: var(--padding);
- }
|