-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.css
108 lines (88 loc) · 1.54 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
html, body {
height: 100%;
width: 100%;
}
body {
margin: 0;
padding: 0;
color: white;
font-size: 3em;
font-family: 'Ubuntu';
background-color: black;
max-height: 100%;
overflow: hidden;
}
a {
color: #eaeaea;
}
.content {
display: flex;
flex-direction: column;
align-items: center;
align-content: center;
justify-content: center;
text-align: center;
min-height: 700px;
}
.content img, .content video {
flex-grow: 1;
min-height: 700px;
min-width: 700px;
max-width: 100%;
max-height: 100%;
object-fit: cover;
}
.content a {
text-decoration: none;
}
.content .msg {
font-size: 2.5em;
font-family: 'IntuitiveRegular';
}
.content .author {
color: rgba(255, 255, 255, 0.8);
}
#progress {
height: 5px;
background: #acbad5;
top: 0;
left: 0;
position: absolute;
width:0%;
overflow:hidden;
-webkit-transition: width 7s linear;
-moz-transition: width 7s linear;
-o-transition: width 7s linear;
transition: width 7s linear;
}
#progress.run {
width: 100%;
}
#infos {
position: fixed;
align-items: baseline;
bottom: 0;
left: 0;
right: 0;
color: rgba(255, 255, 255, 0.5);
text-align: center;
background: rgba(0, 0, 0, 0.8);
font-size: 0.6em;
}
#instructions strong, #instructions em {
color: white;
}
#links {
font-size: 0.6em;
}
.icon {
font-style: normal;
font-size: 2em;
color: white;
}
.icon.audio::after {
content: "🔊";
}
.icon.file::after {
content: "📎";
}