initial commit

This commit is contained in:
2025-05-15 14:25:39 +02:00
commit e57af3ad36
9 changed files with 1073 additions and 0 deletions

2
styles/.htaccess Normal file
View File

@ -0,0 +1,2 @@
Options All -Indexes

36
styles/style_index.css Normal file
View File

@ -0,0 +1,36 @@
body {
max-width: 700px;
margin: 0 auto;
padding: 10px;
font-family: "arial";
}
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
th, td {
padding: 5px;
}
th {
cursor: pointer;
}
.arrow {
position: relative;
}
.arrow:after {
content: "";
position: absolute;
top: 0;
right: 0;
width: 0;
height: 0;
display: block;
border-left: 5px solid transparent;
border-bottom: 5px solid transparent;
border-top: 5px solid #000;
}