initial commit; implemented button recognition

This commit is contained in:
krippix 2023-06-04 03:01:38 +02:00
commit 575e7ca11e
7 changed files with 1065 additions and 0 deletions

26
html/assets/css/base.css Normal file
View file

@ -0,0 +1,26 @@
body {
margin: 0;
background-color: #d3d3d3;
}
h1 {
margin: 0;
}
img {
height: auto;
width: 100%;
}
#titlebar {
font-family: 'arial';
color: white;
padding: 20px;
margin: 0px;
background-color: #333;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.container {
max-width: 1920px;
background-color: white;
display: flex;
margin: 10px auto;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}