-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
80 lines (67 loc) · 1.06 KB
/
styles.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
:root {
--body-padding: 40px;
}
html,
body {
font-family: 'Open Sans';
font-size: 14px;
margin: 0;
padding: 0;
}
body {
padding: var(--body-padding);
}
#model-container {
position: relative;
height: calc(100vh - var(--body-padding) * 2);
}
.explanations {
position: absolute;
color: white;
padding: 20px;
}
.povs {
position: absolute;
bottom: 0;
right: 0;
}
.view-commands,
.model-positions {
display: flex;
flex-direction: column;
}
.view-commands button:hover,
.model-positions button:hover {
cursor: pointer;
color: blue;
}
.control-points-list {
position: absolute;
right: 0;
background-color: rgba(0, 0, 0, 0.75);
color: white;
padding: 10px;
}
.control-points-list h3 {
margin: 0;
}
.list {
margin: 10px 0 0;
padding-left: 18px;
}
.list li {
border: 1px solid transparent;
padding: 2px 5px;
}
.list li:hover {
cursor: pointer;
border: 1px solid white;
}
#fullscreen {
position: absolute;
bottom: 0;
width: 36px;
height: 36px;
cursor: pointer;
background: url('./fullscreen.png') center no-repeat;
}