-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdesign.css
More file actions
77 lines (66 loc) · 1.29 KB
/
Copy pathdesign.css
File metadata and controls
77 lines (66 loc) · 1.29 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
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
html {
font-size: 10px;
}
body {
height: 100vh;
/* background: linear-gradient(
rgb(40, 90, 180),
rgb(60, 120, 160),
rgb(40, 20, 20)
); */
background-image: url("https://www.kindpng.com/picc/m/51-515698_iphone-frame-png-iphone-x-transparent-background-png.png");
background-color: #f7f7f7;
background-size: contain;
background-position: center;
background-repeat: no-repeat;
color: white;
font-family: sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.location,
.temperature {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
color: rgba(0, 0, 0, 0.7);
}
.location h2 {
font-size: 2.2rem;
}
.temperature {
flex-direction: column;
}
.degree-section {
display: flex;
align-items: center;
cursor: pointer;
justify-content: space-around;
margin-bottom: 2rem;
}
.degree-section span {
display: flex;
margin: 1rem;
font-size: 1.5rem;
}
.degree-section h1 {
font-size: 4rem;
color: rgba(0, 0, 0, 0.7);
}
.temperature-description,
.temperature-description-mood {
font-size: 1.4rem;
color: rgba(0, 0, 0, 0.7);
}
.temperature-description-mood {
font-size: 1.6rem;
}