-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css.txt
59 lines (52 loc) · 985 Bytes
/
style.css.txt
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
#weather-container {
display: flex;
flex-direction: column;
align-items: center;
background-color: #f2f2f2;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
form {
display: flex;
align-items: center;
margin-top: 50px;
}
input[type="text"] {
height: 40px;
font-size: 18px;
padding: 5px;
margin-right: 10px;
border: none;
border-radius: 5px;
box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
button[type="submit"] {
height: 50px;
font-size: 18px;
background-color: lightblue;
border: none;
color: white;
cursor: pointer;
border-radius: 5px;
box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
#weather-info {
margin-top: 20px;
text-align: center;
font-size: 24px;
}
.temperature {
color: #333;
font-size: 36px;
margin-top: 20px;
}
.weather-desc {
color: gray;
font-size: 18px;
margin-top: 10px;
}
.location {
font-size: 24px;
margin-top: 20px;
}