This commit is contained in:
Владимир Фёдоров 2026-03-24 23:55:51 +07:00
parent 82e0f9ffb4
commit ee4ee4dbd9
7 changed files with 58 additions and 24 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 889 KiB

After

Width:  |  Height:  |  Size: 3.4 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 139 KiB

After

Width:  |  Height:  |  Size: 594 KiB

View File

@ -36,3 +36,18 @@ body {
align-items: center; align-items: center;
justify-content: center; justify-content: center;
} }
.controller-metal {
width: 30px;
height: calc(100% + 2px);
position: absolute;
top: -1px;
}
.controller-metal-left {
left: -15px;
}
.controller-metal-right {
right: -15px;
}

View File

@ -20,9 +20,8 @@
.shadow { .shadow {
height: 10px; height: 10px;
width: 120%; width: 100%;
position: absolute; position: absolute;
left: -10%;
background-color: black; background-color: black;
} }

View File

@ -19,8 +19,7 @@
.shadow { .shadow {
height: 10px; height: 10px;
width: 120%; width: 100%;
left: -10%;
position: absolute; position: absolute;
bottom: 5px; bottom: 5px;
background-color: black; background-color: black;

View File

@ -2,22 +2,27 @@
import BeltMiniBlock from './BeltMiniBlock.vue'; import BeltMiniBlock from './BeltMiniBlock.vue';
import BeltBlock from './BeltBlock.vue'; import BeltBlock from './BeltBlock.vue';
import HeaderText from './HeaderText.vue'; import HeaderText from './HeaderText.vue';
import MetalPlate from './MetalPlate.vue';
</script> </script>
<template> <template>
<div class="game-header"> <div class="game-header">
<img alt="Вечерний детектив" class="logo" src="@/assets/logo_belt.png" /> <div class="center">
<BeltMiniBlock class="belt-mini"></BeltMiniBlock> <MetalPlate class="controller-metal controller-metal-left"></MetalPlate>
<BeltBlock class="belt"> <MetalPlate class="controller-metal controller-metal-right"></MetalPlate>
<div class="position-right-center-block"> <img alt="Вечерний детектив" class="logo" src="@/assets/logo_belt.png" />
<HeaderText>Вечерний детектив</HeaderText> <BeltMiniBlock class="belt-mini"></BeltMiniBlock>
<!-- <MetalPlate class="team-name-block"> <BeltBlock class="belt">
<div class="position-right-center-block">
<HeaderText>Вечерний детектив</HeaderText>
<!-- <MetalPlate class="team-name-block">
<div class="text-middle-wrapper text-truncate"> <div class="text-middle-wrapper text-truncate">
<p>...</p> <p>...</p>
</div> </div>
</MetalPlate> --> </MetalPlate> -->
</div> </div>
</BeltBlock> </BeltBlock>
</div>
</div> </div>
</template> </template>
@ -31,6 +36,12 @@ import HeaderText from './HeaderText.vue';
z-index: 2000; z-index: 2000;
} }
.center {
position: relative;
max-width: 1920px;
margin: 0 auto;
}
.logo { .logo {
width: 90px; width: 90px;
height: 88px; height: 88px;
@ -59,4 +70,20 @@ import HeaderText from './HeaderText.vue';
align-items: center; align-items: center;
justify-content: left; justify-content: left;
} }
.controller-metal {
width: 30px;
height: calc(100% + 2px);
position: absolute;
top: -1px;
z-index: 15;
}
.controller-metal-left {
left: -30px;
}
.controller-metal-right {
right: -30px;
}
</style> </style>

View File

@ -65,6 +65,8 @@ async function addAction() {
height: 76px; height: 76px;
position: relative; position: relative;
z-index: 1000; z-index: 1000;
margin: 0 auto;
max-width: 1920px;
} }
.controller-metal { .controller-metal {
@ -75,11 +77,11 @@ async function addAction() {
} }
.controller-metal-left { .controller-metal-left {
left: -15px; left: -30px;
} }
.controller-metal-right { .controller-metal-right {
right: -15px; right: -30px;
} }
.controller { .controller {
@ -90,9 +92,9 @@ async function addAction() {
.game-input { .game-input {
position: relative; position: relative;
top: 14px; top: 14px;
left: 25px; left: 15px;
height: 50px; height: 50px;
width: calc(100% - 150px - 35px); width: calc(100% - 150px - 25px);
} }
.game-input-run { .game-input-run {
@ -139,12 +141,4 @@ async function addAction() {
margin: 0; margin: 0;
padding: 0; padding: 0;
} }
.game-button-run:hover {
/* TODO */
}
.game-button-run:disabled {
/* TODO */
}
</style> </style>