-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
82 lines (70 loc) · 1.84 KB
/
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
body {
margin: 0;
font-family: "Roboto", sans-serif;
background-color: #000;
}
header {
margin-top: 3em;
text-align: center;
color: white;
}
header h1 {
font-size: 2em;
font-weight: 900;
}
#container3D canvas {
width: 100vw !important;
height: 100vh !important;
position: absolute;
top: 0;
left: 0;
}
@font-face {
font-family: 'Roboto';
src: url('./libs/fonts/Roboto-VariableFont_wdth,wght.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Roboto Mono';
src: url('./libs/fonts/RobotoMono-VariableFont_wght.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Roboto Serif';
src: url('./libs/fonts/Roboto-Italic-VariableFont_wght.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Courier New';
src: local('Courier New'), local('Courier'), url('./fonts/Courier-New.ttf') format('truetype');
}
@font-face {
font-family: 'Arial';
src: local('Arial'), url('./fonts/Arial.ttf') format('truetype');
}
#SignalNoiseLogo {
position: fixed; /* Fixes it in place */
top: 0vh; /* Adjust the distance from the top */
left: 50%; /* Center it horizontally */
transform: translateX(-50%);
width: 20vw; /* Adjust width */
height: auto; /* Maintain aspect ratio */
z-index: 1000; /* Ensure it stays on top */
}
#camera-info {
position: fixed;
bottom: 2%;
left: 50%;
transform: translateX(-50%);
background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
padding: 5px 5px;
border-radius: 2vh;
font-family: 'Roboto Mono', monospace;
font-size: 1vh;
color: yellow;
z-index: 1000; /* Ensure it's on top */
pointer-events: none; /* Non-interruptive */
}