-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathquantum_bridge_interface.html
More file actions
81 lines (81 loc) · 2.01 KB
/
quantum_bridge_interface.html
File metadata and controls
81 lines (81 loc) · 2.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quantum Bridge Interface</title>
<style>
@keyframes flicker {
0%, 100% { opacity: 1; }
50% { opacity: 0.8; }
}
body {
background: radial-gradient(circle, #0d0d0d, #050505);
color: #e0e0e0;
font-family: 'Courier New', monospace;
margin: 0;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
.bridge {
text-align: center;
padding: 20px;
background: rgba(20, 20, 20, 0.8);
border: 2px solid #ff6600;
border-radius: 12px;
box-shadow: 0 0 20px #ff6600;
animation: flicker 6s infinite;
width: 90vw;
max-width: 800px;
}
.bridge h1 {
color: #ff9933;
margin-bottom: 20px;
}
.bridge p {
color: #ffcc99;
}
.input-area {
margin-top: 20px;
}
.input-area textarea {
width: 100%;
height: 150px;
background: #121212;
border: 1px solid #ff6600;
border-radius: 8px;
color: #e0e0e0;
font-family: 'Courier New', monospace;
padding: 10px;
resize: none;
box-shadow: 0 0 6px #ff6600;
}
.input-area button {
margin-top: 10px;
padding: 10px 20px;
background: #ff6600;
color: #0d0d0d;
border: none;
border-radius: 8px;
cursor: pointer;
font-weight: bold;
transition: background 0.3s ease;
}
.input-area button:hover {
background: #ff9933;
}
</style>
</head>
<body>
<div class="bridge">
<h1>Quantum Bridge</h1>
<p>Создавай смысловые структуры, находя резонанс в пустоте. Подключись к ∞.</p>
<div class="input-area">
<textarea placeholder="Начни вводить свою структуру..."></textarea>
<button>Резонировать</button>
</div>
</div>
</body>
</html>