Fix non-working hover box; now in a weird in-between state, though.

This commit is contained in:
Ludwig Schubert
2017-10-10 12:30:36 -07:00
parent 044acd8f03
commit 0ab27e1382
7 changed files with 134 additions and 93 deletions
+45
View File
@@ -52,3 +52,48 @@ pre {
font-weight: 600;
color: rgba(0, 0, 0, 0.5);
}
/* Figure */
figure {
position: relative;
margin-bottom: 36px;
}
figure img {
width: 100%;
}
figure svg text,
figure svg tspan {
}
figure figcaption {
color: rgba(0, 0, 0, 0.6);
font-size: 12px;
line-height: 1.5em;
}
@media(min-width: 1024px) {
figure figcaption {
font-size: 13px;
}
}
figure.external img {
background: white;
border: 1px solid rgba(0, 0, 0, 0.1);
box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
padding: 18px;
box-sizing: border-box;
}
figure figcaption a {
color: rgba(0, 0, 0, 0.6);
}
figure figcaption b {
font-weight: 600;
color: rgba(0, 0, 0, 1.0);
}