-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
130 lines (104 loc) · 1.95 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
:root{
--red_: #D22B2B;
--blue_: #0071c5;
--light_blue:#B9D9EB;
--light_yellow:#EED000;
--secondary_light: rgb(224, 241, 254);
}
.table_idx{
font-weight: bolder;
}
#table_meta_container{
position: absolute;
height: 100%;
}
#custom_table_container{
width: 200px;
position: sticky;
z-index:999999999;
top:50%;
display: flex;
flex-direction: row;
}
.table_on{
display: block;
}
.table_off{
display: none
}
.table_toggle{
min-height: 95px;
font-size: 35px;
font-weight: bolder;
}
table, th, td {
border: 1px solid black;
border-collapse: collapse;
background-color: var(--secondary_light);
}
td{
padding: 5px;
text-align: center;
min-width: 65px;
font-weight: bolder;
}
.td_ok{
color: green;
}
.td_no{
color: var(--red)
}
#refresh_btn{
position: absolute;
top:-100px;
min-height: 95px;
font-size: 35px;
font-weight: bolder;
background-color: var(--blue);
color: white;
min-width: 75px;
}
#download_btn{
position:absolute;
top:100px;
min-height: 95px;
font-size: 35px;
font-weight: bolder;
min-width: 75px;
background-color: var(--blue);
color: white;
}
#info_tooltip{
display: none;
position: absolute;
left: 100px;
background-color: var(--secondary_light);
border: 1px solid black;
min-width: 150px;
width: 300px;
max-width: 600px;
text-align: center;
}
#import_btn{
position:absolute;
top:200px;
min-height: 95px;
font-size: 35px;
font-weight: bolder;
min-width: 75px;
background-color: var(--blue);
color: white;
}
#guide_btn{
position: absolute;
top:-200px;
min-height: 95px;
font-size: 35px;
font-weight: bolder;
background-color: var(--blue);
color: white;
min-width: 75px;
}
#refresh_btn, .table_toggle, #download_btn, #import_btn, #guide_btn{
border-radius: 0% 100% 100% 0%;
}