๐Ÿ“ฆ rparrett / wwd

๐Ÿ“„ main.css ยท 70 lines
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
70body {
    font-family: 'Roboto', sans-serif;
    background-color: #002b36;
    color: #586e75;
}
h1, h2, h3, h4, h5, h6, strong {
    color: #6e8992;
}
a {
    color: #268bd2;
    text-decoration: none;
}
a:visited {
    color: #268bd2;
}
a:active {
    color: #4ca2df;
}
a:hover {
    color: #4ca2df;
}
.forecasts {
    column-count: 1;
}
.forecast {
    margin-bottom: 1em;
    break-inside: avoid;
}
.forecast .location-name {
    margin-bottom: 0.2em;
}
.forecast .day div:nth-child(1) {
    float: left;
    width: 6em;
}
.forecast .day div:nth-child(2) {
    float: left;
    width: 2em;
}
.forecast .day div:nth-child(3) {
    float: left;
    width: 2em;
}
.forecast .day div:nth-child(4) {
    float: left;
}
.clearfix:after {
    content: "";
    display: table;
    clear: both;
}
.summary-cell {
    display: none;
}
.summary-only-row {
    display: block;
}

@media (min-width: 768px) {
    .summary-only-row {
        display: none !important;
    }
    .summary-cell {
        display: block !important;
    }
    .forecasts {
        column-count: 2 !important;
    }
}