blob: bea73e6c5109e7b104edb3a1f0a6020b7d5935f8 (
plain)
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
|
/*
* viewer.css
* Part of Pointless Viewer, a Beamer presentation viewer
* Copyright 2018 Pacien TRAN-GIRARD
* License: GNU GPL v3
*/
body {
background-color: black;
color: white;
font-family: sans-serif;
overflow: hidden;
}
#fileInput {
display: none;
}
.centered {
position: absolute;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
}
.notification {
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
padding: 0.5rem 1rem;
border-radius: 1rem 1rem 0 0;
background-color: black;
font-size: 1.6rem;
}
.notification:empty {
display: none;
}
|