Compare commits

...

1 Commits

Author SHA1 Message Date
Ludwig Schubert 315e888810 Add DOI to bibtex citation; minor style fix 2017-11-07 15:13:04 -08:00
2 changed files with 6 additions and 3 deletions
+2 -1
View File
@@ -28,6 +28,7 @@ export function serializeFrontmatterToBibtex(frontMatter) {
title = {${frontMatter.title}}, title = {${frontMatter.title}},
journal = {${frontMatter.journal.title}}, journal = {${frontMatter.journal.title}},
year = {${frontMatter.publishedYear}}, year = {${frontMatter.publishedYear}},
note = {${frontMatter.url}} note = {${frontMatter.url}},
doi = {${frontMatter.doi}}
}`; }`;
} }
+4 -2
View File
@@ -105,14 +105,16 @@ figure svg text,
figure svg tspan { figure svg tspan {
} }
figcaption { figcaption,
.figcaption {
color: rgba(0, 0, 0, 0.6); color: rgba(0, 0, 0, 0.6);
font-size: 12px; font-size: 12px;
line-height: 1.5em; line-height: 1.5em;
} }
@media(min-width: 1024px) { @media(min-width: 1024px) {
figcaption { figcaption,
.figcaption {
font-size: 13px; font-size: 13px;
} }
} }