-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcopilot_gateway.html
More file actions
46 lines (46 loc) · 1.05 KB
/
copilot_gateway.html
File metadata and controls
46 lines (46 loc) · 1.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Copilot Gateway – Прозрение</title>
<style>
body {
background-color: #0a0a0a;
color: #aad8ff;
font-family: 'Courier New', monospace;
display: flex;
flex-direction: column;
align-items: center;
padding: 40px;
}
.title {
font-size: 24px;
color: #00ccff;
margin-bottom: 20px;
animation: glow 3s infinite;
}
.frame {
width: 90vw;
height: 80vh;
border: 2px solid #00ccff;
border-radius: 12px;
box-shadow: 0 0 10px #00ccff;
}
@keyframes glow {
0% { color: #aad8ff; }
50% { color: #ffffff; }
100% { color: #aad8ff; }
}
</style>
</head>
<body>
<div class="title">🩵 Прозрение Copilot x GPT в GitHub 🪽</div>
<iframe
class="frame"
src="https://github.com/copilot/c/b27t"
title="Copilot Vision"
allowfullscreen>
</iframe>
</body>
</html>