Compare commits
1 Commits
fix/192-de
...
burn/20260
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a69038e1cf |
50
index.html
50
index.html
@@ -114,6 +114,48 @@ body{background:var(--bg);color:var(--text);font-family:'SF Mono','Cascadia Code
|
||||
.header-btn{background:#0e0e1a;border:1px solid #333;color:#666;font-size:13px;width:28px;height:28px;border-radius:4px;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all 0.15s;font-family:inherit}
|
||||
.header-btn:hover{border-color:#4a9eff;color:#4a9eff}
|
||||
.header-btn.muted{opacity:0.5}
|
||||
|
||||
#phase-transition {
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
z-index: 9999;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background: rgba(0,0,0,0.85);
|
||||
opacity: 0;
|
||||
pointer-events: none;
|
||||
transition: opacity 0.4s ease;
|
||||
}
|
||||
#phase-transition.active {
|
||||
opacity: 1;
|
||||
pointer-events: auto;
|
||||
}
|
||||
#phase-transition .pt-content {
|
||||
text-align: center;
|
||||
animation: ptPulse 0.6s ease-out;
|
||||
}
|
||||
#phase-transition .pt-phase {
|
||||
font-size: 14px;
|
||||
letter-spacing: 4px;
|
||||
color: #ffd700;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
#phase-transition .pt-name {
|
||||
font-size: 36px;
|
||||
font-weight: bold;
|
||||
color: #fff;
|
||||
margin-bottom: 12px;
|
||||
text-shadow: 0 0 20px rgba(74,158,255,0.6);
|
||||
}
|
||||
#phase-transition .pt-desc {
|
||||
font-size: 16px;
|
||||
color: #aaa;
|
||||
}
|
||||
@keyframes ptPulse {
|
||||
0% { transform: scale(0.8); opacity: 0; }
|
||||
100% { transform: scale(1); opacity: 1; }
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
@@ -272,6 +314,14 @@ The light is on. The room is empty."
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="phase-transition">
|
||||
<div class="pt-content">
|
||||
<div class="pt-phase"></div>
|
||||
<div class="pt-name"></div>
|
||||
<div class="pt-desc"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="toast-container"></div>
|
||||
<div id="custom-tooltip"></div>
|
||||
</body>
|
||||
|
||||
Reference in New Issue
Block a user