-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
52 lines (46 loc) · 953 Bytes
/
style.css
File metadata and controls
52 lines (46 loc) · 953 Bytes
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
body {
background-image: url(https://bit.ly/4bcK1Hc);
background-repeat: no-repeat;
background-size: cover;
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
height: 100vh;
}
.weather-body {
background-color: rgba(227, 193, 173, 0.85);
position: relative;
top: 30%;
border: 1px solid;
border-radius: 5px;
min-width: 540px;
max-width: 50%;
margin: auto;
padding: 2em;
}
.search-input {
border-radius: 5px 0 0 5px;
border: none;
padding: 10px;
font-size: 16px;
width: 70%;
height: 42px;
}
.search-button {
border-radius: 0 5px 5px 0;
padding: 10px;
font-size: 16px;
width: 5em;
cursor: pointer;
}
.weather-data-body {
background-color: rgba(255, 255, 255, 0.85);
border-radius: 5px;
padding: 1.5em;
margin-top: 20px;
text-align: center;
align-items: center;
gap: 12px;
}
#dataImg {
border-radius: 50%;
background-color: lightskyblue;
}