mirror of
https://github.com/dergigi/boris.git
synced 2026-01-11 10:54:49 +01:00
- Add padding: 0 and box-sizing: border-box to .icon-button - Add box-sizing: border-box to .profile-avatar - Update .sidebar-header-bar .toggle-sidebar-btn to use fixed width/height instead of min values - Add explicit styling for .bookmarks-container.collapsed .toggle-sidebar-btn - Ensure borders don't add to total dimensions (33px x 33px including borders)
799 lines
13 KiB
CSS
799 lines
13 KiB
CSS
:root {
|
|
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
|
|
line-height: 1.5;
|
|
font-weight: 400;
|
|
|
|
color-scheme: light dark;
|
|
color: rgba(255, 255, 255, 0.87);
|
|
background-color: #242424;
|
|
|
|
font-synthesis: none;
|
|
text-rendering: optimizeLegibility;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
-webkit-text-size-adjust: 100%;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
min-width: 320px;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
#root {
|
|
max-width: 1280px;
|
|
margin: 0 auto;
|
|
padding: 2rem;
|
|
}
|
|
|
|
.app {
|
|
text-align: center;
|
|
position: relative;
|
|
}
|
|
|
|
.app header {
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.app header h1 {
|
|
font-size: 2.5rem;
|
|
margin: 0;
|
|
color: #646cff;
|
|
}
|
|
|
|
.app header p {
|
|
margin: 0.5rem 0 0 0;
|
|
color: #888;
|
|
}
|
|
|
|
/* Login Styles */
|
|
.login-container {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
min-height: 50vh;
|
|
}
|
|
|
|
.login-card {
|
|
background: #1a1a1a;
|
|
padding: 2rem;
|
|
border-radius: 8px;
|
|
border: 1px solid #333;
|
|
max-width: 400px;
|
|
width: 100%;
|
|
}
|
|
|
|
.login-card h2 {
|
|
margin: 0 0 1rem 0;
|
|
color: #fff;
|
|
}
|
|
|
|
.login-card p {
|
|
margin: 0 0 1.5rem 0;
|
|
color: #ccc;
|
|
}
|
|
|
|
.login-button {
|
|
background: #646cff;
|
|
color: white;
|
|
border: none;
|
|
padding: 0.75rem 1.5rem;
|
|
border-radius: 4px;
|
|
font-size: 1rem;
|
|
cursor: pointer;
|
|
transition: background-color 0.2s;
|
|
}
|
|
|
|
.login-button:hover:not(:disabled) {
|
|
background: #535bf2;
|
|
}
|
|
|
|
.login-button:disabled {
|
|
opacity: 0.6;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
/* Bookmarks Styles */
|
|
.bookmarks-container {
|
|
text-align: left;
|
|
}
|
|
|
|
.sidebar-header-bar {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 0.75rem;
|
|
padding: 0.75rem 1rem;
|
|
background: #1a1a1a;
|
|
border: 1px solid #333;
|
|
border-radius: 8px;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.profile-avatar {
|
|
width: 33px;
|
|
height: 33px;
|
|
border-radius: 6px;
|
|
overflow: hidden;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: #2a2a2a;
|
|
border: 1px solid #444;
|
|
flex-shrink: 0;
|
|
color: #ddd;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.profile-avatar img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.profile-avatar svg {
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.sidebar-header-bar .toggle-sidebar-btn {
|
|
background: transparent;
|
|
color: #ddd;
|
|
border: 1px solid #444;
|
|
padding: 0;
|
|
border-radius: 6px;
|
|
cursor: pointer;
|
|
transition: all 0.2s ease;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 33px;
|
|
height: 33px;
|
|
flex-shrink: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.sidebar-header-bar .toggle-sidebar-btn:hover {
|
|
background: #2a2a2a;
|
|
color: #fff;
|
|
}
|
|
|
|
.sidebar-header-bar .toggle-sidebar-btn:active {
|
|
transform: translateY(1px);
|
|
}
|
|
|
|
.bookmarks-container.collapsed {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: center;
|
|
padding-top: 1rem;
|
|
}
|
|
|
|
.bookmarks-container.collapsed .toggle-sidebar-btn {
|
|
background: #2a2a2a;
|
|
color: #ddd;
|
|
border: 1px solid #444;
|
|
padding: 0;
|
|
border-radius: 6px;
|
|
cursor: pointer;
|
|
transition: all 0.2s ease;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 33px;
|
|
height: 33px;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.bookmarks-container.collapsed .toggle-sidebar-btn:hover {
|
|
background: #333;
|
|
color: #fff;
|
|
}
|
|
|
|
.bookmarks-container.collapsed .toggle-sidebar-btn:active {
|
|
transform: translateY(1px);
|
|
}
|
|
|
|
.user-info {
|
|
margin: 0.5rem 0 0 0;
|
|
color: #888;
|
|
font-size: 0.9rem;
|
|
font-family: monospace;
|
|
}
|
|
|
|
.bookmark-count {
|
|
color: #666;
|
|
font-size: 0.9rem;
|
|
margin: 0.5rem 0;
|
|
}
|
|
|
|
.event-link {
|
|
color: #8ab4f8;
|
|
text-decoration: none;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.event-link:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.bookmark-urls {
|
|
margin: 1rem 0;
|
|
}
|
|
|
|
.bookmark-urls h4 {
|
|
margin: 0 0 0.5rem 0;
|
|
font-size: 0.9rem;
|
|
color: #666;
|
|
}
|
|
|
|
.bookmark-url {
|
|
display: block;
|
|
margin: 0.25rem 0;
|
|
color: #007bff;
|
|
text-decoration: none;
|
|
word-break: break-all;
|
|
}
|
|
|
|
.bookmark-url:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.url-row {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.read-inline-btn {
|
|
background: #28a745;
|
|
color: white;
|
|
border: none;
|
|
padding: 0.25rem 0.5rem;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.read-inline-btn:hover {
|
|
background: #218838;
|
|
}
|
|
|
|
/* Generic IconButton styling */
|
|
.icon-button {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border: 1px solid #444;
|
|
border-radius: 6px;
|
|
background: #2a2a2a;
|
|
color: #ddd;
|
|
cursor: pointer;
|
|
min-width: 33px;
|
|
min-height: 33px;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.icon-button:hover { background: #333; }
|
|
.icon-button:active { transform: translateY(1px); }
|
|
|
|
.icon-button.primary { background: #646cff; color: white; border-color: #646cff; }
|
|
.icon-button.primary:hover { filter: brightness(1.05); }
|
|
|
|
.icon-button.success { background: #28a745; color: white; border-color: #28a745; }
|
|
.icon-button.success:hover { filter: brightness(1.05); }
|
|
|
|
.icon-button.ghost { background: #2a2a2a; }
|
|
|
|
.bookmark-events {
|
|
margin: 1rem 0;
|
|
}
|
|
|
|
.bookmark-events h4 {
|
|
margin: 0 0 0.5rem 0;
|
|
font-size: 0.9rem;
|
|
color: #666;
|
|
}
|
|
|
|
.event-ids {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.event-id {
|
|
background: #f5f5f5;
|
|
padding: 0.25rem 0.5rem;
|
|
border-radius: 4px;
|
|
font-family: monospace;
|
|
font-size: 0.8rem;
|
|
color: #666;
|
|
}
|
|
|
|
.more-events {
|
|
color: #999;
|
|
font-style: italic;
|
|
font-size: 0.8rem;
|
|
}
|
|
|
|
.parsed-content {
|
|
margin: 1rem 0;
|
|
line-height: 1.6;
|
|
word-wrap: break-word;
|
|
overflow-wrap: break-word;
|
|
word-break: break-word;
|
|
}
|
|
|
|
.nostr-mention {
|
|
color: #007bff;
|
|
text-decoration: none;
|
|
font-family: monospace;
|
|
background: #f8f9fa;
|
|
padding: 0.2rem 0.4rem;
|
|
border-radius: 3px;
|
|
font-size: 0.9rem;
|
|
word-wrap: break-word;
|
|
overflow-wrap: break-word;
|
|
word-break: break-word;
|
|
}
|
|
|
|
.nostr-mention:hover {
|
|
background: #e9ecef;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.nostr-link {
|
|
color: #007bff;
|
|
text-decoration: none;
|
|
word-wrap: break-word;
|
|
overflow-wrap: break-word;
|
|
word-break: break-word;
|
|
}
|
|
|
|
.nostr-link:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.logout-button {
|
|
background: #dc3545;
|
|
color: white;
|
|
border: none;
|
|
padding: 0.5rem 1rem;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
transition: background-color 0.2s;
|
|
}
|
|
|
|
.logout-button:hover {
|
|
background: #c82333;
|
|
}
|
|
|
|
.loading {
|
|
text-align: center;
|
|
padding: 2rem;
|
|
color: #ccc;
|
|
}
|
|
|
|
.empty-state {
|
|
text-align: center;
|
|
padding: 3rem;
|
|
color: #888;
|
|
}
|
|
|
|
.empty-state p {
|
|
margin: 0.5rem 0;
|
|
}
|
|
|
|
.bookmarks-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1.5rem;
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
/* Two-pane layout */
|
|
.two-pane {
|
|
display: grid;
|
|
grid-template-columns: 360px 1fr;
|
|
gap: 1rem;
|
|
align-items: start;
|
|
transition: grid-template-columns 0.3s ease;
|
|
}
|
|
|
|
.two-pane.sidebar-collapsed {
|
|
grid-template-columns: 60px 1fr;
|
|
}
|
|
|
|
.pane.sidebar {
|
|
position: sticky;
|
|
top: 1rem;
|
|
align-self: start;
|
|
}
|
|
|
|
.pane.main {
|
|
min-height: 60vh;
|
|
}
|
|
|
|
.content-panel {
|
|
background: #1a1a1a;
|
|
border: 1px solid #333;
|
|
border-radius: 12px;
|
|
padding: 1rem;
|
|
text-align: left;
|
|
}
|
|
|
|
.content-panel.empty {
|
|
color: #888;
|
|
}
|
|
|
|
.loading-spinner {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
color: #888;
|
|
}
|
|
|
|
.loading-spinner svg {
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.content-title {
|
|
margin: 0 0 1rem 0;
|
|
}
|
|
|
|
.content-html {
|
|
color: #ddd;
|
|
line-height: 1.6;
|
|
word-wrap: break-word;
|
|
overflow-wrap: break-word;
|
|
word-break: break-word;
|
|
}
|
|
|
|
.content-markdown {
|
|
color: #ddd;
|
|
line-height: 1.7;
|
|
}
|
|
|
|
/* Ensure content is left-aligned even if source markup uses center */
|
|
.content-panel .content-html *,
|
|
.content-panel .content-markdown * {
|
|
text-align: left !important;
|
|
}
|
|
|
|
.content-panel center,
|
|
.content-panel [align="center"] {
|
|
text-align: left !important;
|
|
}
|
|
|
|
/* Tame images from external content */
|
|
.content-panel .content-html img,
|
|
.content-panel .content-markdown img {
|
|
max-width: 100%;
|
|
max-height: 70vh;
|
|
height: auto;
|
|
width: auto;
|
|
display: block;
|
|
margin: 0.75rem 0;
|
|
border-radius: 6px;
|
|
}
|
|
|
|
.content-markdown h1,
|
|
.content-markdown h2,
|
|
.content-markdown h3,
|
|
.content-markdown h4 {
|
|
margin-top: 1.2rem;
|
|
}
|
|
|
|
.content-markdown p {
|
|
margin: 0.5rem 0;
|
|
}
|
|
|
|
.content-markdown a {
|
|
color: #8ab4f8;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.content-markdown a:hover { text-decoration: underline; }
|
|
|
|
.content-markdown pre,
|
|
.content-markdown code {
|
|
background: #111;
|
|
border: 1px solid #333;
|
|
border-radius: 6px;
|
|
}
|
|
|
|
.content-markdown pre {
|
|
padding: 0.75rem;
|
|
overflow: auto;
|
|
}
|
|
|
|
.content-markdown code {
|
|
padding: 0.1rem 0.3rem;
|
|
}
|
|
|
|
.bookmark-item {
|
|
background: #1a1a1a;
|
|
padding: 1.5rem;
|
|
border-radius: 12px;
|
|
transition: all 0.2s ease;
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.bookmark-item:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
|
|
}
|
|
|
|
.bookmark-item h3 {
|
|
margin: 0 0 0.5rem 0;
|
|
color: #fff;
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.bookmark-url {
|
|
color: #646cff;
|
|
text-decoration: none;
|
|
display: block;
|
|
margin-bottom: 0.5rem;
|
|
word-break: break-all;
|
|
}
|
|
|
|
.bookmark-url:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.bookmark-content {
|
|
color: #ccc;
|
|
margin: 0.5rem 0;
|
|
line-height: 1.4;
|
|
word-wrap: break-word;
|
|
overflow-wrap: break-word;
|
|
word-break: break-word;
|
|
}
|
|
|
|
.bookmark-meta {
|
|
color: #888;
|
|
font-size: 0.9rem;
|
|
margin-top: 0.5rem;
|
|
}
|
|
|
|
/* Individual Bookmarks Styles */
|
|
.individual-bookmarks {
|
|
margin: 1rem 0;
|
|
}
|
|
|
|
.individual-bookmarks h4 {
|
|
margin: 0 0 1rem 0;
|
|
font-size: 1rem;
|
|
color: #fff;
|
|
}
|
|
|
|
.bookmarks-grid {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.individual-bookmark {
|
|
background: #2a2a2a;
|
|
padding: 1.25rem;
|
|
border-radius: 8px;
|
|
transition: all 0.2s ease;
|
|
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
|
|
word-wrap: break-word;
|
|
overflow-wrap: break-word;
|
|
word-break: break-word;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.individual-bookmark:hover {
|
|
transform: translateY(-1px);
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
|
|
}
|
|
|
|
.bookmark-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 0.75rem;
|
|
flex-wrap: wrap;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.bookmark-type {
|
|
background: #646cff;
|
|
color: white;
|
|
padding: 0.25rem 0.5rem;
|
|
border-radius: 4px;
|
|
font-size: 0.8rem;
|
|
font-weight: 500;
|
|
text-transform: uppercase;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.25rem;
|
|
}
|
|
|
|
.bookmark-id {
|
|
font-family: monospace;
|
|
font-size: 0.8rem;
|
|
color: #888;
|
|
background: #1a1a1a;
|
|
padding: 0.25rem 0.5rem;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.bookmark-date {
|
|
font-size: 0.8rem;
|
|
color: #666;
|
|
}
|
|
|
|
.individual-bookmark .bookmark-content {
|
|
margin: 0.75rem 0;
|
|
color: #ccc;
|
|
line-height: 1.5;
|
|
word-wrap: break-word;
|
|
overflow-wrap: break-word;
|
|
word-break: break-word;
|
|
}
|
|
|
|
.expand-toggle {
|
|
margin: 0.25rem 0;
|
|
background: transparent;
|
|
border: none;
|
|
color: #888;
|
|
cursor: pointer;
|
|
width: 100%;
|
|
height: 22px; /* half of default icon button */
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.expand-toggle:hover {
|
|
color: #bbb;
|
|
}
|
|
|
|
.individual-bookmark .bookmark-meta {
|
|
display: flex;
|
|
gap: 1rem;
|
|
flex-wrap: wrap;
|
|
font-size: 0.8rem;
|
|
color: #888;
|
|
margin-top: 0.75rem;
|
|
}
|
|
|
|
.individual-bookmark .bookmark-meta span {
|
|
background: #1a1a1a;
|
|
padding: 0.25rem 0.5rem;
|
|
border-radius: 4px;
|
|
font-family: monospace;
|
|
}
|
|
|
|
.author-link {
|
|
color: #8ab4f8;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.author-link:hover { text-decoration: underline; }
|
|
|
|
.kind-icon {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 32px;
|
|
height: 32px;
|
|
border: 1px solid #444;
|
|
border-radius: 6px;
|
|
background: #2a2a2a;
|
|
color: #ddd;
|
|
}
|
|
|
|
.kind-icon svg {
|
|
font-size: 0.9rem;
|
|
color: #646cff;
|
|
}
|
|
|
|
.kind-icon-link {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.read-now {
|
|
margin-top: 0.75rem;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.read-now-button {
|
|
background: #28a745;
|
|
color: white;
|
|
border: none;
|
|
padding: 0.6rem 1rem;
|
|
border-radius: 6px;
|
|
cursor: pointer;
|
|
font-weight: 700;
|
|
letter-spacing: 0.5px;
|
|
transition: background-color 0.2s ease, transform 0.1s ease;
|
|
}
|
|
|
|
.read-now-button:hover {
|
|
background: #218838;
|
|
}
|
|
|
|
.read-now-button:active {
|
|
transform: translateY(1px);
|
|
}
|
|
|
|
/* Private Bookmark Styles */
|
|
.private-bookmark {
|
|
background: #2a2a2a;
|
|
}
|
|
|
|
.private-bookmark:hover {
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
.private-indicator {
|
|
margin-left: 0.5rem;
|
|
color: #ff6b6b;
|
|
}
|
|
|
|
@media (prefers-color-scheme: light) {
|
|
:root {
|
|
color: #213547;
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
.login-card,
|
|
.bookmark-item {
|
|
background: #f9f9f9;
|
|
border-color: #ddd;
|
|
}
|
|
|
|
.bookmarks-header {
|
|
border-bottom-color: #ddd;
|
|
}
|
|
|
|
.bookmark-item h3 {
|
|
color: #213547;
|
|
}
|
|
|
|
.bookmark-content {
|
|
color: #666;
|
|
}
|
|
|
|
.user-info {
|
|
color: #666;
|
|
}
|
|
|
|
.individual-bookmark {
|
|
background: #f5f5f5;
|
|
border-color: #ddd;
|
|
}
|
|
|
|
.individual-bookmark:hover {
|
|
border-color: #646cff;
|
|
}
|
|
|
|
.individual-bookmarks h4 {
|
|
color: #213547;
|
|
}
|
|
|
|
.individual-bookmark .bookmark-content {
|
|
color: #666;
|
|
}
|
|
|
|
.bookmark-id {
|
|
background: #e9ecef;
|
|
color: #666;
|
|
}
|
|
|
|
.individual-bookmark .bookmark-meta span {
|
|
background: #e9ecef;
|
|
color: #666;
|
|
}
|
|
|
|
.private-bookmark {
|
|
background: linear-gradient(135deg, #f5f5f5 0%, #e9ecef 100%);
|
|
}
|
|
}
|