blob: 91c618835c5cc33c9b3e5c48586ee2bbb636c827 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
/* gizmo */
#lcolonq-gizmo-body {
width: 100vw;
height: 100vh;
}
#lcolonq-gizmo {
width: 100%;
height: 100%;
}
#lcolonq-gizmo-top {
position: absolute;
opacity: 0;
transition: opacity 0.2s ease-in-out;
right: 0px;
top: 0px;
color: white;
background-color: black;
padding-top: 1rem;
padding-left: 1rem;
padding-right: 1rem;
padding-bottom: 1rem;
}
#lcolonq-gizmo-top:hover {
opacity: 1;
}
#lcolonq-gizmo-bottom {
background-color: white;
width: 100%;
height: 100%;
}
#lcolonq-gizmo-contents {
border: none;
width: 100%;
height: 100%;
}
|