-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
83 lines (67 loc) · 1.13 KB
/
style.css
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
body {
font-family: Arial, sans-serif;
}
table {
font-family: Arial, sans-serif;
border: 1px solid #dddddd;
width: 100%;
margin-top: 20px;
}
th {
background-color: #f5f5f5;
text-align: left;
padding: 8px;
cursor: pointer;
}
td {
text-align: left;
padding: 8px;
}
.row_selected,
tr.row.row_selected:hover {
background-color: rgba(0, 123, 255, 0.388);
cursor: pointer;
}
tr.row:hover {
background-color: rgba(0, 123, 255, 0.1);
cursor: pointer;
}
tr.row_editable {
background-color: rgba(0, 128, 0, 0.529) !important;
cursor: text !important;
}
.thHeight {
height: 50px;
border-bottom: none;
cursor: pointer;
}
.thStyle1 {
display: flex;
justify-content: start;
align-items: start;
gap: 6px;
}
.thStyle2 {
display: flex;
flex-direction: column;
justify-content: space-between;
}
h1 {
margin-left: 10px;
}
.tableContainer {
margin: 20px;
}
.icon-container {
margin: 10px;
width: 100%;
display: flex;
justify-content: flex-end;
}
.icon {
cursor: pointer;
margin: 0 5px;
}
.icon:hover {
color: purple;
}