DOMMETI commited on
Commit
a6ab12b
·
verified ·
1 Parent(s): 88fc4a2

Update Home.py

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