Esmaeilkiani commited on
Commit
68d58fc
1 Parent(s): 06738ae

Update styles.css

Browse files
Files changed (1) hide show
  1. styles.css +47 -22
styles.css CHANGED
@@ -1,39 +1,64 @@
1
  /* styles.css */
2
-
3
  body {
4
- background-color: #f4f4f9;
5
- font-family: 'Arial', sans-serif;
6
- color: #333;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  }
8
 
9
- h1, h2, h3, h4, h5, h6 {
10
- color: #333;
 
 
11
  }
12
 
13
- .stButton button {
14
  background-color: #4CAF50;
15
  color: white;
16
  border: none;
17
  padding: 10px 20px;
18
- text-align: center;
19
- text-decoration: none;
20
- display: inline-block;
21
- font-size: 16px;
22
- margin: 4px 2px;
23
  cursor: pointer;
24
- border-radius: 16px;
25
  }
26
 
27
- .stFileUploader {
28
- background-color: #ffffff;
29
- border: 1px solid #cccccc;
30
- border-radius: 10px;
31
- padding: 20px;
32
  }
33
 
34
- .stDataFrame {
35
- border: 1px solid #cccccc;
36
- border-radius: 10px;
37
- margin-top: 20px;
 
 
 
 
 
 
 
 
 
 
38
  }
39
 
 
1
  /* styles.css */
 
2
  body {
3
+ font-family: 'IRANSans', sans-serif;
4
+ background-color: #f7f9fc;
5
+ margin: 0;
6
+ padding: 0;
7
+ direction: rtl;
8
+ }
9
+
10
+ header {
11
+ background-color: #4CAF50;
12
+ color: white;
13
+ text-align: center;
14
+ padding: 1rem 0;
15
+ font-size: 2rem;
16
+ }
17
+
18
+ .main-container {
19
+ margin: 20px;
20
+ }
21
+
22
+ section {
23
+ background-color: white;
24
+ border-radius: 5px;
25
+ padding: 20px;
26
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
27
+ margin-bottom: 20px;
28
  }
29
 
30
+ h2 {
31
+ border-bottom: 2px solid #4CAF50;
32
+ padding-bottom: 10px;
33
+ margin-bottom: 20px;
34
  }
35
 
36
+ button {
37
  background-color: #4CAF50;
38
  color: white;
39
  border: none;
40
  padding: 10px 20px;
41
+ border-radius: 5px;
 
 
 
 
42
  cursor: pointer;
 
43
  }
44
 
45
+ button:hover {
46
+ background-color: #45a049;
 
 
 
47
  }
48
 
49
+ input[type="file"] {
50
+ border: 1px solid #ccc;
51
+ border-radius: 5px;
52
+ padding: 10px;
53
+ }
54
+
55
+ footer {
56
+ background-color: #4CAF50;
57
+ color: white;
58
+ text-align: center;
59
+ padding: 1rem 0;
60
+ position: fixed;
61
+ bottom: 0;
62
+ width: 100%;
63
  }
64