dschandra commited on
Commit
b508f8d
·
verified ·
1 Parent(s): b1c152d

Create static/style.css

Browse files
Files changed (1) hide show
  1. static/style.css +88 -0
static/style.css ADDED
@@ -0,0 +1,88 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body {
2
+ background-color: #1A2329;
3
+ font-family: Arial, sans-serif;
4
+ color: #FFFFFF;
5
+ margin: 0;
6
+ padding: 0;
7
+ }
8
+
9
+ .container {
10
+ max-width: 1200px;
11
+ margin: 0 auto;
12
+ padding: 20px;
13
+ }
14
+
15
+ header {
16
+ background-color: #212A31;
17
+ padding: 20px;
18
+ text-align: center;
19
+ border-radius: 10px;
20
+ margin-bottom: 20px;
21
+ }
22
+
23
+ header h1 {
24
+ margin: 0;
25
+ font-size: 2.5em;
26
+ }
27
+
28
+ header p {
29
+ color: #D3D9D4;
30
+ margin: 5px 0;
31
+ }
32
+
33
+ .input-section {
34
+ background-color: #2E3944;
35
+ padding: 20px;
36
+ border-radius: 10px;
37
+ display: flex;
38
+ justify-content: center;
39
+ gap: 10px;
40
+ margin-bottom: 20px;
41
+ }
42
+
43
+ input, select, button {
44
+ padding: 10px;
45
+ font-size: 1em;
46
+ border: none;
47
+ border-radius: 5px;
48
+ }
49
+
50
+ input {
51
+ width: 50%;
52
+ background-color: #D3D9D4;
53
+ }
54
+
55
+ select {
56
+ background-color: #D3D9D4;
57
+ }
58
+
59
+ button {
60
+ background-color: #748D92;
61
+ color: #212A31;
62
+ cursor: pointer;
63
+ transition: background-color 0.3s;
64
+ }
65
+
66
+ button:hover {
67
+ background-color: #A8B5B9;
68
+ }
69
+
70
+ .weather-summary {
71
+ background-color: #2E3944;
72
+ padding: 20px;
73
+ border-radius: 10px;
74
+ margin-bottom: 20px;
75
+ }
76
+
77
+ .charts {
78
+ display: grid;
79
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
80
+ gap: 20px;
81
+ }
82
+
83
+ .chart {
84
+ background-color: #2E3944;
85
+ padding: 10px;
86
+ border-radius: 10px;
87
+ min-height: 300px;
88
+ }