﻿
@import "_vars.scss";

EditorMode {
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 1;
    z-index: 100;
    font-weight: 100;
    transition: all 1s ease-out;
    transition: opacity .1s linear;
    text-align: center;
    align-content: center;
    opacity: 1;

    &.open {
        opacity: 0;
    }

    .editortext {
        font-family: $font-family-title;
        text-shadow: $text-shadow-red;
        color: $white;
        font-size: $font-size-large;
        font-weight: 900;
        position: absolute;
        top: 120px;
        left: 50%;
        transform: translateX(-50%);
    }

    .subeditortext {
        font-family: $font-family-title;
        text-shadow: $text-shadow-red;
        color: $white;
        font-size: $font-size-medium;
        font-weight: 900;
        position: absolute;
        top: 150px;
        left: 50%;
        transform: translateX(-50%);
    }
}
