common.css (718B)
1 /* This Source Code Form is subject to the terms of the Mozilla Public 2 * License, v. 2.0. If a copy of the MPL was not distributed with this 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 5 * { 6 margin: 0; 7 padding: 0; 8 user-select: none; 9 10 font-family: "Open Sans", sans-serif; 11 } 12 13 .modal_mask:not([hidden]) { 14 background-color: #00cc00; 15 16 height: 100%; 17 width: 100%; 18 19 position: absolute; 20 top: 0; 21 left: 0; 22 } 23 24 .modal_container:not([hidden]) { 25 display: flex; 26 flex-direction: column; 27 justify-content: center; 28 align-items: center; 29 30 height: 100%; 31 width: 100%; 32 33 position: absolute; 34 top: 0; 35 left: 0; 36 } 37 38 .modal_hide { 39 display: none; 40 } 41 42 .modal_content { 43 position: absolute; 44 }