starter-kit/documents/_static/css/custom.css
Nick Touran 373dfe4c3b Lots more Document data definition
Schedule updates:

* Defined Schedule types
* Updated schedule loader to validate with pydantic
* Added ability to specify predecessor type and lead/lag

Other structural/outline stuff as well

Oh and added a unit test.
2025-12-19 14:15:07 -05:00

20 lines
No EOL
515 B
CSS

/*
Add brand colors here
See also: https://pydata-sphinx-theme.readthedocs.io/en/stable/user_guide/styling.html#color-variables
*/
html[data-theme="light"] {
--pst-color-primary: rgb(126, 3, 3);
--pst-color-secondary: rgb(218, 2, 2);
}
html[data-theme="dark"] {
--pst-color-primary: rgb(115, 199, 164);
--pst-color-secondary: rgb(21, 197, 124);
}
/* Additional customizations for nrsk */
dl.py.attribute {
/* Reduce the space between autodoc attrs */
margin-bottom: 0.5em !important;
}