updates
This commit is contained in:
parent
880c305731
commit
f08399c76c
BIN
src/assets/a_OldTyper.ttf
Normal file
BIN
src/assets/a_OldTyper.ttf
Normal file
Binary file not shown.
@ -217,8 +217,12 @@ onMounted(() => {
|
|||||||
</BeltMiniBlock>
|
</BeltMiniBlock>
|
||||||
<BeltBlock class="game-header-belt center-bold-text">
|
<BeltBlock class="game-header-belt center-bold-text">
|
||||||
<div class="position-right-center">
|
<div class="position-right-center">
|
||||||
<!-- Вечерний детектив -->
|
<span class="logo-text">Вечерний детектив</span>
|
||||||
<MetalPlate class="team-name-block text-truncate">{{ team.name }}</MetalPlate>
|
<MetalPlate class="team-name-block">
|
||||||
|
<div class="text-middle-wrapper text-truncate">
|
||||||
|
<p>...</p>
|
||||||
|
</div>
|
||||||
|
</MetalPlate>
|
||||||
</div>
|
</div>
|
||||||
</BeltBlock>
|
</BeltBlock>
|
||||||
</div>
|
</div>
|
||||||
@ -226,6 +230,8 @@ onMounted(() => {
|
|||||||
<!-- Форма ввода -->
|
<!-- Форма ввода -->
|
||||||
<div class="form-custom">
|
<div class="form-custom">
|
||||||
<BeltBlock class="game-input-form">
|
<BeltBlock class="game-input-form">
|
||||||
|
<MetalPlate class="controller-metal controller-metal-left"></MetalPlate>
|
||||||
|
<MetalPlate class="controller-metal controller-metal-right"></MetalPlate>
|
||||||
<div class="center-block-custom">
|
<div class="center-block-custom">
|
||||||
<form @submit.prevent="addAction">
|
<form @submit.prevent="addAction">
|
||||||
<div class="controller">
|
<div class="controller">
|
||||||
@ -294,6 +300,11 @@ body {
|
|||||||
background-color: gray;
|
background-color: gray;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: a_OldTyper;
|
||||||
|
src: url('@/assets/a_OldTyper.ttf');
|
||||||
|
}
|
||||||
|
|
||||||
.hr {
|
.hr {
|
||||||
margin: 7px 0;
|
margin: 7px 0;
|
||||||
}
|
}
|
||||||
@ -346,12 +357,10 @@ body {
|
|||||||
|
|
||||||
.message-content {
|
.message-content {
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
/* white-space: pre-line; */
|
|
||||||
white-space: pre-wrap;
|
white-space: pre-wrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
.message-image {
|
.message-image {
|
||||||
/* width: 150px; */
|
|
||||||
width: 40%;
|
width: 40%;
|
||||||
float: left;
|
float: left;
|
||||||
margin-right: 15px;
|
margin-right: 15px;
|
||||||
@ -394,8 +403,22 @@ body {
|
|||||||
|
|
||||||
.team-name-block {
|
.team-name-block {
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
width: 150px;
|
width: 50px;
|
||||||
height: 40px;
|
height: 40px;
|
||||||
|
font-family: a_OldTyper;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text-middle-wrapper {
|
||||||
|
position: relative;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text-middle-wrapper p {
|
||||||
|
position: absolute;
|
||||||
|
top: 50%;
|
||||||
|
left: 50%;
|
||||||
|
margin-right: -50%;
|
||||||
|
transform: translate(-50%, -50%)
|
||||||
}
|
}
|
||||||
|
|
||||||
.text-truncate {
|
.text-truncate {
|
||||||
@ -497,7 +520,33 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.game-input-run {
|
.game-input-run {
|
||||||
|
margin-top: 14px;
|
||||||
|
margin-left: 25px;
|
||||||
height: 50px;
|
height: 50px;
|
||||||
width: calc(100% - 150px);
|
width: calc(100% - 150px);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.controller-metal {
|
||||||
|
width: 30px;
|
||||||
|
height: calc(100% + 2px);
|
||||||
|
position: absolute;
|
||||||
|
top: -1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.controller-metal-left {
|
||||||
|
left: -15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.controller-metal-right {
|
||||||
|
right: -15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.logo-text {
|
||||||
|
font-family: a_OldTyper;
|
||||||
|
line-height: 20px;
|
||||||
|
font-size: 22px;
|
||||||
|
color: #a1825f;
|
||||||
|
font-weight: 600;
|
||||||
|
letter-spacing: 2px;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@ -29,8 +29,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.pin {
|
.pin {
|
||||||
width: 5px;
|
width: 7px;
|
||||||
height: 5px;
|
height: 7px;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
background-image: url("@/assets/pin.png");
|
background-image: url("@/assets/pin.png");
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user