-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
76 lines (66 loc) · 1.28 KB
/
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
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
* {
box-sizing: border-box;
}
html,
body {
background: #000;
color: #fff;
font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 400;
border: 0;
height: 100%;
width: 100%;
text-align: center;
display: -webkit-flex;
-webkit-justify-content: center;
-webkit-align-items: center;
}
#weather_data {
display: -webkit-flex;
-webkit-flex: 1;
-webkit-flex-flow: wrap;
-webkit-align-items: center;
}
#weather_chart {
min-height: 90%;
-webkit-flex: 3;
}
#weather_data dt,
#weather_data dd {
margin: 0;
-webkit-flex: 1 50%;
}
#weather_data dt {
padding-right: 3%;
color: #666;
font-size: 36px;
font-weight: 300;
text-align: right;
-webkit-flex: 1 33%;
}
#weather_data dd {
padding-left: 3%;
font-size: 96px;
font-weight: 600;
text-align: left;
}
#weather_data dt:first-of-type,
#weather_data dd:first-of-type {
padding: 0;
text-align: center;
text-indent: 0;
-webkit-flex: 0 100%;
}
#weather_data dt:first-of-type {
font-size: 36px;
}
#weather_data dd:first-of-type {
font-size: 144px;
font-weight: 700;
line-height: 1;
margin-bottom: 40px;
}
#weather_condition {
margin-top: 40px;
-webkit-flex: 1 50%;
}