@font-face { font-family: pixellari; src: url("/assets/fonts/Pixellari.ttf"); } :root { --text-color: white; --text-familly: pixellari; --main-color: black; --sec-color: rgba(69, 128, 255, 0.842); } ::-webkit-scrollbar { width: 0 !important } body{ background-image: url("/assets/img/background.png"); background-repeat: no-repeat; background-size: cover; overflow: hidden; font-family: var(--text-familly); color: var(--text-color); margin: 0; padding: 0; } /* button{ font-family: var(--text-familly); color: var(--text-color); } */ input{ font-family: var(--text-familly); color: var(--text-color); } #block-content{ margin: 0; padding: 0; width: 100%; height: 100vh; } .modal-disable::backdrop { background-color: rgba(0, 0, 0, 0.493); } .ext-modal[open] { animation: myFadeIn 0.5s ease normal; } @keyframes myFadeIn{ from { bottom: 100%; } to { bottom: 0%; } } .home-container { width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; flex-direction: column; text-shadow: 4px 2px black; } .languettes { z-index: 1; right: -30px; top: 25%; width: 80px; position: absolute; display: flex; flex-direction: column; align-items:flex-end; } .languettes input{ width: 100%; } .languettes input:hover{ animation: slide-left; position: relative; animation-timing-function: ease; animation-fill-mode: forwards; animation-duration: 1s; } @keyframes slide-left { 0% {right: 0px; top: 0px;} 100% {right: 25px; top: 0px;} } .Title{ position: absolute; font-size: 50px; margin-left: 50px; background-color: rgba(0, 0, 0, 0.363); border-radius: 5px; width: fit-content; padding: 10px; } .cont-center { width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; } .title{ font-size: 50px; margin-left: 50px; } ::placeholder { color: var(--text-color); } .base-input{ margin: 5px; padding: 10px; border: none; border-radius: 5px; background-color: var(--sec-color); font-size: 20px; } .base-input:active{ background-color: var(--sec-color); font-size: 20px; } /* .base-btn{ margin: 2px; padding: 10px; border: none; border-radius: 5px; background-color: var(--sec-color); font-size: 20px; } */ button, .button { margin: 2px; font-family: var(--text-familly); background-color: #0000008f; color: #ffffff; border: 2px solid #ffffff; padding: 10px; font-size: 13px; cursor: pointer; border-radius: 5px; transition: background-color 0.3s, color 0.3s, border-color 0.3s; } button:hover, .button:hover { background-color: #ffffff; color: #1a1a1a; border-color: #1a1a1a; } button:active, .button:active { background-color: #333333; color: #ffffff; border-color: #ffffff; } button:disabled, .button:disabled { background-color: #555555; color: #b3b3b3; border-color: #b3b3b3; cursor: not-allowed; opacity: 0.6; } /* .base-btn:hover{ box-shadow: 1px 1px 1px 0px rgba(88, 88, 252, 0.842); } */ .base-select { margin: 5px; padding: 10px; border: none; border-radius: 3px; background-color: var(--sec-color); font-size: 15px; font-family: var(--text-familly); color: var(--text-color); }