This commit is contained in:
Maciej Caderek
2022-02-14 00:00:41 +01:00
parent 6274236ac7
commit e0b79a7071
26 changed files with 608 additions and 358 deletions

View File

@@ -22,7 +22,21 @@ body {
font-family: Ubuntu, sans-serif;
}
button {
.upload {
visibility: hidden;
padding: 0;
}
.upload::before {
content: "UPLOAD PGN FILE";
visibility: visible;
display: inline-block;
text-align: center;
box-sizing: border-box;
}
button,
.upload::before {
padding: 10px;
font-family: "Ubuntu";
font-size: 1.5rem;
@@ -32,7 +46,8 @@ button {
width: 100%;
}
button:hover {
button:hover,
.upload:hover::before {
background: rgb(0, 207, 162);
cursor: pointer;
}
@@ -69,6 +84,11 @@ h3 {
margin: 15px 0 10px 0;
}
hr {
margin-top: 20px;
border-top: solid 1px #ffffff22;
}
.dark {
background-color: #191d24;
/* background-image: url(src/ui/img/pattern.png); */