-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
76 lines (64 loc) · 1.15 KB
/
Copy pathstyle.css
File metadata and controls
76 lines (64 loc) · 1.15 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
body {
background-color: lightgrey;
}
.settings {
background-color: #808080d1;
z-index: 1000;
position: fixed;
right: 0px;
top: 0px;
}
.settings button {
width: 100%;
}
.container {
position: absolute;
width: 100%;
height: 100%;
/* background-image: url("UK007500.png"); */
background-size: auto;
overflow-y: scoll;
/* transform-origin: 0px 0px; */
transform: scale(1) translate(0px, 0px);
cursor: grab;
/* transform-origin: center; */
transform-origin: 0 0;
}
.item {
position: absolute;
/* touch-action: none;
user-select: none; */
/* transform: translate(0px, 0px); */
border: 1px solid black;
}
.itemMoveable {
touch-action: none;
user-select: none;
}
.highlight {
background-color: red !important;
border: 1px solid #00ff13;
}
.details {
background-color: grey;
z-index: 1000;
position: fixed;
bottom: 0px;
font-family: monospace;
}
#detailsTitle, #detailsText {
padding: 5px;
}
#detailsControls {
width: 100%;
text-align: right;
background-color: lightgrey;
}
.settings > ul {
list-style: none;
padding-left: 0px;
}
#backgroundImage {
touch-action: none;
user-select: none;
}