-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
110 lines (95 loc) · 2.49 KB
/
style.css
File metadata and controls
110 lines (95 loc) · 2.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
#sidebar,
#sidebar-content {
scrollbar-width: none;
scrollbar-color: transparent transparent;
}
#sidebar::-webkit-scrollbar,
#sidebar-content::-webkit-scrollbar {
width: 0;
height: 0;
}
#sidebar:hover,
#sidebar:focus-within,
#sidebar-content:hover,
#sidebar-content:focus-within {
scrollbar-width: thin;
scrollbar-color: rgba(160, 160, 160, 0.55) transparent;
}
#sidebar:hover::-webkit-scrollbar,
#sidebar:focus-within::-webkit-scrollbar,
#sidebar-content:hover::-webkit-scrollbar,
#sidebar-content:focus-within::-webkit-scrollbar {
width: 6px;
height: 6px;
}
#sidebar:hover::-webkit-scrollbar-track,
#sidebar:focus-within::-webkit-scrollbar-track,
#sidebar-content:hover::-webkit-scrollbar-track,
#sidebar-content:focus-within::-webkit-scrollbar-track {
background: transparent;
}
#sidebar:hover::-webkit-scrollbar-thumb,
#sidebar:focus-within::-webkit-scrollbar-thumb,
#sidebar-content:hover::-webkit-scrollbar-thumb,
#sidebar-content:focus-within::-webkit-scrollbar-thumb {
background: rgba(160, 160, 160, 0.55);
border-radius: 999px;
}
#sidebar:hover::-webkit-scrollbar-thumb:hover,
#sidebar:focus-within::-webkit-scrollbar-thumb:hover,
#sidebar-content:hover::-webkit-scrollbar-thumb:hover,
#sidebar-content:focus-within::-webkit-scrollbar-thumb:hover {
background: rgba(184, 184, 184, 0.72);
}
.link-cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 1rem;
margin: 1.25rem 0 2rem;
}
.link-cards--compact {
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 0.875rem;
}
.link-card {
display: flex;
flex-direction: column;
gap: 0.7rem;
min-height: 11.5rem;
padding: 1.4rem;
border: 1px solid rgba(255, 255, 255, 0.12);
border-radius: 1.5rem;
background: rgba(255, 255, 255, 0.02);
text-decoration: none;
transition: border-color 120ms ease, transform 120ms ease, background 120ms ease;
}
.link-card--compact {
min-height: 8.5rem;
padding: 1.05rem 1.15rem;
border-radius: 1.15rem;
}
.link-card:hover {
border-color: rgba(255, 255, 255, 0.24);
background: rgba(255, 255, 255, 0.035);
transform: translateY(-1px);
}
.link-card-title {
color: var(--text-primary);
font-weight: 700;
font-size: 1.05rem;
line-height: 1.3;
}
.link-card--compact .link-card-title {
font-size: 0.98rem;
}
.link-card-desc {
color: var(--text-secondary);
line-height: 1.55;
}
.link-card-kicker {
color: var(--primary-light);
font-size: 0.78rem;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
}