forked from CareerDevelopmentHub/Beginner_WeatherAPP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
50 lines (50 loc) · 1.05 KB
/
Copy pathstyle.css
File metadata and controls
50 lines (50 loc) · 1.05 KB
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
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Mooli&family=Open+Sans:wght@300;400;500;600;700;800&family=Roboto:wght@100;300;400;500;700;900&display=swap");
* {
font-family: "Mooli", sans-serif;
}
body {
background-image: url("bg.jfif");
background-size: cover;
font-family: Arial, sans-serif;
color: #333;
text-align: center;
padding: 30px;
}
#weather {
background: #fff;
padding: 20px;
margin: 20px auto;
width: 80%;
max-width: 500px;
box-shadow: 2px 2px 15px rgba(0,0,0,0.1);
border-radius: 15px;
}
input[type="text"] {
width: 80%;
padding: 10px;
outline: none;
}
button {
width: 70%;
padding: 10px;
margin-top: 15px;
background: #333;
color: #fff;
border: none;
border-radius: 10px;
}
button:hover {
background: #444;
transform:scale(1.1);
}
#showCountry{
margin-bottom: 0;
}
#showWeather{
margin-top: 0%;
line-height: 25px;
}
p{
letter-spacing: 0.5px;
word-spacing: 3px;
}