Esmaeilkiani commited on
Commit
4356545
1 Parent(s): 9d61dec

Create styles.css

Browse files
Files changed (1) hide show
  1. styles.css +51 -0
styles.css ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* styles.css */
2
+
3
+ body {
4
+ background-color: #f4f4f9;
5
+ font-family: Arial, sans-serif;
6
+ color: #333;
7
+ }
8
+
9
+ .container {
10
+ max-width: 1200px;
11
+ margin: 0 auto;
12
+ padding: 20px;
13
+ background: #fff;
14
+ border-radius: 10px;
15
+ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
16
+ }
17
+
18
+ header {
19
+ text-align: center;
20
+ margin-bottom: 40px;
21
+ }
22
+
23
+ header h1 {
24
+ font-size: 2.5em;
25
+ margin: 0;
26
+ }
27
+
28
+ .chart-container {
29
+ display: flex;
30
+ justify-content: space-around;
31
+ flex-wrap: wrap;
32
+ gap: 20px;
33
+ }
34
+
35
+ .chart {
36
+ flex: 1;
37
+ min-width: 300px;
38
+ height: 300px;
39
+ border: 1px solid #ddd;
40
+ border-radius: 10px;
41
+ background: #fafafa;
42
+ padding: 20px;
43
+ box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
44
+ }
45
+
46
+ footer {
47
+ text-align: center;
48
+ margin-top: 40px;
49
+ font-size: 0.9em;
50
+ color: #666;
51
+ }