-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
92 lines (75 loc) · 1.81 KB
/
Copy pathmain.html
File metadata and controls
92 lines (75 loc) · 1.81 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Chem Group Manager</title>
<style>
body {
}
#tab-dir {
width: 100%;
display: flex;
flex-wrap: wrap;
place-content: center;
}
#tab-info-dir {
margin-top: 30px;
width: 100%;
border: 1px solid black;
}
.tab {
width: 160px;
height: 50px;
background-color: blue;
color: white;
text-align: center;
font-size: 40px;
margin-top: auto;
border: 1px solid black;
user-select: none;
}
.tab:hover {
background-color: lightblue;
}
.tab.active {
background-color: lime;
}
.tab-info {
display: none;
}
.tab-info.active {
display: block;
}
#student-list {
background-color: black;
width: 100%;
}
#student-list tr {
background-color: white;
}
#student-list input {
display: none;
}
#student-list p {
display: block;
}
#student-list .edit-student-name input {
display: block;
}
#student-list .edit-student-name p {
display: none;
}
</style>
<script defer type="text/javascript" src="fs.js"></script>
<script defer type="text/javascript" src="gm.js"></script>
<script defer type="text/javascript" src="main.js"></script>
</head>
<body>
<div style="display: inline-block; margin: auto;">
<div id="tab-dir">
</div>
<div id="tab-info-dir">
</div>
</div>
</body>
</html>