comparison Applications/Samples/Deprecated/SimpleViewer/Wasm/styles.css @ 1347:bfd77672d825 broker

Moved Application/Samples/* to Application/Samples/Deprecated/*
author Benjamin Golinvaux <bgo@osimis.io>
date Tue, 07 Apr 2020 14:29:01 +0200
parents Applications/Samples/SimpleViewer/Wasm/styles.css@daa04d15192c
children
comparison
equal deleted inserted replaced
1346:df8bf351c23f 1347:bfd77672d825
1 html, body {
2 width: 100%;
3 height: 100%;
4 margin: 0px;
5 border: 0;
6 overflow: hidden; /* Disable scrollbars */
7 display: block; /* No floating content on sides */
8 background-color: black;
9 color: white;
10 font-family: Arial, Helvetica, sans-serif;
11 }
12
13 canvas {
14 left:0px;
15 top:0px;
16 }
17
18 #canvas-group {
19 padding:5px;
20 background-color: grey;
21 }
22
23 #status-group {
24 padding:5px;
25 }
26
27 #worklist-group {
28 padding:5px;
29 }
30
31 .vsol-button {
32 height: 40px;
33 }
34
35 #thumbnails-group ul li {
36 display: inline;
37 list-style: none;
38 }
39
40 .thumbnail {
41 width: 100px;
42 height: 100px;
43 padding: 3px;
44 }
45
46 .thumbnail-selected {
47 border-width: 1px;
48 border-color: red;
49 border-style: solid;
50 }
51
52 #template-thumbnail-li {
53 display: none !important;
54 }