-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyles.css
More file actions
98 lines (83 loc) · 1.4 KB
/
Copy pathstyles.css
File metadata and controls
98 lines (83 loc) · 1.4 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
margin: 0;
padding: 0;
overflow: hidden; /* Prevent scrolling */
}
.container {
position: relative;
width: 100%;
height: 100vh;
}
#test-iframe {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: 1;
}
#overlay {
position: fixed;
top: 0;
right: 0;
width: 350px;
background-color: rgba(255, 255, 255, 0.9);
padding: 10px;
z-index: 1000;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
#overlay h1 {
font-size: 18px;
color: #333;
margin: 0 0 10px 0;
}
#video-container {
text-align: center;
}
#video-container img {
width: 300px;
height: auto;
border: 2px solid #333;
}
#instructions {
margin-top: 10px;
font-size: 14px;
color: #555;
}
#alerts {
margin-top: 10px;
font-size: 14px;
color: red;
}
#end-test {
margin-top: 10px;
}
#end-test h2 {
font-size: 16px;
color: #333;
}
#end-test form {
display: inline-block;
margin-top: 5px;
}
#end-test label {
font-size: 14px;
margin-right: 5px;
}
#end-test input[type="password"] {
padding: 3px;
font-size: 14px;
}
#end-test button {
padding: 3px 8px;
font-size: 14px;
background-color: #ff4444;
color: white;
border: none;
cursor: pointer;
}
#end-test button:hover {
background-color: #cc0000;
}