Skip to content

Commit 599458f

Browse files
committed
/
1 parent 887261f commit 599458f

5 files changed

Lines changed: 538 additions & 18 deletions

File tree

css/style.css

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,20 @@
2121
--radius: 0px;
2222
}
2323

24+
[data-theme="light"] {
25+
--bg: #ffffff;
26+
--bg-2: #f9f9f9;
27+
--panel: #ffffff;
28+
--panel-soft: #f8f8f8;
29+
--edge: #333333;
30+
--edge-hot: #000000;
31+
--accent: #007bff;
32+
--accent-2: #0056b3;
33+
--accent-3: #003d82;
34+
--text: #000000;
35+
--muted: #666666;
36+
}
37+
2438
* {
2539
margin: 0;
2640
padding: 0;
@@ -504,6 +518,34 @@ main {
504518
line-height: 1.65;
505519
}
506520

521+
.link-thumbnail {
522+
max-width: 200px;
523+
height: auto;
524+
margin-bottom: 1rem;
525+
border-radius: 8px;
526+
display: block;
527+
}
528+
529+
.tag-cloud {
530+
display: flex;
531+
flex-wrap: wrap;
532+
gap: 0.5rem;
533+
}
534+
535+
.tag-link {
536+
background: var(--panel);
537+
border: 1px solid var(--edge);
538+
padding: 0.5rem 1rem;
539+
border-radius: 20px;
540+
text-decoration: none;
541+
color: var(--accent);
542+
transition: background 0.2s ease;
543+
}
544+
545+
.tag-link:hover {
546+
background: var(--bg-2);
547+
}
548+
507549
.link-item small {
508550
color: rgba(231, 239, 255, 0.6);
509551
font-family: 'Orbitron', 'IBM Plex Sans', sans-serif;

0 commit comments

Comments
 (0)