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;
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 {
height: 10px;
width: 120%;
width: 100%;
position: absolute;
left: -10%;
background-color: black;
}

View File

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

View File

@ -2,10 +2,14 @@
import BeltMiniBlock from './BeltMiniBlock.vue';
import BeltBlock from './BeltBlock.vue';
import HeaderText from './HeaderText.vue';
import MetalPlate from './MetalPlate.vue';
</script>
<template>
<div class="game-header">
<div class="center">
<MetalPlate class="controller-metal controller-metal-left"></MetalPlate>
<MetalPlate class="controller-metal controller-metal-right"></MetalPlate>
<img alt="Вечерний детектив" class="logo" src="@/assets/logo_belt.png" />
<BeltMiniBlock class="belt-mini"></BeltMiniBlock>
<BeltBlock class="belt">
@ -19,6 +23,7 @@ import HeaderText from './HeaderText.vue';
</div>
</BeltBlock>
</div>
</div>
</template>
<style scoped>
@ -31,6 +36,12 @@ import HeaderText from './HeaderText.vue';
z-index: 2000;
}
.center {
position: relative;
max-width: 1920px;
margin: 0 auto;
}
.logo {
width: 90px;
height: 88px;
@ -59,4 +70,20 @@ import HeaderText from './HeaderText.vue';
align-items: center;
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>

View File

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