1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231 |
- body {
- background-color: rgb(51, 51, 51);
- }
- #animation-curve-editor {
- font-family: acumin-pro-condensed;
- .last {
- margin-left: 3px;
- }
- .icon {
- width: 40px;
- height: 40px;
- &.medium {
- width: 30px;
- height: 30px;
- }
- &.small {
- width: 20px;
- height: 20px;
- }
- &.babylon-logo {
- background-image: url('./assets/babylonLogo.svg');
- background-repeat: no-repeat;
- background-color: transparent;
- background-size: contain;
- }
- &.close {
- background-image: url('./assets/closeWindowIcon.svg');
- background-repeat: no-repeat;
- background-color: transparent;
- background-size: contain;
- color: white;
- cursor: pointer;
- }
- &.auto-tangent {
- background-image: url('./assets/autoTangentIcon.svg');
- background-repeat: no-repeat;
- background-color: transparent;
- background-size: contain;
- color: white;
- cursor: pointer;
- &:hover {
- background-color: #888888;
- }
- &:active {
- background-color: #555555;
- }
- }
- &.break-tangent {
- background-image: url('./assets/breakTangentIcon.svg');
- background-repeat: no-repeat;
- background-color: transparent;
- background-size: contain;
- color: white;
- cursor: pointer;
- &:hover {
- background-color: #888888;
- }
- &:active {
- background-color: #555555;
- }
- }
- &.flat-tangent {
- background-image: url('./assets/flatTangentIcon.svg');
- background-repeat: no-repeat;
- background-color: transparent;
- background-size: contain;
- color: white;
- cursor: pointer;
- &:hover {
- background-color: #888888;
- }
- &:active {
- background-color: #555555;
- }
- }
- &.frame {
- background-image: url('./assets/frameIcon.svg');
- background-repeat: no-repeat;
- background-color: transparent;
- background-size: contain;
- color: white;
- cursor: pointer;
- &:hover {
- background-color: #888888;
- }
- &:active {
- background-color: #555555;
- }
- }
- &.linear-tangent {
- background-image: url('./assets/linearTangentIcon.svg');
- background-repeat: no-repeat;
- background-color: transparent;
- background-size: contain;
- color: white;
- cursor: pointer;
- &:hover {
- background-color: #888888;
- }
- &:active {
- background-color: #555555;
- }
- }
- &.unify-tangent {
- background-image: url('./assets/unifyTangentIcon.svg');
- background-repeat: no-repeat;
- background-color: transparent;
- background-size: contain;
- color: white;
- cursor: pointer;
- &:hover {
- background-color: #888888;
- }
- &:active {
- background-color: #555555;
- }
- }
- &.add-animation {
- background-image: url('./assets/addAnimationIcon.svg');
- background-repeat: no-repeat;
- background-color: transparent;
- background-size: contain;
- color: white;
- cursor: pointer;
- }
- &.animation-bullet {
- background-image: url('./assets/animationBulletIcon.svg');
- background-repeat: no-repeat;
- background-color: transparent;
- background-size: contain;
- color: white;
- }
- &.animation-delete {
- background-image: url('./assets/animationDeleteIcon.svg');
- background-repeat: no-repeat;
- background-color: transparent;
- background-size: contain;
- color: white;
- cursor: pointer;
- }
- &.animation-edit {
- background-image: url('./assets/editIcon.svg');
- background-repeat: no-repeat;
- background-color: transparent;
- background-size: contain;
- color: white;
- }
- &.animation-end {
- background-image: url('./assets/animationEndIcon.svg');
- background-repeat: no-repeat;
- background-color: transparent;
- background-size: contain;
- color: white;
- width: 20px;
- cursor: pointer;
- background-position: center;
- }
- &.animation-lastkey {
- background-image: url('./assets/animationLastKeyIcon.svg');
- background-repeat: no-repeat;
- background-color: transparent;
- background-size: contain;
- width: 20px;
- cursor: pointer;
- background-position: center;
- &:hover {
- background-image: url('./assets/animationLastKeyHoverIcon.svg');
- }
- }
- &.animation-nextkey {
- background-image: url('./assets/animationNextKeyIcon.svg');
- background-repeat: no-repeat;
- background-color: transparent;
- background-size: contain;
- width: 20px;
- cursor: pointer;
- background-position: center;
- &:hover {
- background-image: url('./assets/animationNextKeyHoverIcon.svg');
- }
- }
- &.animation-options {
- background-image: url('./assets/animationOptionsIcon.svg');
- background-repeat: no-repeat;
- background-color: transparent;
- background-size: contain;
- color: white;
- cursor: pointer;
- background-position: center;
- &:hover {
- background-color: #888888 !important;
- }
- }
- &.animation-playfwd {
- background-image: url('./assets/animationPlayFwdIcon.svg');
- background-repeat: no-repeat;
- background-color: transparent;
- background-size: contain;
- color: white;
- background-position: center;
- width: 20px;
- cursor: pointer;
- background-position: center;
- &:hover {
- background-image: url('./assets/animationPlayFwdHoverIcon.svg');
- }
- }
- &.animation-playrev {
- background-image: url('./assets/animationPlayRevIcon.svg');
- background-repeat: no-repeat;
- background-color: transparent;
- background-size: contain;
- color: white;
- background-position: center;
- width: 20px;
- cursor: pointer;
- background-position: center;
- &:hover {
- background-image: url('./assets/animationPlayRevHoverIcon.svg');
- }
- }
- &.animation-start {
- background-image: url('./assets/animationStartIcon.svg');
- background-repeat: no-repeat;
- background-color: transparent;
- background-size: contain;
- color: white;
- background-position: center;
- cursor: pointer;
- background-position: center;
- width: 20px;
- }
- &.animation-stop {
- background-image: url('./assets/animationStopIcon.svg');
- background-repeat: no-repeat;
- background-color: transparent;
- background-size: contain;
- color: white;
- background-position: center;
- cursor: pointer;
- background-position: center;
- width: 20px;
- margin-left: 10px;
- }
- &.animation-triangle {
- background-image: url('./assets/animationTriangleIcon.svg');
- background-repeat: no-repeat;
- background-color: transparent;
- background-size: contain;
- color: white;
- }
- &.key-active {
- background-image: url('./assets/keyActiveIcon.svg');
- background-repeat: no-repeat;
- background-color: transparent;
- background-size: contain;
- color: white;
- }
- &.key-inactive {
- background-image: url('./assets/keyInactiveIcon.svg');
- background-repeat: no-repeat;
- background-color: transparent;
- background-size: contain;
- color: white;
- }
- &.key-selected {
- background-image: url('./assets/keySelectedIcon.svg');
- background-repeat: no-repeat;
- background-color: transparent;
- background-size: contain;
- color: white;
- }
- &.loop-active {
- background-image: url('./assets/loopActiveIcon.svg');
- background-repeat: no-repeat;
- background-color: transparent;
- background-size: contain;
- color: white;
- cursor: pointer;
- }
- &.loop-inactive {
- background-image: url('./assets/loopInactiveIcon.svg');
- background-repeat: no-repeat;
- background-color: transparent;
- background-size: contain;
- color: white;
- cursor: pointer;
- }
- &.move {
- background-image: url('./assets/moveIcon.svg');
- background-repeat: no-repeat;
- background-color: transparent;
- background-size: contain;
- color: white;
- }
- &.save {
- background-image: url('./assets/saveIcon.svg');
- background-repeat: no-repeat;
- background-color: transparent;
- background-size: contain;
- color: white;
- cursor: pointer;
- }
- &.load {
- background-image: url('./assets/loadIcon.svg');
- background-repeat: no-repeat;
- background-color: transparent;
- background-size: contain;
- color: white;
- cursor: pointer;
- }
- &.checked {
- background-image: url('./assets/checkboxCheckedIcon.svg');
- background-repeat: no-repeat;
- background-color: transparent;
- background-size: contain;
- color: white;
- }
- &.unchecked {
- background-image: url('./assets/checkboxDefaultIcon.svg');
- background-repeat: no-repeat;
- background-color: transparent;
- background-size: contain;
- color: white;
- }
- &.new-key {
- background-image: url('./assets/newKeyIcon.svg');
- background-repeat: no-repeat;
- background-color: transparent;
- background-size: contain;
- color: white;
- &:hover {
- background-color: #888888;
- }
- &:active {
- background-color: #555555;
- }
- }
- &.scale {
- background-image: url('./assets/scaleIcon.svg');
- background-repeat: no-repeat;
- background-color: transparent;
- background-size: contain;
- color: white;
- }
- &.scrollbar-handle {
- background-image: url('./assets/scrollbarHandleIcon.svg');
- background-repeat: no-repeat;
- background-color: transparent;
- background-size: contain;
- color: white;
- }
- }
- .hidden {
- display: none;
- }
- .notification-area {
- position: absolute;
- width: auto;
- left: 0.53em;
- bottom: 60px;
- background-color: rgb(199, 50, 40);
- padding: 16px;
- border-radius: 5px;
- color: white;
- right: 2em;
- z-index: 1000;
- button {
- position: absolute;
- top: 3px;
- right: 10px;
- padding: 0;
- cursor: pointer;
- background: transparent;
- border: 0;
- -webkit-appearance: none;
- color: #000;
- text-shadow: 0 1px 0 #fff;
- opacity: 0.4;
- font-size: 1.8em;
- }
- }
- .header {
- display: flex;
- padding: 9px;
- background: #333333;
- color: white;
- height: 1.3em;
- justify-content: space-between;
- align-items: center;
- padding-left: 12px;
- padding-right: 12px;
- .title {
- text-transform: uppercase;
- }
- .close {
- grid-column: 2;
- display: grid;
- align-items: center;
- justify-items: center;
- cursor: pointer;
- }
- }
- .actions-wrapper {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: center;
- background: #333333;
- height: 40px;
- .close {
- position: absolute;
- right: 1px;
- }
- .title-container {
- display: flex;
- justify-content: stretch;
- align-items: center;
- color: white;
- width: 220px;
- .title {
- font-size: 15pt;
- }
- }
- .buttons-container {
- display: flex;
- padding-left: 10px;
- }
- .action-input {
- display: flex;
- justify-content: center;
- flex-direction: row;
- align-items: center;
- margin-right: 8px;
- input {
- width: 75px;
- height: 24px;
- color: white;
- font-size: 12px;
- background: none;
- border: none;
- background-color: black;
- padding: 6px;
- &:focus {
- outline: solid 1px #ccc;
- }
- }
- }
- }
- .content {
- display: flex;
- align-items: flex-start;
- justify-content: flex-start;
- flex-direction: column;
- height: 462px;
- .row {
- width: 1024px;
- height: 427px;
- display: flex;
- flex-flow: row;
- background-color: #333333;
- }
- .row-bottom {
- display: flex;
- align-items: stretch;
- justify-content: flex-start;
- flex-direction: row;
- width: 1024px;
- height: 45px;
- background-color: #333333;
- .timeline {
- width: 100vw;
- background: #333333;
- display: flex;
- align-items: center;
- justify-content: stretch;
- height: 2.5rem;
- .display-line {
- width: 75vw;
- height: 40px;
- overflow: hidden;
- margin-right: 0px;
- padding-left: 10px;
- padding-right: 10px;
- &::-webkit-scrollbar {
- height: 0.4em;
- }
- &::-webkit-scrollbar-track {
- box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
- }
- &::-webkit-scrollbar-thumb {
- background-color: cornflowerblue;
- outline: 1px solid slategrey;
- }
- }
- .input-frame {
- width: 60px;
- margin-left: 10px;
- margin-right: 10px;
- input {
- text-align: center;
- width: 60px;
- border: none;
- background: #222222;
- color: white;
- height: 25px;
- font-size: 15px;
- font-family: acumin-pro-condensed;
- &::-webkit-inner-spin-button,
- &::-webkit-outer-spin-button {
- appearance: none;
- -webkit-appearance: none;
- margin: 0;
- }
- }
- }
- .timeline-scroll-handle {
- display: flex;
- flex-direction: row;
- height: 25px;
- margin: 10px;
- .scroll-handle {
- width: 703px;
- background-color: #222222;
- height: 25px;
- display: flex;
- align-items: center;
- .handle {
- display: flex;
- flex-direction: row;
- height: 20px;
- background-color: #666666;
- justify-content: space-between;
- position: absolute;
- .scrollbar {
- cursor: pointer;
- width: 100%;
- }
- .left-grabber,
- .right-grabber {
- display: flex;
- align-items: center;
- cursor: pointer;
- }
- .left-grabber {
- padding-left: 3px;
- }
- .right-grabber {
- padding-right: 3px;
- }
- .grabber {
- background-color: #333333;
- width: 2px;
- height: 16px;
- margin-right: 2px;
- }
- .text {
- margin-left: 10px;
- margin-right: 10px;
- font-size: 12px;
- font-family: acumin-pro-condensed;
- color: #222222;
- }
- }
- }
- }
- .timeline-wrapper {
- margin-top: -40px;
- margin-left: -2px;
- }
- .controls {
- display: flex;
- justify-content: center;
- align-items: center;
- padding-left: 46px;
- padding-right: 46px;
- margin-left: 10px;
- .stop-container {
- width: 40px;
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- }
- .input-frame input {
- width: 3em;
- }
- }
- }
- }
- .animation-list {
- margin: 10px;
- margin-top: 0;
- margin-bottom: 0;
- background: #111111;
- color: white;
- width: 210px;
- .controls-header {
- display: flex;
- background-color: #252525;
- .input-fps {
- display: flex;
- align-items: center;
- width: 52px;
- padding-left: 4px;
- .numeric {
- input {
- width: 52px;
- font-size: 12px;
- height: 22px;
- background-color: black;
- border: none;
- color: white;
- text-align: center;
- &::-webkit-inner-spin-button,
- &::-webkit-outer-spin-button {
- appearance: none;
- -webkit-appearance: none;
- margin: 0;
- }
- font-family: acumin-pro-condensed;
- }
- }
- p {
- color: white;
- font-size: 12px;
- margin: 0px;
- position: relative;
- right: 17px;
- line-height: 20px;
- height: 20px;
- margin-top: -2px;
- }
- }
- }
- .load-container {
- flex-direction: column;
- height: 377px;
- padding-top: 10px;
- .load-server {
- font-size: 12px;
- display: flex;
- background-color: #222222;
- padding-left: 10px;
- height: 20px;
- margin-top: 277px;
- p {
- margin: 0px;
- }
- }
- .load-browse {
- margin-top: 10px;
- display: flex;
- p {
- height: 20px;
- margin: 0px;
- font-size: 12px;
- width: 65px;
- text-align: right;
- margin-right: 10px;
- }
- .buttonLine {
- margin-left: 0px;
- margin-top: 0px;
- button {
- margin-top: 0px;
- font-family: acumin-pro-condensed;
- padding-top: 1px;
- }
- }
- }
- .buttonLine {
- width: 60px;
- padding: 0px;
- display: block;
- margin-left: 75px;
- height: 20px;
- margin-top: 10px;
- button {
- border: none;
- font-size: 12px;
- margin: 0px;
- width: 60px;
- background-color: #444;
- height: 20px;
- font-family: acumin-pro-condensed;
- padding-top: 1px;
- }
- }
- .textInputLine {
- display: flex;
- .label {
- font-size: 12px;
- width: 75px;
- text-align: center;
- font-family: acumin-pro-condensed;
- }
- .value {
- input {
- width: 127px;
- background-color: #444444;
- border: none;
- height: 20px;
- font-family: acumin-pro-condensed;
- padding-bottom: 6px;
- padding-left: 6px;
- }
- }
- }
- }
- .save-container {
- flex-direction: column;
- height: 377px;
- padding-top: 10px;
- .item-list {
- height: 317px;
- ul {
- list-style: none;
- padding-left: 10px;
- margin: 0px;
- label {
- font-size: 12px;
- font-family: acumin-pro-condensed;
- display: flex;
- align-content: center;
- align-items: center;
- input {
- margin: 0px;
- margin-right: 5px;
- }
- }
- }
- }
- .save-server {
- font-size: 12px;
- display: flex;
- background-color: #222222;
- padding-left: 10px;
- height: 20px;
- p {
- margin: 0px;
- }
- }
- .save-buttons {
- margin-top: 10px;
- display: flex;
- justify-content: space-evenly;
- margin-bottom: 10px;
- p {
- height: 20px;
- margin: 0px;
- font-size: 12px;
- width: 65px;
- text-align: right;
- margin-right: 10px;
- }
- .buttonLine {
- margin-left: 0px;
- margin-top: 0px;
- button {
- margin-top: 0px;
- font-family: acumin-pro-condensed;
- padding-top: 1px;
- }
- }
- }
- .buttonLine {
- width: 80px;
- padding: 0px;
- display: block;
- margin-left: 75px;
- height: 20px;
- margin-top: 10px;
- button {
- border: none;
- font-size: 12px;
- margin: 0px;
- width: 80px;
- background-color: #444444;
- height: 20px;
- font-family: acumin-pro-condensed;
- padding-top: 1px;
- }
- }
- .textInputLine {
- display: flex;
- .label {
- font-size: 12px;
- width: 75px;
- text-align: center;
- font-family: acumin-pro-condensed;
- }
- .value {
- input {
- width: 127px;
- background-color: #444444;
- border: none;
- height: 20px;
- font-family: acumin-pro-condensed;
- }
- }
- }
- }
- .new-animation {
- display: block;
- position: absolute;
- background-color: #111111;
- height: 377px;
- z-index: 10;
- .sub-header {
- display: flex;
- align-items: start;
- width: 250px;
- justify-content: space-between;
- .title {
- margin: 0px;
- font-size: 15pt;
- }
- }
- .sub-content {
- background-color: #111111;
- padding: 10px;
- display: inline-grid;
- grid-template-columns: 63px 127px;
- grid-template-rows: repeat(6, 30px);
- font-size: 12px;
- .confirm-buttons {
- grid-column-start: 2;
- .buttonLine {
- button {
- width: 60px;
- height: 20px;
- background-color: rgb(68, 68, 68);
- color: white;
- font-size: 12px;
- line-height: 11px;
- margin: 5px;
- font-size: 10px;
- font-family: acumin-pro-condensed;
- border: none;
- }
- }
- }
- }
- }
- .object-tree {
- background-color: #111111;
- ul {
- list-style: none;
- padding-left: 0px;
- padding: 0px;
- margin: 0px;
- li.property {
- &.sub {
- height: auto;
- }
- &:before {
- content: '';
- background: none;
- }
- height: 20px;
- display: flex;
- flex-wrap: wrap;
- font-size: 12px;
- p {
- display: inline;
- font-size: 12px;
- margin: 0px;
- flex: 8;
- cursor: pointer;
- }
- .spacer {
- width: 20px;
- height: 20px;
- }
- .animation-bullet {
- background-image: url('./assets/animationBulletIcon.svg');
- background-repeat: no-repeat;
- background-color: transparent;
- background-size: contain;
- color: #7a4ece;
- width: 10px;
- margin-left: 18px;
- margin-right: 2px;
- height: 20px;
- background-position-y: 5px;
- }
- .animation-arrow {
- width: 30px;
- background-image: url('./assets/animationTriangleIcon.svg');
- background-repeat: no-repeat;
- background-color: transparent;
- background-size: 10px;
- background-position-y: center;
- background-position-x: 18px;
- cursor: pointer;
- &.flip {
- transform: rotate(180deg);
- background-position: 2px 50%;
- }
- }
- &.active {
- background-color: #444444;
- }
- .handle-indicator {
- width: 30px;
- &.show {
- display: block;
- background-image: url('./assets/keySelectedIcon.svg');
- background-repeat: no-repeat;
- background-color: transparent;
- background-size: 10px;
- color: white;
- background-position-x: 9px;
- background-position-y: 5px;
- }
- &.hide {
- display: block;
- }
- }
- ul.sub-list {
- flex-grow: 1;
- flex-shrink: 1;
- flex-basis: 100%;
- .property {
- cursor: pointer;
- }
- }
- }
- }
- }
- .label-input {
- display: contents;
- label {
- text-align: right;
- }
- input {
- margin-left: 5px;
- height: 20px;
- background-color: #444444;
- border: none;
- color: white;
- padding-left: 3px;
- font-size: 10px;
- &:focus {
- border-radius: 0px;
- outline: 1px solid #ccc;
- }
- font-family: acumin-pro-condensed;
- }
- select {
- height: 20px;
- margin-left: 5px;
- font-size: 10px;
- background-color: #444444;
- border: none;
- color: white;
- &:focus {
- border-radius: 0px;
- outline: 1px solid #ccc;
- }
- font-family: acumin-pro-condensed;
- }
- }
- }
- .sample-chart {
- .linear {
- .draggable {
- cursor: move;
- }
- }
- }
- .graph-chart {
- overflow: hidden;
- scroll-behavior: smooth;
- background-color: rgb(17, 17, 17);
- height: 364px;
- width: 782px;
- .linear {
- overflow: visible;
- border: 0px solid white;
- height: 362px;
- width: 780px;
- outline: none;
- svg {
- overflow: visible;
- }
- &:focus {
- outline-color: transparent;
- }
- line {
- stroke: #555555;
- stroke-width: 0.2;
- }
- text {
- fill: #555555;
- font-family: 'acumin-pro-condensed';
- }
- .control-point {
- display: none;
- }
- .control-point.active {
- display: inline;
- stroke: #e9db1e;
- stroke-width: 0.2;
- }
- }
- .playhead-container {
- position: relative;
- }
- .playhead-wrapper {
- left: -13px;
- bottom: 366px;
- position: relative;
- }
- .playhead-scrollable {
- width: 100px;
- height: 33px;
- position: absolute;
- top: 335px;
- left: -39px;
- }
- .playhead-handle {
- position: relative;
- top: 340px;
- width: 22px;
- height: 30px;
- .playhead {
- width: 22px;
- background-color: transparent;
- color: #555555;
- text-align: center;
- font-size: 12px;
- position: absolute;
- top: 1px;
- cursor: pointer;
- }
- .playhead-circle {
- background-color: #ffffff;
- width: 22px;
- height: 22px;
- border-radius: 50%;
- position: absolute;
- top: 0;
- }
- }
- .playhead-line {
- width: 1px;
- height: 341px;
- background-color: #ffffff;
- position: absolute;
- margin-left: 9.5px;
- }
- }
- }
- .buttonLine {
- height: 30px;
- display: grid;
- align-items: center;
- justify-items: stretch;
- input[type='file'] {
- display: none;
- }
- .file-upload {
- background: #222222;
- border: 1px solid rgb(51, 122, 183);
- margin: 5px 10px 5px 10px;
- color: white;
- padding: 4px 5px;
- opacity: 0.9;
- cursor: pointer;
- text-align: center;
- }
- .file-upload:hover {
- opacity: 1;
- }
- .file-upload:active {
- transform: scale(0.98);
- transform-origin: 0.5 0.5;
- }
- button {
- background: #222222;
- border: 1px solid rgb(51, 122, 183);
- margin: 5px 10px 5px 10px;
- color: white;
- padding: 4px 5px;
- opacity: 0.9;
- cursor: pointer;
- }
- button:hover {
- opacity: 1;
- }
- button:active {
- background: #282828;
- }
- button:focus {
- border: 1px solid rgb(51, 122, 183);
- outline: 0px;
- }
- }
- }
|