-
Notifications
You must be signed in to change notification settings - Fork 0
/
bookremarks.html
107 lines (88 loc) · 2.17 KB
/
bookremarks.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html>
<head>
<title>BookRemarks</title>
<style>
.collapsible {
border: 1px solid #ccc;
margin: 10px;
}
.collapsible-header {
padding: 10px;
cursor: pointer;
background-color: lightgray;
}
.collapsible-content {
padding: 30px;
background-color: rgb(255, 184, 184);
max-height: 500px;
overflow-y: scroll;
}
.sessionHeader {
display:flex;
flex-direction: row;
align-content:center;
}
.sessionName {
font-size: 16px;
font-weight: bold;
text-decoration: underline;
}
.sessionHeaderActive {
font-size: 16px;
font-weight: bold;
color:red;
text-decoration:solid;
}
thead,
tfoot {
background-color: #3f87a6;
color: #fff;
}
tbody {
background-color: #e4f0f5;
}
caption {
padding: 10px;
caption-side: bottom;
}
table {
border-collapse: collapse;
border: 2px solid rgb(200, 200, 200);
letter-spacing: 1px;
font-family: sans-serif;
font-size: 0.8rem;
width:100%;
}
td,
th {
border: 1px solid rgb(190, 190, 190);
padding: 5px 10px;
}
#content > table > thead > tr > td {
text-align:center;
}
td {
vertical-align: top;
text-align: left;
}
#content > table > tbody > tr:nth-child(1) > td:nth-child(1) {
width:175px;
}
#content > table > tbody > tr:nth-child(3) > td:nth-child(2) {
width:max-content;
}
.hrsytyle {
padding-top: 10px;
padding-bottom: 10 px;
}
</style>
<script src="blank.js"></script>
</head>
<body>
<h1>BookRemarks</h1>
<h1>Your Session Data</h1>
<sub>* Active session.</sub>
<div id="content"></div>
</body>
</html>