-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
94 lines (78 loc) · 1.45 KB
/
Copy pathstyle.css
File metadata and controls
94 lines (78 loc) · 1.45 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
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
86
87
88
89
90
91
92
93
94
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.root {
background-image: url("bg.png");
background-size: cover;
background-repeat: no-repeat;
display:flex;
flex-direction: column;
background-position-y: top;
background-size: 100%,100%;
width: 100%;
height: 100%;
color: rgb(176, 203, 0);
font-family: poppins;
min-height: 100vh;
}
.heading {
text-align: center;
font-family: anticode;
font-size: 3rem;
margin-bottom: 10px;
}
.sub-heading {
margin: 10px 0;
text-align: center;
font-family:akira expanded ;
font-size: 3rem;
}
.location-container {
margin: 10px 0;
}
.loc-input {
align-self: center;
border: 3px solid #b10789;
font-size: 1rem;
padding: 8px;
border-radius: 5000px;
margin: 10px;
width:500px;
}
.loc-input:invalid {
border: 3px solid #e11a66;
}
.search-btn {
padding: 10px 18px;
background-color: #000000;
border: none;
font-family: 'Poppins', sans-serif;
font-weight: 444400;
font-size: 1rem;
align-self: center;
border-radius: 54px;
color: #fff;
margin: 10px;
text-align: center;
cursor: pointer;
}
.air-quality, .arr, .air-quality-status {
font-size: 4rem;
font-weight: 700;
}
.component-names {
display: inline-block;
}
.component-container div {
margin: 10px 0;
}
.component-val {
font-size: 1.2rem;
margin-left: 20px;
}
footer {
margin-top: 40px;
text-align: center;
}