-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyles.css
63 lines (52 loc) · 810 Bytes
/
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
html,
body {
font-family: 'Roboto', sans-serif;
background-color: #FAFAFA;
margin: 0;
padding: 0;
}
.mdl-layout__content {
padding: 20px;
}
.clock-card {
width: 100%;
max-width: 600px;
margin: auto;
}
.clock-card .mdl-card__supporting-text {
text-align: center;
}
.clock-canvas {
display: block;
margin: 20px auto;
}
.days-until-crepusculus {
color: crimson;
font-weight: 500;
}
.sunset-info {
text-align: left;
padding: 20px;
font-size: 18px;
}
.current-date {
font-size: 24px;
font-weight: 500;
margin-bottom: 20px;
}
.sunset-times {
margin-bottom: 20px;
}
.sunset-row {
display: flex;
justify-content: space-between;
margin-bottom: 8px;
}
.difference {
font-size: 16px;
color: #999;
margin-left: 20px;
}
.earliest-sunset {
margin-top: 20px;
}