-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
43 lines (43 loc) · 891 Bytes
/
style.css
File metadata and controls
43 lines (43 loc) · 891 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
body{
background: linear-gradient(#5AB9F3,#00BCFF,#2F90FF);
display: flex;
justify-content: center;
align-items: center;
font-family: 'Poppins', sans-serif;
}
button{
/* border: none; */
padding: 0.5rem;
margin: 0.5rem;
cursor: pointer;
background-color: #2e2a2a00;
border: 1px solid black;
border-radius: 1rem;
box-shadow: 2.5px 5px #2e2a2a;
}
#weather{
border: 1px solid black;
padding: 2rem;
border-radius: 2rem;
box-shadow: 5px 10px #2e2a2a;
}
#location{
font-weight: 600;
font-size: 2rem;
display: flex;
flex-direction: row;
align-items: center;
}
@media only screen and (max-width:800px) {
#location{
flex-direction: column;
}
}
#temperature{
font-size: 1rem;
font-weight: 500;
}
#time{
font-size: 1rem;
font-weight: 500;
}