-
Notifications
You must be signed in to change notification settings - Fork 0
/
template2_style.css
85 lines (75 loc) · 1.85 KB
/
template2_style.css
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
/* Main app styling*/
.stApp{
background-color: #ffffff;
color:#000000;
padding:20px;
}
/* Main app stlying - chat input class */
.stApp .stChatInput {
background-color: #d4d3d3;
border: 1px dashed #0c00e6;
border-radius: 5px;
padding: 0px 0px;
background-color: #f9f9f9;
font-size: 16px;
color: #333;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.stApp .stChatInput:hover {
box-shadow: 0 20px 8px rgba(0, 0, 0, 0.15);
border-color: #b60000;
}
/*Modify the streamlit native three dots in top right corner*/
.st-emotion-cache-w3nhqi.ef3psqc5 {
color: red !important;
}
/* Sidebar styling */
[data-testid="stSidebar"]{
background-color: #a7a7a7;
color: #ffffff;
}
[data-testid="stSidebarNav"] {
background-image: url(https://logolook.net/wp-content/uploads/2021/06/Microsoft-Logo.png);
background-repeat: no-repeat;
padding-top: 100px;
background-position: 20px -50px;
background-size: 300px;
}
[data-testid="stSidebarNav"]::before {
content: "";
margin-left: 60px;
margin-top: 20px;
font-size: 20px;
position: relative;
top: -300px;
font-weight: bold;
text-align: center;
}
/* Success message styling */
.success-message {
text-align: center;
margin: 20px 0;
}
/* Main title styling */
h1 {
color: #000400;
text-align: center;
margin-bottom: 20px;
font-family:cursive;
font-size: 50px;
}
/* Button styling */
.stButton button {
background-color: #0073e6;
color: white;
border-radius: 5px;
padding: 10px 20px;
font-size: 16px;
border: none;
cursor: pointer;
}
.stButton button:hover {
background-color: #005bb5;
color: yellow
}