sensotwin.global_style
1PRIMARY_COLOR = "#1a4273" 2SECONDARY_COLOR = "#009fe3" 3BACKGROUND_COLOR = "#f3f3f3" 4PRIMARY_TEXT_COLOR = "white" 5 6global_css = """ 7.global_headline {{ 8 color: {primary_color} !important; 9}} 10.global_basic_input > label {{ 11 background-color: {secondary_color} !important; 12 color: {primary_text_color} !important; 13}} 14.global_basic_button {{ 15 background-color: {primary_color} !important; 16 color: {primary_text_color} !important; 17}} 18.global_tab_container > .widget-tab-contents, 19.global_tab_container > div > ul > .lm-mod-current {{ 20 background-color: {background_color} !important; 21}} 22.global_tab_container > div > ul > li {{ 23 filter: brightness(70%) !important; 24 border-top-left-radius: 10px; 25 border-top-right-radius: 10px; 26}} 27.global_tab_container > div > ul > .lm-mod-current {{ 28 filter: brightness(100%) !important; 29}} 30.global_tab_container > div > ul > .lm-mod-current:before {{ 31 display: none; 32}} 33.global_headline {{ 34 color: {primary_color} !important; 35 font-size: 150% !important; 36 font-weight: bold !important; 37 margin-top: 25px !important; 38}} 39.global_basic_input, 40.global_basic_button {{ 41 margin-top: 5px !important; 42}} 43.global_basic_input > label {{ 44 border-radius: 2px !important; 45 text-align: center !important; 46 display: block !important; 47 font-weight: bold !important; 48}} 49.global_basic_button {{ 50 border-radius: 2px; 51 text-align: center !important; 52 font-weight: bold !important; 53}} 54.global_save_input_set_button {{ 55 width: 80% !important; 56 margin: 0 auto !important; 57 margin-top: 40px !important; 58 height: 60px !important; 59 font-size: 175% !important; 60}} 61.global_data_tab_container {{ 62 display: flex !important; 63 flex-direction: column !important; 64 justify-content: space-around !important; 65 height: 300px !important; 66}} 67.global_url_input {{ 68 width: 500px !important; 69}} 70.global_url_input > label {{ 71 width: 200px !important; 72}} 73.global_load_data_button {{ 74 width: 300px !important; 75}} 76.global_input_set_selection > label {{ 77 display: none !important; 78}} 79""".format(primary_color=PRIMARY_COLOR, background_color=BACKGROUND_COLOR, secondary_color=SECONDARY_COLOR, primary_text_color=PRIMARY_TEXT_COLOR)
PRIMARY_COLOR =
'#1a4273'
SECONDARY_COLOR =
'#009fe3'
BACKGROUND_COLOR =
'#f3f3f3'
PRIMARY_TEXT_COLOR =
'white'
global_css =
'\n.global_headline {\n color: #1a4273 !important;\n}\n.global_basic_input > label {\n background-color: #009fe3 !important;\n color: white !important;\n}\n.global_basic_button {\n background-color: #1a4273 !important;\n color: white !important;\n}\n.global_tab_container > .widget-tab-contents, \n.global_tab_container > div > ul > .lm-mod-current {\n background-color: #f3f3f3 !important;\n}\n.global_tab_container > div > ul > li {\n filter: brightness(70%) !important;\n border-top-left-radius: 10px;\n border-top-right-radius: 10px;\n}\n.global_tab_container > div > ul > .lm-mod-current {\n filter: brightness(100%) !important;\n}\n.global_tab_container > div > ul > .lm-mod-current:before {\n display: none;\n}\n.global_headline {\n color: #1a4273 !important;\n font-size: 150% !important;\n font-weight: bold !important;\n margin-top: 25px !important;\n}\n.global_basic_input,\n.global_basic_button {\n margin-top: 5px !important;\n}\n.global_basic_input > label {\n border-radius: 2px !important;\n text-align: center !important;\n display: block !important;\n font-weight: bold !important;\n}\n.global_basic_button {\n border-radius: 2px;\n text-align: center !important;\n font-weight: bold !important;\n}\n.global_save_input_set_button {\n width: 80% !important;\n margin: 0 auto !important;\n margin-top: 40px !important;\n height: 60px !important;\n font-size: 175% !important;\n}\n.global_data_tab_container {\n display: flex !important;\n flex-direction: column !important;\n justify-content: space-around !important;\n height: 300px !important;\n}\n.global_url_input {\n width: 500px !important;\n}\n.global_url_input > label {\n width: 200px !important;\n}\n.global_load_data_button {\n width: 300px !important;\n}\n.global_input_set_selection > label {\n display: none !important;\n}\n'