tangled
alpha
login
or
join now
finxol.io
/
bookmarker
0
fork
atom
A very simple bookmarking webapp
bookmarker.finxol.deno.net/
0
fork
atom
overview
issues
pulls
pipelines
fix: better broken image style
finxol.io
1 month ago
8a81a9fa
047fea39
verified
This commit was signed with the committer's
known signature
.
finxol.io
SSH Key Fingerprint:
SHA256:olFE3asYdoBMScuJOt60UxXdJ0RFdGv5kVKrdOtIcPI=
1/1
deploy.yaml
success
10s
+19
1 changed file
expand all
collapse all
unified
split
src
routes
index.css
+19
src/routes/index.css
···
95
95
}
96
96
97
97
.card-image {
98
98
+
position: relative;
98
99
width: 100%;
99
100
aspect-ratio: 16/9;
100
101
overflow: hidden;
101
102
background: oklch(from var(--primary) l c h / 0.05);
102
103
object-fit: cover;
104
104
+
105
105
+
&::before {
106
106
+
content: "";
107
107
+
font-size: 0;
108
108
+
}
109
109
+
110
110
+
&::after {
111
111
+
content: attr(alt);
112
112
+
position: absolute;
113
113
+
inset: 0;
114
114
+
display: grid;
115
115
+
place-items: center;
116
116
+
text-align: center;
117
117
+
border: 2px dashed;
118
118
+
border-radius: var(--radius) var(--radius) 0 0;
119
119
+
font-size: 1em;
120
120
+
white-space: pre-wrap;
121
121
+
}
103
122
}
104
123
105
124
.card-body {