-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.css
More file actions
28 lines (25 loc) · 705 Bytes
/
popup.css
File metadata and controls
28 lines (25 loc) · 705 Bytes
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
/* content.css */
/* Make sure WebGazer's video feed is properly positioned */
#webgazerVideoContainer {
position: fixed !important;
top: 0 !important;
left: 0 !important;
z-index: 9999 !important;
width: 320px !important;
height: 240px !important;
overflow: hidden !important;
}
/* Style for the calibration dot */
.webgazerGazeDot {
position: fixed !important;
z-index: 10000 !important;
width: 10px !important;
height: 10px !important;
border-radius: 50% !important;
background-color: red !important;
pointer-events: none !important;
}
/* Add a visual cue for elements being tracked */
*:hover {
outline: 1px dashed rgba(255, 0, 0, 0.3);
}