DOMMETI commited on
Commit
fb7da38
·
verified ·
1 Parent(s): 4a8d183

Update app.py

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