-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
44 lines (43 loc) · 822 Bytes
/
style.css
File metadata and controls
44 lines (43 loc) · 822 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
44
@import url("https://fonts.googleapis.com/css2?family=Righteous&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Concert+One&family=Righteous&display=swap");
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: "Righteous", cursive;
color: #fff;
}
body {
background: linear-gradient(to right, #373b44, #4286f4);
}
.container {
display: flex;
flex-direction: column;
width: 500px;
margin: 10vh auto;
}
.location {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.icon {
margin-top: 50px;
}
.temp {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.temp .temp-display {
display: flex;
margin: 50px 0;
}
span {
font-size: 1.5em;
}
.temp-description {
font-size: 2em;
}