File tree Expand file tree Collapse file tree 1 file changed +53
-0
lines changed
Expand file tree Collapse file tree 1 file changed +53
-0
lines changed Original file line number Diff line number Diff line change @@ -485,6 +485,51 @@ def fatal(msg):
485485 min-width: 25px;
486486 text-align: center;
487487 }
488+ .powered-by {
489+ position: fixed;
490+ bottom: 12px;
491+ right: 16px;
492+ font-size: 11px;
493+ color: #64748b;
494+ font-family: 'JetBrains Mono', 'Fira Code', monospace;
495+ z-index: 50;
496+ display: flex;
497+ align-items: center;
498+ gap: 4px;
499+ opacity: 0.6;
500+ transition: opacity 0.2s ease;
501+ text-decoration: none;
502+ }
503+ .powered-by:hover {
504+ opacity: 1;
505+ }
506+ .powered-by span {
507+ color: #3b82f6;
508+ font-weight: 600;
509+ }
510+ .toolbar-link {
511+ text-decoration: none;
512+ display: flex;
513+ align-items: center;
514+ gap: 4px;
515+ font-size: 10px;
516+ font-family: 'JetBrains Mono', 'Fira Code', monospace;
517+ color: #94a3b8;
518+ opacity: 0.8;
519+ transition: all 0.2s ease;
520+ padding: 2px 8px;
521+ border-radius: 6px;
522+ margin-left: 4px;
523+ }
524+ .toolbar-link:hover {
525+ opacity: 1;
526+ background: rgba(51, 65, 85, 0.3);
527+ color: #f1f5f9;
528+ }
529+ .toolbar-link span {
530+ color: #3b82f6;
531+ font-weight: 700;
532+ }
488533 </style>
489534</head>
490535<body>
@@ -513,6 +558,11 @@ def fatal(msg):
513558 <label for="cb-timestamp" style="font-size: 11px; cursor: pointer; user-select: none;">Timestamp</label>
514559 </div>
515560 </div>
561+ <div class="toolbar-group" style="border-right: none; padding-right: 0; margin-right: 0;">
562+ <a href="https://anyvm.org" target="_blank" class="toolbar-link">
563+ <span>AnyVM.org</span>
564+ </a>
565+ </div>
516566 </div>
517567 <div class="toolbar">
518568 <div class="toolbar-group" id="vnc-only-sticky">
@@ -559,6 +609,9 @@ def fatal(msg):
559609 <svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M8 3H5a2 2 0 0 0-2 2v3m18 0V5a2 2 0 0 0-2-2h-3m0 18h3a2 2 0 0 0 2-2v-3M3 16v3a2 2 0 0 0 2 2h3"></path></svg>
560610 </button>
561611 </div>
612+ <a href="https://anyvm.org" target="_blank" class="powered-by">
613+ Powered by <span>AnyVM.org</span>
614+ </a>
562615
563616<script>
564617var AUDIO_ENABLED = AUDIO_ENABLED || false;
You can’t perform that action at this time.
0 commit comments