-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (68 loc) · 1.68 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html>
<head>
<title>Client Application</title>
<script src="ts/logic.js"></script>
<link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css">
<style>
table {
border-collapse: collapse;
width: 100%; /* Take up full width */
}
th, td {
border: 1px solid black;
padding: 8px;
text-align: center; /* Center align the content */
}
table {
/* box-shadow: 0 0 50px 15px #48abe0 ; */
transition: box-shadow 1s ease;
}
.fade-out {
box-shadow: none !important;
}
/* Adjustments for smaller screens */
@media (min-width: 600px) {
h1 {
font-size: 24px; /* Decrease font size for smaller screens */
}
select,
input[type="week"],
table {
font-size: 16px; /* Decrease font size for smaller screens */
}
th,
td {
padding: 6px; /* Decrease padding for smaller screens */
}
}
</style>
</head>
<body>
<h1>BBZBL Stundenplan</h1>
<div style="overflow-x: auto;"> <!-- Add horizontal scroll for smaller screens -->
<select id="professionList">
<option value="">Select an option</option>
</select>
<select id="classList" disabled>
<option value="">Select an option</option>
</select>
<input type="week" id="datepicker" placeholder="Select a date">
<table id="outputTable">
<thead>
<tr id="tableHeader">
<th>Datum</th>
<th>WochenTag</th>
<th>Von</th>
<th>Bis</th>
<th>Lehrer</th>
<th>Fach</th>
<th>Raum</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</body>
</html>