daily bookmarks

This commit is contained in:
2025-12-04 12:56:32 +01:00
parent 839bd24309
commit 37badea913
6 changed files with 485 additions and 31 deletions

View File

@@ -120,6 +120,87 @@ a:hover {
border: 1px solid rgba(37, 99, 235, 0.15);
}
.auto-open-overlay {
position: fixed;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
padding: 24px;
background:
radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.12), transparent 42%),
radial-gradient(circle at 80% 30%, rgba(6, 182, 212, 0.12), transparent 38%),
rgba(15, 23, 42, 0.6);
z-index: 30;
opacity: 0;
pointer-events: none;
transition: opacity 0.25s ease;
}
.auto-open-overlay.visible {
opacity: 1;
pointer-events: auto;
}
.auto-open-overlay__panel {
width: min(940px, 100%);
background: linear-gradient(150deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.96));
border-radius: 22px;
padding: 38px 42px 40px;
box-shadow: 0 32px 90px rgba(15, 23, 42, 0.4);
border: 1px solid rgba(255, 255, 255, 0.6);
text-align: center;
cursor: pointer;
}
.auto-open-overlay__badge {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 8px 12px;
border-radius: 999px;
background: rgba(37, 99, 235, 0.12);
color: #0f172a;
font-weight: 700;
letter-spacing: 0.04em;
text-transform: uppercase;
font-size: 12px;
}
.auto-open-overlay__timer {
display: flex;
align-items: baseline;
justify-content: center;
gap: 12px;
margin: 18px 0 8px;
color: #0f172a;
}
.auto-open-overlay__count {
font-size: clamp(72px, 12vw, 120px);
line-height: 1;
font-weight: 700;
letter-spacing: -0.02em;
}
.auto-open-overlay__unit {
font-size: 22px;
color: var(--muted);
}
.auto-open-overlay__text {
margin: 0 auto;
color: #334155;
max-width: 700px;
font-size: 18px;
}
.auto-open-overlay__hint {
margin: 12px 0 0;
color: #475569;
font-size: 15px;
}
.hero__controls {
display: flex;
flex-wrap: wrap;
@@ -181,6 +262,19 @@ a:hover {
font-size: 13px;
}
.auto-open-toggle {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 13px;
color: var(--muted);
}
.auto-open-toggle input {
width: 16px;
height: 16px;
}
.bulk-actions select {
background: #fff;
border: 1px solid var(--border);
@@ -477,6 +571,10 @@ a:hover {
width: 180px;
}
.bookmark-table th.col-created {
width: 160px;
}
.bookmark-table th.col-last {
width: 220px;
}
@@ -659,6 +757,15 @@ a:hover {
color: var(--text);
}
.table-filter-row input[type="search"] {
width: 100%;
border-radius: 10px;
border: 1px solid var(--border);
padding: 8px 10px;
background: #fff;
color: var(--text);
}
.filter-hint {
font-size: 12px;
color: var(--muted);
@@ -666,8 +773,7 @@ a:hover {
letter-spacing: 0;
display: flex;
align-items: center;
gap: 8px;
justify-content: space-between;
justify-content: center;
}
.import-hint {