/* change primary & info color for light mode*/ html[data-theme="light"] { --pst-color-primary: rgb(1, 113, 195); --pst-color-info: rgb(1, 113, 195); } /* ectra css variables */ :root { --pst-color-info-tiny-opacity: rgba(1, 113, 195, 0.1); --pst-color-info-low-opacity: rgba(1, 113, 195, 0.25); } /* align items in the left part of header to the ground*/ .bd-header #navbar-start { align-items: end; } /* for version badge, possible for other badges*/ .version-badge{ border: 1px solid var(--pst-color-primary); border-radius: 0.25rem; color: var(--pst-color-primary); padding: 0.1rem 0.25rem; font-size: var(--pst-font-size-milli); } /* for card components */ .bd-content .sd-card { border: none; border-left: .2rem solid var(--pst-color-info-low-opacity); } .bd-content .sd-card .sd-card-header{ background-color: var(--pst-color-info-tiny-opacity); border: none; } .bigdl-link-card:hover{ border-left: .2rem solid var(--pst-color-info); } /* for sphinx-design badge components (customized for usage in card footer)*/ .sd-badge{ padding: .35em 0em; font-size: 0.9em; } /* for landing page side bar */ .bigdl-quicklinks-section-nav{ padding-bottom: 0.5rem; padding-left: 1rem; } .bigdl-quicklinks-section-title{ color: var(--pst-color-primary); } /* force long parameter definition (which occupy a whole line) to break in api documents for class/method */ .sig-object{ overflow-wrap: break-word; }