This commit is contained in:
2026-08-05 21:39:14 -05:00
commit b8d7e732d5
13 changed files with 1791 additions and 0 deletions

58
history.css Normal file
View File

@@ -0,0 +1,58 @@
body {
margin: 0;
font-family: Arial, sans-serif;
background: #0e1117;
color: #e6edf7;
}
.history-page {
max-width: 960px;
margin: 0 auto;
padding: 24px;
}
h1 {
margin: 0 0 8px;
}
p {
color: #aeb7cc;
}
#historyList {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 12px;
}
.history-item {
border: 1px solid #2a2f40;
border-radius: 8px;
padding: 12px;
background: #151a26;
}
.history-url {
margin: 0 0 8px;
word-break: break-all;
color: #d2d9ea;
font-size: 13px;
}
.history-meta {
margin: 0 0 10px;
color: #98a5c0;
font-size: 12px;
}
button {
border: 1px solid #2f66ff;
background: #2f66ff;
color: #fff;
border-radius: 6px;
cursor: pointer;
padding: 6px 10px;
}