-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
45 lines (45 loc) · 848 Bytes
/
styles.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Lora', serif;
}
.container {
height: 100vh;
width: 100vw;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
background: rgb(251, 242, 133);
background: radial-gradient(
circle,
rgba(215, 215, 214, 0.633) 0%,
rgba(184, 184, 184, 0.841) 35%,
rgb(218, 217, 201) 100%
);
}
.weather {
display: flex;
align-items: center;
margin: 15px 0;
font-size: 1.5rem;
}
#location {
font-size: 3rem;
font-weight: 800;
font-style: italic;
}
.desc {
font-size: 1.25rem;
text-transform: capitalize;
}
.circle {
background-color: black;
border-radius: 50px;
height: 15px;
width: 15px;
margin: 0 15px;
}