File size: 3,531 Bytes
f4bd5aa
 
e9a0f68
f4bd5aa
 
9e5bf79
f4bd5aa
 
e9a0f68
f4bd5aa
 
 
 
9e5bf79
 
f4bd5aa
 
 
e9a0f68
 
f4bd5aa
 
 
 
d22e670
f4bd5aa
d22e670
f4bd5aa
e9a0f68
d22e670
 
 
 
f4bd5aa
d22e670
 
 
 
f4bd5aa
d22e670
 
 
 
 
f4bd5aa
9e5bf79
 
f4bd5aa
 
e9a0f68
f4bd5aa
 
 
 
 
9e5bf79
d9b4f7b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e9a0f68
 
 
 
 
d9b4f7b
f4bd5aa
e9a0f68
f4bd5aa
 
 
 
 
e9a0f68
 
f4bd5aa
 
e9a0f68
f4bd5aa
 
 
 
 
 
 
 
e9a0f68
f4bd5aa
 
 
e9a0f68
f4bd5aa
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e9a0f68
 
f4bd5aa
 
 
 
 
 
 
 
 
 
 
e9a0f68
f4bd5aa
 
d22e670
 
 
 
 
 
 
 
 
 
 
 
 
f4bd5aa
d22e670
 
 
 
f4bd5aa
d22e670
 
 
 
 
 
 
 
 
 
9e5bf79
d22e670
 
4b9c0e6
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
/* General styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: row;
    min-height: 100vh;
    background-color: #000;
    color: #fff;
}

/* Sidebar styling */
.sidebar {
    width: 60px;
    background-color: #333;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    gap: 20px;
}
.prompt-icon, .video-icon {
    cursor: pointer;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.prompt-icon img, .video-icon img {
    width: 36px;
    height: 36px;
    transition: transform 0.2s ease, filter 0.2s ease;
}
.prompt-icon img:hover, .video-icon img:hover {
    transform: scale(1.2);
    filter: brightness(1.2);
}
.prompt-icon span, .video-icon span {
    font-size: 12px;
}

/* Main content styling */
.container {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.top-bar {
    position: absolute;
    top: 0;
    width: 100%;
    background-color: #444;
    color: white;
    text-align: center;
    padding: 10px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.top-bar h1 {
    flex: 1;
    text-align: center;
}
.nav-buttons {
    display: flex;
    gap: 10px;
}
.nav-buttons button {
    background-color: #666;
    color: white;
    border: none;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
}
.nav-buttons button:hover {
    background-color: #888;
}
.main {
    display: flex;
    height: 100%;
}
.content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #000;
}
.content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

/* Prompt box styling */
.prompt-box {
    position: absolute;
    top: 10%;
    left: 10%;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 20;
}
.prompt-box textarea {
    width: 100%;
    height: 60px;
    margin-bottom: 10px;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.prompt-box button {
    padding: 5px 10px;
    font-size: 14px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Response box styling */
.response-box {
    position: absolute;
    top: 30%;
    left: 10%;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 20;
}

/* Video overlay */
.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 30;
}
.video-overlay iframe {
    width: 80%;
    height: 80%;
    border: none;
}
.video-overlay .close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 31;
}
.video-overlay .close-button:hover {
    color: red;
}