/* * 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; }