Elbachaik commited on
Commit
3fe0bbf
·
verified ·
1 Parent(s): 0204fe9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -11
app.py CHANGED
@@ -12,13 +12,13 @@ st.markdown("""
12
  /* General styling */
13
  body {
14
  background-color: white;
15
- color: #0a3d62; /* Dark greenish-blue */
16
  }
17
 
18
  /* Chatbot title styling */
19
  .title {
20
  font-size: 48px;
21
- color: #0a3d62; /* Dark greenish-blue */
22
  text-align: center;
23
  font-family: 'Arial', sans-serif;
24
  }
@@ -26,8 +26,8 @@ st.markdown("""
26
  /* Response styling */
27
  .response {
28
  font-size: 20px;
29
- color: #0a3d62; /* Dark greenish-blue */
30
- background-color: #f5f5f5;
31
  border-radius: 10px;
32
  padding: 20px;
33
  margin: 20px 0;
@@ -36,8 +36,8 @@ st.markdown("""
36
 
37
  /* Button styling */
38
  button {
39
- background-color: #16a085; /* Green */
40
- color: white;
41
  font-size: 18px;
42
  padding: 10px;
43
  border-radius: 5px;
@@ -46,26 +46,27 @@ st.markdown("""
46
 
47
  /* Text area styling */
48
  textarea {
49
- border: 1px solid #16a085;
50
  border-radius: 5px;
51
  padding: 10px;
52
  font-size: 16px;
53
- color: #0a3d62;
54
  }
55
 
56
  /* Footer styling */
57
  footer {
58
  text-align: center;
59
  font-size: 14px;
60
- color: #16a085;
61
  margin-top: 50px;
62
  }
63
-
64
  </style>
65
  """, unsafe_allow_html=True)
 
66
  # Add the image at the top
67
  image_url = "https://th.bing.com/th/id/OIP.9aA0fOLzb4r7HUPzWKvUiwAAAA?rs=1&pid=ImgDetMain" # Replace this with your image URL
68
  st.image(image_url, use_column_width=True)
 
69
  # Create a Streamlit app
70
  st.markdown("<div class='title'>KYC SUD CONSULTING Chatbot</div>", unsafe_allow_html=True)
71
  st.markdown("### Ask me anything about our company!")
@@ -86,4 +87,3 @@ st.write("\n\n")
86
  # Add a footer with some text
87
  st.markdown("<footer>Powered by KYC SUD CONSULTING</footer>", unsafe_allow_html=True)
88
 
89
-
 
12
  /* General styling */
13
  body {
14
  background-color: white;
15
+ color: black; /* Black text */
16
  }
17
 
18
  /* Chatbot title styling */
19
  .title {
20
  font-size: 48px;
21
+ color: #004d00; /* Dark green */
22
  text-align: center;
23
  font-family: 'Arial', sans-serif;
24
  }
 
26
  /* Response styling */
27
  .response {
28
  font-size: 20px;
29
+ color: black; /* Black text */
30
+ background-color: #f5f5f5; /* Light gray background */
31
  border-radius: 10px;
32
  padding: 20px;
33
  margin: 20px 0;
 
36
 
37
  /* Button styling */
38
  button {
39
+ background-color: #004d00; /* Dark green */
40
+ color: white; /* White text */
41
  font-size: 18px;
42
  padding: 10px;
43
  border-radius: 5px;
 
46
 
47
  /* Text area styling */
48
  textarea {
49
+ border: 1px solid #004d00; /* Dark green border */
50
  border-radius: 5px;
51
  padding: 10px;
52
  font-size: 16px;
53
+ color: black; /* Black text */
54
  }
55
 
56
  /* Footer styling */
57
  footer {
58
  text-align: center;
59
  font-size: 14px;
60
+ color: #004d00; /* Dark green */
61
  margin-top: 50px;
62
  }
 
63
  </style>
64
  """, unsafe_allow_html=True)
65
+
66
  # Add the image at the top
67
  image_url = "https://th.bing.com/th/id/OIP.9aA0fOLzb4r7HUPzWKvUiwAAAA?rs=1&pid=ImgDetMain" # Replace this with your image URL
68
  st.image(image_url, use_column_width=True)
69
+
70
  # Create a Streamlit app
71
  st.markdown("<div class='title'>KYC SUD CONSULTING Chatbot</div>", unsafe_allow_html=True)
72
  st.markdown("### Ask me anything about our company!")
 
87
  # Add a footer with some text
88
  st.markdown("<footer>Powered by KYC SUD CONSULTING</footer>", unsafe_allow_html=True)
89