-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
96 lines (81 loc) · 1.45 KB
/
index.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
body {
font-family: "Poppins", sans-serif;
background-color: #f4f4f9;
color: #333;
margin: 0;
padding: 20px;
display: flex;
flex-direction: column;
align-items: center;
}
h1.title {
color: #2c3e50;
margin-bottom: 20px;
}
.input-div {
margin-bottom: 10px;
}
input {
font-family: "Poppins", sans-serif;
padding: 10px;
border: 1px solid #bdc3c7;
border-radius: 4px;
width: 250px;
background-color: #ecf0f1;
color: #2c3e50;
}
input::placeholder {
color: #95a5a6;
}
.button-div {
margin: 10px 0;
}
button {
font-family: "Poppins", sans-serif;
padding: 10px 15px;
background-color: #3498db;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s;
}
button:hover {
background-color: #2980b9;
}
.output-div {
margin-top: 20px;
width: 100%;
}
.weather-factors {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.factor {
flex: 1 1 calc(33.33% - 10px);
margin: 5px;
padding: 10px;
background-color: #ffffff;
border: 1px solid #bdc3c7;
border-radius: 4px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.factor h4 {
color: #2c3e50;
}
.factor p {
color: #34495e;
}
footer {
margin-top: 20px;
font-size: 14px;
color: #aaaaaa;
}
footer a {
color: #1e90ff;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}