-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
58 lines (49 loc) · 966 Bytes
/
style.css
File metadata and controls
58 lines (49 loc) · 966 Bytes
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
html, body {
height: 100%;
margin: 0%;
}
.table-container {
overflow-x: auto;
overflow-y: auto;
}
.table-container__table {
border-collapse: collapse;
font-size: 18pt;
height: 150px;
position: absolute;
width: 100%;
top: 35%;
}
.table-container__table tr:nth-child(even) {
background-color: dimgray;
}
.table-container__table tr:nth-child(odd) {
background-color: darkgray;
}
.table-container__table td, th {
border-top: 1px solid black;
border-bottom: 1px solid black;
padding: 0%;
position: relative;
min-width: 250px;
width: 350px;
user-select: none;
}
.table-container__table th {
text-align: left;
background-color: lightgray;
font-family: Arial, Helvetica, sans-serif;
}
.table-container__table th:hover {
cursor: pointer;
}
.table__vertical-line {
border-right: 2px solid darkred;
position: absolute;
height: 150px;
top: 35%;
z-index: 1;
}
.table__vertical-line:hover {
cursor: col-resize;
}