Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions github-account.html
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,11 @@
}
button:disabled { opacity: 0.6; cursor: not-allowed; }
.result { margin-top: 18px; padding: 16px; border-radius: 12px; background: #0b1220; border: 1px dashed rgba(148,163,184,0.25); }
.row { display: grid; grid-template-columns: 140px 1fr; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(148,163,184,0.1); }
.row { display: grid; grid-template-columns: 140px minmax(0, 1fr); gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(148,163,184,0.1); }
.row:last-child { border-bottom: none; }
.label { color: var(--muted); }
.value { font-weight: 600; }
.value { font-weight: 600; min-width: 0; overflow-wrap: break-word; }
.value .raw { display: block; font-weight: 400; }
.avatar {
width: 64px; height: 64px; border-radius: 50%; border: 1px solid rgba(148,163,184,0.25);
box-shadow: 0 6px 18px rgba(0,0,0,0.3); object-fit: cover;
Expand All @@ -83,6 +84,7 @@
@media (max-width: 520px) {
.lookup-row { grid-template-columns: 1fr; }
button { width: 100%; }
.row { grid-template-columns: 1fr; gap: 4px; padding: 12px 0; }
}
</style>
</head>
Expand Down Expand Up @@ -323,7 +325,7 @@ <h1>GitHub account lookup</h1>
</div>
<div class="row">
<div class="label">Created</div>
<div class="value">${sanitize(created)}<span class="muted"> (raw: ${sanitize(data.created_at)})</span></div>
<div class="value">${sanitize(created)}<span class="muted raw">raw: ${sanitize(data.created_at)}</span></div>
</div>
<div class="row">
<div class="label">API Latency</div>
Expand Down
Loading