File size: 974 Bytes
696314f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
# styles.py

COMMON_CSS = """

<style>

.stSelectbox div[data-baseweb="select"] {

    margin-top: -35px;

}

.stTextInput div[data-baseweb="input"] {

    margin-top: -35px;

}

.stTextArea div[data-baseweb="textarea"] {

    margin-top: -35px;

}

.stFileUploader div[data-baseweb="input"] {

    margin-top: -100px;

}

.stSelectbox {

    max-width: 300px;

}

.stTextInput, .stTextArea {

    max-width: 1400px;

}

.stSelectbox div, .stTextInput input, .stTextArea textarea {

    font-size: 14px;

}

.stButton > button {

    font-size: 6px; 

    padding: 2px 8px;

    border-radius: 10px; 

    background-color: #1560BD; 

    color: white; 

}

.stButton > button:hover {

    background-color: #1560BD;

    border: none;

    outline: none; 

}

.stRadio div[data-baseweb="radio"] {

    font-size: 14px; /* Ensure font size for the entire radio button group */

    margin-top: -100px; /* Reduce margin between label and radio button */

}

</style>

"""