-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (49 loc) · 1.29 KB
/
Copy pathstyle.css
File metadata and controls
63 lines (49 loc) · 1.29 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
html, body {
margin: 0;
padding: 0;
overflow: hidden
}
body {
width: 100%;
height: 100%;
}
canvas {
display: block;
}
#globe-container {
position: absolute;
top: 0;
left: 0;
width: 100%; /* Ensure both containers fill the entire width of the viewport */
height: 100%; /* Ensure both containers fill the entire height of the viewport */
background-color: rgb(51, 51, 51);
}
#ui-container {
display: None;
position: fixed;
top: 0;
left: 0;
width: 30%;
height: 100%;
/*background-color: black;/* Ensure the container takes up the full height of the viewport */
}
/* Target elements with class 'slider' and 'colourPicker' inside #ui-container */
#ui-container .slider,
#ui-container .colourPicker {
width: 80%;
}
#edit_button {
position: absolute;
top: 10px; /* adjust as needed */
left: 10px; /* adjust as needed */
z-index: 1; /* ensure the button is above the globe */
border: none;
background-size: cover; /* Scale the background image to cover the entire button */
background-position: center; /* Center the background image */
background-color: rgba(0, 0, 0, 0); /* Adjust the alpha value (0.5 for 50% transparency) */
}
#edit_button svg {
background-color: grey;
border-radius: 50px;
border-color: black;
}