blob: 2a918fd5fe085ed2f147c1337d252de092bb348e (
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
|
/* button */
body.lcolonq-button-body {
background-color: #eeeeee;
user-select: none;
}
.lcolonq-button {
position: absolute;
height: 90vh;
width: 40vw;
object-fit: fill;
image-rendering: pixelated;
border: dotted #888888;
margin-top: 5vh;
margin-bottom: 5vh;
margin-left: 5vw;
margin-right: 5vw;
}
a.lcolonq-button-link :hover {
background-color: #cccccc;
}
a.lcolonq-button-link :active {
background-color: #aaaaaa;
}
#lcolonq-button-green {
left: 0px;
}
#lcolonq-button-red {
right: 0px;
}
|