-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
75 lines (65 loc) · 1.56 KB
/
Copy pathstyle.css
File metadata and controls
75 lines (65 loc) · 1.56 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
/* Custom styles for chat messages */
.chat-message-user {
background-color: #140A1E;
color: #fff;
padding: 10px;
border-radius: 10px;
margin: 10px 0;
}
.chat-message-agent {
background-color: #FF6049;
color: #fff;
padding: 10px;
border-radius: 10px;
margin: 10px 0;
}
/* Custom styles for buttons */
.stButton>button {
background-color: #1F2F44;
color: #fff;
border: none;
padding: 10px;
border-radius: 10px;
margin: 10px 0;
}
.stButton>button:hover {
background-color: #e05300;
color: #fff;
}
/* Custom styles for the input box */
.stTextInput input, .stTextArea textarea {
background-color: #1c2535;
color: #fff;
border: none;
border-radius: 10px;
}
/* Custom styles for the chat input */
.stChatInput input {
background-color: #1c2535;
color: #fff;
border: none;
border-radius: 10px;
}
/* Custom style for header with a different background color for a specific part */
.custom-header {
font-size: 24px; /* Adjust size if needed */
font-weight: bold;
}
.highlight {
background-color: #FF6049; /* Change this to your desired background color */
color: #152335; /* Change this to your desired text color */
padding: 5px;
border-radius: 5px;
}
/* Custom styles for sidebar buttons */
.sidebar .stButton>button {
background-color: #1F2F44; /* New color for buttons */
color: #fff;
border: none;
padding: 10px;
border-radius: 10px;
width: 100%;
}
.sidebar .stButton>button:hover {
background-color: #FF6049; /* color on hover */
}