Files
evening_detective_frontend/src/assets/main.css
T
2026-07-19 14:45:03 +07:00

36 lines
704 B
CSS

@import './base.css';
body {
overflow: hidden;
background-color: black;
scrollbar-width: none;
}
@font-face {
font-family: font_old_typer;
src: url('@/assets/fonts/a_OldTyper.ttf');
}
.center-message {
display: flex;
justify-content: center;
/* горизонтальное центрирование */
align-items: center;
/* вертикальное центрирование */
height: calc(100dvh - 100px);
text-align: center;
/* центрирование текста */
}
.content-block {
margin-top: 70px;
padding: 10px;
background-color: #333333;
}
@media (min-width: 1024px) {
.center-block-custom {
width: 700px;
margin: 70px auto 0 auto;
}
}