comparison Applications/StoneWebViewer/WebApplication/app-fixes.css @ 1686:59fc37c10cfa

nicer info message at startup
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 25 Nov 2020 16:51:44 +0100
parents
children b180233143ae
comparison
equal deleted inserted replaced
1685:7896aac14587 1686:59fc37c10cfa
1 /* https://stackoverflow.com/a/16863182/881731 */
2 .tooltip {
3 position: fixed;
4 }
5
6
7 /* The following fixes the layout if Bootstrap CSS is not used */
8
9 /**
10 *,
11 *::before,
12 *::after {
13 box-sizing: border-box;
14 }
15 **/
16
17 .wvInfoScreen {
18 width: 100%;
19 height: 100%;
20 background-color: black;
21 position: fixed;
22 top: 0;
23 left: 0;
24 z-index: 9999;
25
26 display: flex;
27 align-items: center;
28 justify-content: center;
29 }
30
31 .wvInfoPopup {
32 background-color: black;
33 border: white;
34 border-style: solid;
35 border-radius: 5px;
36 border-width: 2px;
37 padding: 20px;
38 }
39
40 .wvInfoPopupCloseButton {
41 background-color: gray;
42 border: none;
43 border-radius: 5px;
44 padding: 7px;
45 }