im'fed up' with windows, installing linux rn

This commit is contained in:
Ben Kyd
2021-04-04 16:31:00 +01:00
parent 7ff37b679c
commit 8863361eb3
3 changed files with 25 additions and 12 deletions

View File

@@ -37,14 +37,6 @@ body {
border: 1px black;
}
.navleft {
display: flex;
padding-left: 2vw;
flex-grow: 1;
order: 0;
}
#lang {
position: inherit;
text-align: right;

View File

@@ -26,6 +26,7 @@ nopiece {
display: flex;
position: absolute;
cursor: pointer;
background: none;
width: 80px;
@@ -50,6 +51,7 @@ score {
width: 40px;
height: 40px;
font-size: 25px;
cursor: pointer;
}
#container {
@@ -59,7 +61,18 @@ score {
justify-content: center;
}
#game-info {
#game-info-left {
border: 1px dotted black;
display: flex;
flex-grow: 1;
order: -1;
height: 600px;
/* width: 200px; */
}
#game-info-right {
border: 1px dotted black;
display: flex;

View File

@@ -14,7 +14,8 @@
<div id="container">
<div id="game-chat">
<div id="game-info-left">
</div>
<div id="game-container">
@@ -392,9 +393,16 @@
</div>
<div id="game-info">
<div id="game-info-right">
<div id="player-scores">
<div></div>
<div id="p1" class="player">
<div id="p1-name" class="player-name">Jerry</div>
<div id="p1-score" class="player-score">12</div>
</div>
<div id="p1" class="player">
<div id="p1-name" class="player-name">CPU</div>
<div id="p1-score" class="player-score">102</div>
</div>
</div>
</div>