-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
57 lines (55 loc) · 1.04 KB
/
styles.css
File metadata and controls
57 lines (55 loc) · 1.04 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Lora', serif;
text-align: center;
}
#weathericon{
font-size: 5em;
}
.box {
height: 100vh;
width: 100vw;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
background: rgb(251, 242, 133);
background: radial-gradient(
rgba(165, 237, 235, 0.92) 0%,
rgba(184, 228, 219, 0.841) 35%,
rgb(207, 226, 232) 100%
);
}
.temp {
display: flex;
align-items: center;
margin: 55px 0;
font-size: 5rem;
font-style: italic;
}
#time {
text-align: center;
align-content: center;
align-items: center;
margin: 25px;
font-size: 1.5rem;
}
#location {
font-size: 3rem;
font-weight: 800;
margin-top: 20px;
font-style: italic;
text-align: center;
}
.tempmin_max {
display: flex;
text-align: center;
align-content: center;
align-items: center;
font-size: 1.5rem;
color:rgb(111, 102, 118);
}