UNPKG

853 BCSSView Raw
1/* CSS for the lightbox context menu */
2/* see also LightBoxContextMenu.js and samples/htmlLightBoxContextMenu.html */
3#contextMenuDIV {
4
5}
6
7#cmLight {
8 top: 0px;
9 z-index:10002;
10 position: fixed;
11 text-align: center;
12 left: 25%;
13 width: 50%;
14 background-color: #F5F5F5;
15 padding: 16px;
16 border: 16px solid #444;
17 border-radius: 10px;
18 margin-top: 10px;
19}
20
21#cmDark {
22 z-index:10001;
23 position: fixed;
24 top: 0;
25 left: 0;
26 width: 100%;
27 height: 100%;
28 background-color: black;
29 opacity: 0.8;
30}
31
32#cmLight ul { list-style: none; }
33#cmLight li {
34 font:700 1.5em Helvetica, Arial, sans-serif;
35 position: relative;
36 min-width: 60px; }
37#cmLight a {
38 color: #444;
39 display: inline-block;
40 padding: 4px;
41 text-decoration: none;
42 margin: 2px;
43 border: 1px solid gray;
44 border-radius: 10px;
45}
\No newline at end of file