-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
59 lines (52 loc) · 966 Bytes
/
style.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
body {
font-family: Arial, sans-serif;
background: linear-gradient(120deg, #bfc7ec, #d5ecea);
margin: 0;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
#weather-container {
width: 90%;
max-width: 450px;
padding: 30px;
border: 1px solid #ccc;
border-radius: 10px;
background-color: rgba(255, 255, 255, 0.8);
text-align: center;
}
h2 {
font-size: 24px;
color: #333;
}
input {
width: 80%;
padding: 10px;
margin: 15px 0;
font-size: 16px;
border: 1px solid #ddd;
border-radius: 5px;
}
button {
padding: 10px 20px;
background-color: #28a745;
border: none;
color: white;
font-size: 16px;
cursor: pointer;
border-radius: 5px;
}
button:hover {
background-color: #218838;
}
#weather-info {
margin-top: 20px;
font-size: 18px;
color: #333;
}
@media (max-width: 600px) {
#weather-container {
width: 90%;
}
}