-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
61 lines (61 loc) · 998 Bytes
/
style.css
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
img{
max-width: 100%;
max-height: 100%;
}
body {
width: 100dvw;
height: 100dvh;
}
#file-input {
z-index: 1000;
}
#floorplan-container {
width: 100vw;
height: 100vh;
position: relative;
overflow: hidden;
}
#floorplan {
position: absolute;
top: 0;
left: 0;
transform-origin: 0 0;
}
.region {
position: absolute;
background-color: rgba(200, 200, 200, 0.5);
border: 1px solid #000;
}
.door {
position: absolute;
background-color: blue;
}
.furniture {
position: absolute;
background-color: orange;
cursor: pointer;
}
#tooltip {
position: absolute;
background-color: rgba(0, 0, 0, 0.7);
color: white;
padding: 5px;
border-radius: 3px;
display: none;
}
#zoom-controls {
position: absolute;
top: 0px;
right: 0px;
z-index: 1000;
}
#zoom-controls button {
font-size: 18px;
padding: 5px 10px;
margin: 0 5px;
}