added temporary styles for section gamemode

This commit is contained in:
Kostya
2023-11-15 21:27:31 +03:00
parent f3ea1dc9f8
commit 22f4febdea

View File

@@ -24,6 +24,7 @@
<section class="gamemode"> <section class="gamemode">
<div class="gamemode__content"> <div class="gamemode__content">
<div class="gamemode__main"> <div class="gamemode__main">
<div class="line__content">
<ul> <ul>
<li <li
v-for="mode in mainGameMode" v-for="mode in mainGameMode"
@@ -33,17 +34,21 @@
</li> </li>
</ul> </ul>
</div> </div>
</div>
<div class="gamemode__line--first"> <div class="gamemode__line--first">
<ul> <ul>
<li <li
v-for="mode in firstlineGameMode" v-for="mode in firstlineGameMode"
:key="mode.id" :key="mode.id"
> >
<div class="line__content--linefirst">
{{ mode.title }} {{ mode.title }}
</div>
</li> </li>
</ul> </ul>
</div> </div>
<div class="gamemode__line--two"> <div class="gamemode__line--two">
<div class="line__content">
<ul> <ul>
<li <li
v-for="mode in TwolineGameMode" v-for="mode in TwolineGameMode"
@@ -54,6 +59,7 @@
</ul> </ul>
</div> </div>
</div> </div>
</div>
</section> </section>
</section> </section>
@@ -169,4 +175,21 @@ export default {
left: 35%; left: 35%;
bottom: 83%; bottom: 83%;
} }
.gamemode {
margin: 0px 0px 0px 200px;
}
.gamemode__main .line__content {
width: 400px;
height: 438px;
background: #fff;
}
.gamemode__content {
display: flex;
}
.gamemode__line--first .line__content--linefirst {
width: 400px;
height: 212px;
background: #d5d5d5;
}
</style> </style>