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);
}

20
html/assets/css/reset.css Normal file
View file

@ -0,0 +1,20 @@
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}