DOMMETI commited on
Commit
df9c5ab
·
verified ·
1 Parent(s): b063d27

Update app.py

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