-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
79 lines (68 loc) · 1.73 KB
/
style.css
File metadata and controls
79 lines (68 loc) · 1.73 KB
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
/* style.css */
/* --- Custom width for the main content area --- */
div.block-container {
max-width: 1000px;
/* Adjust this value to your desired width */
padding-left: 1rem;
/* Adjust padding as needed */
padding-right: 1rem;
/* Adjust padding as needed */
}
/* --- General Component Styling --- */
/* Enhance the appearance of the main input form */
div[data-testid="stForm"] {
padding: 20px;
border-radius: 12px;
border: 1px solid #D9D9D9;
/* Light border */
background-color: #FAFAFC;
/* Slightly different background for the form area */
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
/* Soft shadow */
margin-bottom: 30px;
}
/* Style for h3 subheaders */
h3 {
color: #262730 !important;
padding-top: 10px;
font-weight: 700;
}
/* Style for st.code blocks (where conversions and p-values are displayed) */
.stCode {
border-radius: 8px;
border-left: 6px solid #1F4E79;
/* Accent border matching new primary color (dark blue) */
padding: 10px 10px 10px 15px;
font-size: 1.1em;
font-weight: 600;
}
/* --- Section Divider Styling --- */
.section-divider {
display: flex;
align-items: center;
text-align: center;
margin: 30px 0 20px 0;
width: 100%;
}
.section-divider::before,
.section-divider::after {
content: '';
flex: 1;
border-bottom: 1px solid #D9D9D9;
/* Light line */
}
.section-divider:not(:empty)::before {
margin-right: .5em;
}
.section-divider:not(:empty)::after {
margin-left: .5em;
}
.section-divider-text {
font-size: 1.2em;
font-weight: 600;
color: #1F4E79;
/* Match new primary color from config.toml (dark blue) */
padding: 0 10px;
white-space: nowrap;
text-transform: uppercase;
}