This commit is contained in:
Maciej Caderek
2022-02-08 21:52:31 +01:00
parent 56ed83d9f6
commit 4785b61644
15 changed files with 274 additions and 71 deletions

96
src/ui/App.css Normal file
View File

@@ -0,0 +1,96 @@
@font-face {
font-family: "Chess";
src: url("chess.ttf") format("ttf");
}
* {
border: 0;
margin: 0;
padding: 0;
box-sizing: border-box;
outline: none;
}
html {
font-size: 10px;
}
body {
background-repeat: repeat;
background-position: center;
text-align: center;
font-family: Ubuntu, sans-serif;
}
.dark {
background-color: #191d24;
/* background-image: url(src/ui/img/pattern.png); */
color: #ddd;
}
.light {
background-color: #cfcfcf;
/* background-image: url(src/ui/img/pattern-light.png); */
color: #222;
}
.board {
/* width: 600px;
height: 600px;
width: 800px;
height: 800px; */
/* width: 1024px;
height: 1024px; */
box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
border-radius: 5px;
max-width: 100%;
max-height: 95vh;
}
.layout {
display: grid;
grid-template-columns: 1fr 2fr 1fr;
grid-template-rows: 1fr;
grid-template-areas:
"setup board moves"
"setup board controls";
height: 100vh;
}
.board-box {
/* background: rgba(255, 166, 0, 0.1); */
height: 100vh;
grid-area: board;
padding: 20px;
}
.setup-box {
/* background: rgba(135, 207, 235, 0.1); */
height: 100vh;
grid-area: setup;
padding: 20px;
}
@media screen and (max-width: 1024px) {
.layout {
grid-template-columns: 1fr;
}
.moves-box {
height: auto;
}
.board-box {
height: auto;
}
.setup-box {
height: auto;
}
}
::placeholder {
color: #677794;
}