DOMMETI commited on
Commit
5d713de
·
verified ·
1 Parent(s): 18d97c5

Update pages/Steps_Involved_In_DataAnalysis.py

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