-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (53 loc) · 935 Bytes
/
style.css
File metadata and controls
64 lines (53 loc) · 935 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
*{
padding: 0;
margin: 0;
font-family: sans-serif;
color: #FFF;
}
body{
background-position: center;
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
background-color: #1f2421;
width: 100%;
height: 100%;
}
img{
max-width: 255px;
width: 100%;
height: auto;
}
.main{
display: flex;
align-items: center;
justify-content: center;
background-color: #1f2421c1;
width: 35%;
margin: 30vh auto 0 auto;
padding: 25px;
border-radius: 5%;
}
#app{
text-align: center;
}
#app #location{
font-size: 25px;
}
#app #temp{
font-size: 4rem;
}
#app #city{
font-size: 25px;
}
#temps{
display: grid;
grid-template-columns: 50% 50%;
margin-top: 2%;
}
#temps #tempHigh{
margin-left: 50%;
}
#temps #tempLow{
margin-right: 50%;
}