-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
153 lines (130 loc) · 2.55 KB
/
Copy pathstyles.css
File metadata and controls
153 lines (130 loc) · 2.55 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
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
/* Main layout */
.main-container {
padding: 2rem;
}
/* Headers */
.main-title {
color: #FF6600;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-weight: 600;
letter-spacing: -0.5px;
margin-bottom: 2rem;
}
.step-header {
color: #2C3E50;
font-size: 1.5rem;
font-weight: 600;
margin: 1.5rem 0;
padding-bottom: 0.5rem;
border-bottom: 2px solid #FF6600;
}
/* Breadcrumbs */
.breadcrumb-container {
display: flex;
justify-content: center;
gap: 1em;
margin-bottom: 1.5rem;
padding: 0.5rem;
border-radius: 8px;
}
.breadcrumb-active {
font-weight: bold;
color: #FF6600;
}
.breadcrumb-completed {
color: #27AE60;
}
.breadcrumb-pending {
color: #B0BEC5;
}
/* Cards and containers */
.content-card {
/* background: #FFFFFF; */
border-radius: 8px;
padding: 2rem;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
margin: 1rem 0;
}
/* Navigation */
.nav-button {
border-radius: 0.3rem;
padding: 0.5rem 1rem;
font-weight: 500;
}
.nav-button-primary {
background-color: #2874A6;
color: white;
}
.nav-button-secondary {
background-color: #95A5A6;
color: white;
}
/* Data display */
.data-preview {
background: #F8F9FA;
border-radius: 4px;
padding: 1rem;
margin: 1rem 0;
border: 1px solid #E5E7E9;
overflow: hidden;
}
/* Validation results */
.validation-success {
color: #27AE60;
}
.validation-error {
color: #E74C3C;
}
/* Button styling */
.stButton > button {
background-color: #FF6600;
color: white;
border: none;
border-radius: 4px;
padding: 0.5rem 1rem;
font-weight: 600;
transition: all 0.3s ease;
}
.stButton > button:hover {
background-color: #E65C00;
box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
/* Input field styling */
.stTextInput > div > div > input {
border: 1px solid #E0E0E0;
border-radius: 4px;
padding: 0.5rem;
}
/* File uploader styling */
.stFileUploader > div {
border: 2px dashed #B0BEC5;
border-radius: 8px;
padding: 2rem;
text-align: center;
}
/* Alert styling */
.stAlert {
border-radius: 4px;
border-left: 4px solid #FF6600;
}
/* Tabs styling */
.stTabs [data-baseweb="tab-list"] {
gap: 1rem;
}
.stTabs [data-baseweb="tab"] {
color: #2C3E50;
border-radius: 4px 4px 0 0;
}
.stTabs [aria-selected="true"] {
color: #FF6600;
border-bottom-color: #FF6600;
}
/* Responsive adjustments */
@media (max-width: 768px) {
.main-container {
padding: 1rem;
}
.content-card {
padding: 1rem;
}
}