simple CSS to make org-fc stuff more tolerable, hide drawers (but still render them, ugh)

main
Ryan Rix 2022-08-05 14:05:19 -07:00
parent a1e71a404a
commit 482f383a4e
2 changed files with 34 additions and 0 deletions

View File

@ -431,6 +431,25 @@ pre.sourceCode {
}
#+end_src
Various tweaks for [[id:2e31b385-a003-4369-a136-c6b78c0917e1][SRS]] and friends. I should do this in [[id:arcology/arroyo/hydrate][Rewriting and Hydrating the Pandoc HTML]]...
#+begin_src css :tangle arcology/static/css/app.css
.tag .smallcaps {
float: right;
font-variant-caps: small-caps;
padding: 0.25em;
}
.REVIEW_DATA.drawer {
display: none;
}
.fc-cloze {
font-style: normal;
text-decoration: underline;
}
#+end_src
[[id:arcology/fastapi/sitemap.html.j2][Sitemap]] should have a height:
#+begin_src css :mkdirp yes :tangle arcology/static/css/app.css

View File

@ -136,6 +136,21 @@ pre.sourceCode {
font-style: normal;
}
.tag .smallcaps {
float: right;
font-variant-caps: small-caps;
padding: 0.25em;
}
.REVIEW_DATA.drawer {
display: none;
}
.fc-cloze {
font-style: normal;
text-decoration: underline;
}
#sitemap-container {
height: 100%;
}