59 lines
770 B
CSS
59 lines
770 B
CSS
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;
|
|
}
|