Nag189 commited on
Commit
d175834
1 Parent(s): 00b0d1a

Create style.css

Browse files
Files changed (1) hide show
  1. style.css +45 -0
style.css ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Custom CSS for Streamlit App */
2
+
3
+ /* Header Style */
4
+ header {
5
+ background-color: #5072A7; /* A soothing shade of blue */
6
+ color: white; /* Ensuring the text on the header is white for contrast */
7
+ }
8
+
9
+ /* Main Body Style */
10
+ body {
11
+ font-family: Arial, sans-serif; /* Using a standard, readable font */
12
+ color: #333333; /* Dark grey color for the main text */
13
+ }
14
+
15
+ /* Titles and Headings */
16
+ h1, h2, h3 {
17
+ color: #333366; /* A darker shade of blue for headings */
18
+ }
19
+
20
+ /* Buttons */
21
+ button {
22
+ background-color: #4CAF50; /* A green color for buttons */
23
+ color: white;
24
+ padding: 10px 20px;
25
+ margin: 10px 0;
26
+ border: none;
27
+ cursor: pointer;
28
+ border-radius: 5px;
29
+ }
30
+
31
+ button:hover {
32
+ background-color: #45a049;
33
+ }
34
+
35
+ /* Footer Style */
36
+ footer {
37
+ background-color: #333333; /* Dark footer for contrast */
38
+ color: white;
39
+ text-align: center;
40
+ padding: 10px;
41
+ position: fixed;
42
+ left: 0;
43
+ bottom: 0;
44
+ width: 100%;
45
+ }