131 lines
1.9 KiB
CSS
131 lines
1.9 KiB
CSS
body {
|
|
margin: 0;
|
|
font-family: Inter, "Segoe UI", Arial, sans-serif;
|
|
background: #070909;
|
|
color: #e7f0e9;
|
|
}
|
|
|
|
.history-page {
|
|
max-width: 1000px;
|
|
margin: 0 auto;
|
|
padding: 24px;
|
|
}
|
|
|
|
h1 {
|
|
margin: 0;
|
|
font-size: 0;
|
|
line-height: 1;
|
|
}
|
|
|
|
.brand-logo {
|
|
height: 34px;
|
|
width: auto;
|
|
display: block;
|
|
}
|
|
|
|
p {
|
|
color: #8ea292;
|
|
}
|
|
|
|
#historyList {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 14px;
|
|
}
|
|
|
|
.history-item {
|
|
border: 1px solid #1d2620;
|
|
border-radius: 12px;
|
|
padding: 10px;
|
|
background: #0d1210;
|
|
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.01);
|
|
}
|
|
|
|
.history-head {
|
|
display: flex;
|
|
gap: 10px;
|
|
align-items: center;
|
|
}
|
|
|
|
.history-info {
|
|
min-width: 0;
|
|
flex: 1;
|
|
}
|
|
|
|
.history-cover-image {
|
|
width: 44px;
|
|
height: 44px;
|
|
border-radius: 7px;
|
|
object-fit: cover;
|
|
border: 1px solid #243027;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.history-title {
|
|
margin: 0;
|
|
color: #eff8f1;
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
word-break: break-word;
|
|
line-height: 1.3;
|
|
}
|
|
|
|
.history-subtitle {
|
|
margin: 3px 0 0;
|
|
color: #94a89a;
|
|
font-size: 11px;
|
|
}
|
|
|
|
.history-badges {
|
|
margin-top: 8px;
|
|
display: flex;
|
|
gap: 6px;
|
|
}
|
|
|
|
.badge {
|
|
border: 1px solid #2d4f35;
|
|
background: #142219;
|
|
color: #bde6c6;
|
|
border-radius: 999px;
|
|
padding: 2px 8px;
|
|
font-size: 10px;
|
|
letter-spacing: 0.01em;
|
|
}
|
|
|
|
.history-tags {
|
|
margin: 4px 0 0;
|
|
color: #b3c9b8;
|
|
font-size: 11px;
|
|
line-height: 1.3;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.download-icon-btn {
|
|
width: 44px;
|
|
height: 44px;
|
|
border: 1px solid #2f9e5a;
|
|
background: #1b7f45;
|
|
color: #f1fff4;
|
|
border-radius: 10px;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
cursor: pointer;
|
|
flex-shrink: 0;
|
|
transition: background 120ms ease, transform 120ms ease;
|
|
}
|
|
|
|
.download-icon-btn:hover {
|
|
background: #249452;
|
|
transform: translateY(-1px);
|
|
}
|
|
|
|
.download-icon-btn:active {
|
|
transform: translateY(0);
|
|
}
|