papermario/docs/doxytheme/theme.css
Alex Bates 37f59877e5
Doxygen (#1142)
* use doxygen
* add documenting guide based on https://github.com/zeldaret/oot/blob/main/docs/Documenting.md
* exclude stdlib readme from doxygen
* refuse to configure matching iQue on macOS (EGCS compiler is not built for macOS, so iQue won't build. We still enable iQue builds on macOS by using gcc-papermario via --non-matching.)
* use proper doxygen bug comment style
* document common EVT API funcs nicely
* add doxygen ci
* add \vars command
2024-01-09 23:56:08 +00:00

19 lines
455 B
CSS

/* Fix scrollbar color */
:root { color-scheme: dark }
@media (prefers-color-scheme: light) {
:root { color-scheme: light }
}
.memname {
font-family: var(--font-family-monospace);
}
/* The alias @evtapi is used to mark EVT API functions with a .evtapi child */
.memitem:has(.evtapi) {
.memproto {
td.memname .el { display: none }
td.memname::before { content: "EVT_CALL(" }
td.memname::after { content: "," }
}
}