DOMMETI commited on
Commit
394749d
·
verified ·
1 Parent(s): ff2e1c6

Update Home.py

Browse files
Files changed (1) hide show
  1. Home.py +23 -15
Home.py CHANGED
@@ -3,48 +3,54 @@ import pandas as pd
3
  import numpy as np
4
  import random
5
  import requests
 
6
  st.markdown("""
7
  <style>
8
- /* Set a soft background color */
9
- body {
10
  background-color: #eef2f7;
11
  }
 
12
  /* Style for main title */
13
- h1 {
14
- color: #00FFFF;
15
  font-family: 'Roboto', sans-serif;
16
  font-weight: 700;
17
  text-align: center;
18
  margin-bottom: 25px;
19
  }
 
20
  /* Style for headers */
21
- h2 {
22
- color: #FFFACD;
23
  font-family: 'Roboto', sans-serif;
24
  font-weight: 600;
25
  margin-top: 30px;
26
  }
27
 
28
  /* Style for subheaders */
29
- h3 {
30
- color: #ba95b0;
31
  font-family: 'Roboto', sans-serif;
32
  font-weight: 500;
33
  margin-top: 20px;
34
  }
 
35
  .custom-subheader {
36
- color: #00FFFF;
37
  font-family: 'Roboto', sans-serif;
38
  font-weight: 600;
39
  margin-bottom: 15px;
40
  }
 
41
  /* Paragraph styling */
42
- p {
43
  font-family: 'Georgia', serif;
44
  line-height: 1.8;
45
- color: #FFFFFF; /* Darker text color for better visibility */
46
  margin-bottom: 20px;
47
  }
 
48
  /* List styling with checkmark bullets */
49
  .icon-bullet {
50
  list-style-type: none;
@@ -54,22 +60,24 @@ st.markdown("""
54
  font-family: 'Georgia', serif;
55
  font-size: 1.1em;
56
  margin-bottom: 10px;
57
- color: #FFFFF0; /* Darker text color for better visibility */
58
  }
59
  .icon-bullet li::before {
60
  content: "✔️";
61
  padding-right: 10px;
62
  color: #b3b3ff;
63
  }
 
64
  /* Sidebar styling */
65
- .sidebar .sidebar-content {
66
  background-color: #ffffff;
67
  border-radius: 10px;
68
  padding: 15px;
69
  }
70
- .sidebar h2 {
71
  color: #495057;
72
  }
73
  </style>
74
  """, unsafe_allow_html=True)
75
- st.title("AUTO ML")
 
 
3
  import numpy as np
4
  import random
5
  import requests
6
+
7
  st.markdown("""
8
  <style>
9
+ /* Apply background color to the main Streamlit app */
10
+ .stApp {
11
  background-color: #eef2f7;
12
  }
13
+
14
  /* Style for main title */
15
+ .stMarkdown h1 {
16
+ color: #00FFFF !important;
17
  font-family: 'Roboto', sans-serif;
18
  font-weight: 700;
19
  text-align: center;
20
  margin-bottom: 25px;
21
  }
22
+
23
  /* Style for headers */
24
+ .stMarkdown h2 {
25
+ color: #FFFACD !important;
26
  font-family: 'Roboto', sans-serif;
27
  font-weight: 600;
28
  margin-top: 30px;
29
  }
30
 
31
  /* Style for subheaders */
32
+ .stMarkdown h3 {
33
+ color: #ba95b0 !important;
34
  font-family: 'Roboto', sans-serif;
35
  font-weight: 500;
36
  margin-top: 20px;
37
  }
38
+
39
  .custom-subheader {
40
+ color: #00FFFF !important;
41
  font-family: 'Roboto', sans-serif;
42
  font-weight: 600;
43
  margin-bottom: 15px;
44
  }
45
+
46
  /* Paragraph styling */
47
+ .stMarkdown p {
48
  font-family: 'Georgia', serif;
49
  line-height: 1.8;
50
+ color: #333333 !important; /* Darker text color for better visibility */
51
  margin-bottom: 20px;
52
  }
53
+
54
  /* List styling with checkmark bullets */
55
  .icon-bullet {
56
  list-style-type: none;
 
60
  font-family: 'Georgia', serif;
61
  font-size: 1.1em;
62
  margin-bottom: 10px;
63
+ color: #333333 !important;
64
  }
65
  .icon-bullet li::before {
66
  content: "✔️";
67
  padding-right: 10px;
68
  color: #b3b3ff;
69
  }
70
+
71
  /* Sidebar styling */
72
+ .stSidebar .sidebar-content {
73
  background-color: #ffffff;
74
  border-radius: 10px;
75
  padding: 15px;
76
  }
77
+ .stSidebar h2 {
78
  color: #495057;
79
  }
80
  </style>
81
  """, unsafe_allow_html=True)
82
+
83
+ st.title("AUTO ML")