-
- 3b180a41fe913487c1c86ad79c6dc085d01a272ac2da556f4bf7379ee3a535f8
-
+ .fingerprint-widget:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.4);
+ border-color: var(--link-hover-border);
+ }
+
+ /* Copy button styles */
+ .info-value-wrapper {
+ display: flex;
+ align-items: center;
+ gap: 12px;
+ justify-content: space-between;
+ }
+
+ .copy-button {
+ background: rgba(255, 255, 255, 0.05);
+ border: 1px solid var(--container-border);
+ border-radius: 8px;
+ padding: 8px;
+ cursor: pointer;
+ transition: all 0.2s ease;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ width: 36px;
+ height: 36px;
+ flex-shrink: 0;
+ }
+
+ .copy-button:hover {
+ background: rgba(255, 255, 255, 0.1);
+ border-color: var(--accent-color);
+ transform: scale(1.05);
+ }
+
+ .copy-button.copied {
+ background: rgba(74, 222, 128, 0.2);
+ border-color: rgba(74, 222, 128, 0.5);
+ }
+
+ .copy-icon {
+ width: 18px;
+ height: 18px;
+ color: var(--text-color);
+ flex-shrink: 0;
+ }
+
+ /* Resourcepack widget styles */
+ .resourcepack-widget {
+ background: var(--link-bg);
+ border-radius: 16px;
+ padding: 0;
+ border: 1px solid var(--container-border);
+ backdrop-filter: blur(12px);
+ -webkit-backdrop-filter: blur(12px);
+ box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.3);
+ margin: 24px 0;
+ transition: all 0.3s ease;
+ overflow: hidden;
+ }
+
+ .resourcepack-widget:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.4);
+ border-color: var(--link-hover-border);
+ }
+
+ .resourcepack-link {
+ display: flex;
+ align-items: center;
+ gap: 16px;
+ padding: 20px 24px;
+ text-decoration: none;
+ color: var(--text-color);
+ transition: all 0.2s ease;
+ }
+
+ .resourcepack-link:hover {
+ background: rgba(255, 255, 255, 0.05);
+ }
+
+ .resourcepack-icon {
+ width: 32px;
+ height: 32px;
+ color: var(--accent-color);
+ flex-shrink: 0;
+ }
+
+ .resourcepack-link div {
+ flex: 1;
+ }
+
+ .resourcepack-link strong {
+ display: block;
+ font-size: 1.1rem;
+ margin-bottom: 4px;
+ }
+
+ .resourcepack-desc {
+ font-size: 0.9rem;
+ color: var(--text-muted);
+ }
+
+ .download-icon {
+ width: 24px;
+ height: 24px;
+ color: var(--text-muted);
+ flex-shrink: 0;
+ }
+
+ /* Disable card hover for copy cards */
+ #fingerprintCard {
+ cursor: default !important;
+ }
+
+ #fingerprintCard:hover {
+ transform: none !important;
+ }
+
+
+
+
+
+
+
+
+
+ Krzak.org - Minecraft
+
+
+
-
-
-
-
+
+
-
-
-
+
+
-
+ async function updateStatus() {
+ renderStatus(await fetchServerStatus());
+ }
+ // Initial load and auto-refresh
+ updateStatus();
+ setInterval(updateStatus, REFRESH_INTERVAL);
+
+