-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon.py
51 lines (39 loc) · 1.02 KB
/
common.py
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
import streamlit as _st
th_props = [
('text-align', 'left'),
('font-weight', 'bold'),
]
td_props = [
('text-align', 'center'),
]
headers_props = [
('text-align', 'center'),
]
table_body = [
('background-color', '#000'),
("display", "inline-block")
]
tr_props = [
("display", "none"),
]
styles = [
dict(selector="th", props=th_props),
dict(selector="td:nth-child(3)", props=td_props),
]
styles_attd = [
dict(selector="td:nth-child(3)", props=td_props),
dict(selector="td:nth-child(4)", props=td_props),
]
styles_gp = [
dict(selector="td:nth-child(3)", props=td_props),
dict(selector="td:nth-child(4)", props=td_props),
dict(selector="td:nth-child(5)", props=td_props),
dict(selector="thead tr th:first-child", props=tr_props),
dict(selector="tbody tr th:first-child", props=tr_props),
]
def local_html(file_name):
with open(file_name) as f:
_st.markdown(f'{f.read()}', unsafe_allow_html=True)
def local_css(file_name):
with open(file_name) as f:
_st.markdown(f'<style>{f.read()}</style>', unsafe_allow_html=True)