generated from VLADIMIR/template_frontend
36 lines
704 B
CSS
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;
|
|
}
|
|
} |