-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
148 lines (132 loc) · 4.41 KB
/
Copy pathstyle.css
File metadata and controls
148 lines (132 loc) · 4.41 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
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500&display=swap');
#MainMenu, footer, header {visibility: hidden;}
.stApp {
background: #0A0F1E !important;
font-family: 'Inter', sans-serif !important;
}
/* Sidebar */
[data-testid="stSidebar"] {
background: #0D1428 !important;
border-right: 1px solid rgba(255,255,255,0.08) !important;
}
/* All text */
.stApp, .stApp p, .stApp span, .stApp label, .stApp div {
color: #F0F4FF !important;
}
/* Buttons */
.stButton > button {
background: rgba(255,255,255,0.04) !important;
border: 1px solid rgba(255,255,255,0.1) !important;
color: #F0F4FF !important;
border-radius: 10px !important;
font-family: 'Inter', sans-serif !important;
font-size: 13px !important;
transition: all 0.25s ease !important;
padding: 8px 16px !important;
}
.stButton > button:hover {
background: rgba(108,99,255,0.2) !important;
border-color: #6C63FF !important;
transform: translateY(-1px) !important;
box-shadow: 0 8px 24px rgba(108,99,255,0.2) !important;
}
/* File uploader */
[data-testid="stFileUploader"] {
background: rgba(255,255,255,0.03) !important;
border: 1.5px dashed rgba(255,255,255,0.1) !important;
border-radius: 14px !important;
padding: 8px !important;
}
[data-testid="stFileUploader"]:hover {
border-color: #6C63FF !important;
background: rgba(108,99,255,0.06) !important;
}
/* Chat messages */
[data-testid="stChatMessage"] {
background: rgba(255,255,255,0.03) !important;
border: 1px solid rgba(255,255,255,0.07) !important;
border-radius: 16px !important;
margin-bottom: 10px !important;
transition: box-shadow 0.25s ease !important;
animation: msgIn 0.35s ease forwards !important;
}
[data-testid="stChatMessage"]:hover {
box-shadow: 0 8px 32px rgba(0,0,0,0.4) !important;
border-color: rgba(108,99,255,0.2) !important;
}
/* Chat input box */
[data-testid="stChatInputTextArea"] {
background: rgba(255,255,255,0.04) !important;
color: #F0F4FF !important;
border: 1px solid rgba(255,255,255,0.08) !important;
border-radius: 12px !important;
font-family: 'Inter', sans-serif !important;
}
[data-testid="stBottom"] {
background: rgba(10,15,30,0.95) !important;
border-top: 1px solid rgba(255,255,255,0.06) !important;
backdrop-filter: blur(20px) !important;
}
/* Metrics */
[data-testid="stMetric"] {
background: rgba(255,255,255,0.03) !important;
border: 1px solid rgba(255,255,255,0.07) !important;
border-radius: 12px !important;
padding: 16px !important;
transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}
[data-testid="stMetric"]:hover {
transform: translateY(-2px) !important;
box-shadow: 0 8px 24px rgba(0,0,0,0.3) !important;
}
[data-testid="stMetricValue"] {
color: #6C63FF !important;
font-family: 'Space Grotesk', sans-serif !important;
font-size: 28px !important;
font-weight: 700 !important;
}
[data-testid="stMetricLabel"] {
color: rgba(240,244,255,0.5) !important;
font-size: 12px !important;
}
/* Expander */
[data-testid="stExpander"] {
background: rgba(255,255,255,0.02) !important;
border: 1px solid rgba(255,255,255,0.07) !important;
border-radius: 12px !important;
}
/* Dataframe */
[data-testid="stDataFrame"] {
border: 1px solid rgba(255,255,255,0.07) !important;
border-radius: 10px !important;
}
/* Info/success boxes */
[data-testid="stAlert"] {
border-radius: 10px !important;
border: 1px solid rgba(108,99,255,0.2) !important;
background: rgba(108,99,255,0.08) !important;
}
/* Divider */
hr {
border-color: rgba(255,255,255,0.06) !important;
}
/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #6C63FF; }
/* Animations */
@keyframes msgIn {
from { opacity: 0; transform: translateY(8px); }
to { opacity: 1; transform: translateY(0); }
}
/* Gradient title */
.gradient-title {
font-family: 'Space Grotesk', sans-serif !important;
font-size: 2rem !important;
font-weight: 700 !important;
background: linear-gradient(135deg, #F0F4FF 0%, #6C63FF 100%);
-webkit-background-clip: text !important;
-webkit-text-fill-color: transparent !important;
background-clip: text !important;
}