-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
39 lines (34 loc) · 670 Bytes
/
Copy pathstyle.css
File metadata and controls
39 lines (34 loc) · 670 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
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');
body {
margin: 0;
padding: 0;
color: white;
font-family: 'Montserrat', sans-serif;
display: flex;
overflow: hidden;
text-align: center;
align-content: center;
justify-content: center;
}
.widget {
background: rgba(0, 0, 0, 0.3);
border-radius: 20px;
padding: 16px;
box-shadow: 0 0 25px rgba(0, 0, 0, .8);
margin: auto;
position: absolute;
top: 20%;
align-content: center;
}
.city {
font-weight: 300;
margin-bottom: 12px;
}
.temp {
font-weight: 500;
margin-top: 6px;
}
.desc {
margin-top: 6px;
text-transform: capitalize;
}