-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
58 lines (50 loc) · 1.11 KB
/
style.css
File metadata and controls
58 lines (50 loc) · 1.11 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
51
52
53
54
55
56
57
58
body {
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-image: url("9011110.jpg");
background-size: cover;
}
.container {
text-align: center;
background-color: #8282ef;
padding: 20px;
border-radius: 10px;
box-shadow: 10px 10px 10px rgba(0,0,0,2);
color: #010a50;
}
#head{
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
#weather-form {
margin-bottom: 20px;
border-radius: 10%;
}
#button{
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
border-radius: 10px;
background-color: #010a50;
color:#8282ef;
}
#city {
padding: 10px;
font-size: 16px;
}
#button {
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
}
#weather-result {
margin-top: 20px;
}
.weather-info {
margin: 10px 0;
}
.weather-info:hover{
transform: scale(1.2);
text-shadow: 5px 5px 5px black ;
}