-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
93 lines (84 loc) · 1.48 KB
/
style.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
* {
padding: 0;
margin: 0;
border: 0;
}
html {
height: 100%;
}
body {
background: transparent no-repeat center;
background-size: cover;
min-height: 100%;
color: white;
text-align: center;
font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 2em;
display: flex;
flex-direction: column;
justify-content: center;
}
body.shorts-weather {
background-image: url('images/bg_shorts.jpg');
}
body.cold-weather {
background-image: url('images/bg_cold.jpg');
}
body.pants-weather {
background-image: url('images/bg_pants.jpg');
}
body.rain-weather {
}
body.snow-weather {
text-shadow: 0 0 5px #000;
}
body.rain-weather #video-background, body.snow-weather #video-background {
display: block;
}
#video-background {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: -1;
width: 100%;
height: 100%;
display: none;
}
.loading {
color: black;
}
.loading::after {
position: absolute;
overflow: hidden;
display: inline-block;
vertical-align: bottom;
-webkit-animation: ellipsis steps(4,end) 1500ms infinite;
animation: ellipsis steps(4,end) 1500ms infinite;
content: "\2026";
width: 0px;
}
@keyframes ellipsis {
to {
width: 1em;
}
}
@-webkit-keyframes ellipsis {
to {
width: 1em;
}
}
a {
color: #eee;
}
#footer {
position: fixed;
right: 16px;
bottom: 16px;
font-size: 0.4em;
color: #ddd;
}
#footer a {
color: #ddd;
}