aboutsummaryrefslogtreecommitdiff
path: root/pointless/viewer/viewer.css
blob: be4f876bd3a4559cc61a2d43dfe69c51c6070df8 (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
40
/*
 * viewer.css
 * Part of Pointless Viewer, a Beamer presentation viewer
 * Copyright 2018 Pacien TRAN-GIRARD
 * License: GNU GPL v3
 */

html, body {
  background-color: black;
  color: white;
  font-family: sans-serif;
  overflow: hidden;
  height: 100%;
}

#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;
}