﻿:root
{
    /* Colors */
    --ui-editor-borders-color: rgba(48, 52, 54, 1);
    --ui-editor-major-panel-color: rgba(10, 10, 10, 0.9);
    --ui-editor-minor-panel-color: rgba(40, 40, 40, 0.5);
    /* Sizes */
    --ui-editor-layout-top-size: 50px;
    --ui-editor-layout-right-size: 400px;
    /* Font Sizes */
    --ui-editor-font-size-element: 14px;
}

::-webkit-scrollbar
{
    width: 12px;
}

::-webkit-scrollbar-track
{
    background: var(--ui-editor-borders-color);
}

::-webkit-scrollbar-thumb
{
    background: #888;
}

    ::-webkit-scrollbar-thumb:hover
    {
        background: #555;
    }

.editor-canvas-hint
{
    position: absolute;
    top: 12px;
    left: 50%;
    right: 50%;
    transform: translate(-50%, 0);
    padding: 6px 10px;
    font-size: 28px;
    text-align: center;
    background-color: transparent;
    color: white;
    border-radius: 4px;
    pointer-events: none;
    width: 300px;
    z-index: 99999;
    animation: editor-canvas-hint-hintFadeOut 3s ease forwards;
}

@keyframes editor-canvas-hint-hintFadeOut
{
    0%
    {
        opacity: 1;
    }

    10%
    {
        opacity: 1;
    }

    80%
    {
        opacity: 1;
    }

    100%
    {
        opacity: 0;
    }
}