-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
85 lines (74 loc) · 1.3 KB
/
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
height: 100%;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
background-color: black;
}
header {
display: flex;
align-items: center;
justify-content: center;
padding: 20px 0px;
column-gap: 10vw;
}
input {
padding: 16px 8px;
background-color: transparent;
border: white solid 2px;
font-size: large;
color: white;
}
input:focus {
border: white solid 2px;
color: black;
background-color: white;
}
.backgroundImg {
position: fixed;
z-index: -1;
object-fit: cover;
height: 100vh;
width: 100vw;
}
button:active {
background-color: white;
color: black;
}
button {
background-color: transparent;
color: white;
border: white solid 2px;
font-size: large;
padding: 16px;
transition: all 0.7s;
}
#weatherContainer {
display: grid;
background-color: rgba(240, 128, 128, 0.582);
border: white solid 2px;
border-radius: 10px;
justify-content: center;
align-items: center;
margin-top: 5rem;
padding: 2rem;
text-align: center;
color: black;
row-gap: 4px;
}
#weatherInformation {
display: flex;
flex-direction: column;
row-gap: 8px;
}
#weatherInformation>span {
margin-top: 5px;
}
main {
display: flex;
justify-content: center;
align-items: center;
}