diff --git a/docs/style.css b/docs/css/banner.css similarity index 52% rename from docs/style.css rename to docs/css/banner.css index 1e98ae2ff..093d9b797 100644 --- a/docs/style.css +++ b/docs/css/banner.css @@ -1,17 +1,3 @@ -/* Code highlighting -- target only inline code elements, not code blocks */ -p code:not(pre code), -table code:not(pre code), -li code:not(pre code), -h1 code:not(pre code), -h2 code:not(pre code), -h3 code:not(pre code), -h4 code:not(pre code), -h5 code:not(pre code), -h6 code:not(pre code) { - color: #f72585 !important; - background-color: rgba(247, 37, 133, 0.09); -} - /* Banner styling -- improve readability with better contrast */ #banner { background: #f1f5f9 !important; @@ -79,41 +65,3 @@ h6 code:not(pre code) { color: #f1f5f9 !important; } -/* Version badge -- display a badge with the current version of the documentation */ -.version-badge { - display: inline-block; - align-items: center; - gap: 0.3em; - font-size: 1em; - margin-top: 0px; - margin-bottom: 0px; - padding-top: 6px; - padding-bottom: 6px; - padding-left: 20px; - padding-right: 20px; - font-family: "Inter", sans-serif; - color: #ff5400; - background: #fef2f2; - border: 1px solid rgba(220, 38, 38, 0.3); - border-radius: 12px; - box-shadow: none; - vertical-align: middle; - position: relative; - transition: box-shadow 0.2s, transform 0.15s; -} - -.version-badge-container { - margin: 0; - padding: 0; -} - -.version-badge:hover { - box-shadow: 0 2px 8px 0 rgba(160, 132, 252, 0.1); - transform: translateY(-1px) scale(1.03); -} - -.dark .version-badge { - color: #f1f5f9; - background: #334155; - border: 1px solid #64748b; -} diff --git a/docs/css/python-sdk.css b/docs/css/python-sdk.css new file mode 100644 index 000000000..72a64c21a --- /dev/null +++ b/docs/css/python-sdk.css @@ -0,0 +1,3 @@ +a:has(svg.icon) { + border: none !important; +} \ No newline at end of file diff --git a/docs/css/style.css b/docs/css/style.css new file mode 100644 index 000000000..9716917b1 --- /dev/null +++ b/docs/css/style.css @@ -0,0 +1,13 @@ +/* Code highlighting -- target only inline code elements, not code blocks */ +p code:not(pre code), +table code:not(pre code), +li code:not(pre code), +h1 code:not(pre code), +h2 code:not(pre code), +h3 code:not(pre code), +h4 code:not(pre code), +h5 code:not(pre code), +h6 code:not(pre code) { + color: #f72585 !important; + background-color: rgba(247, 37, 133, 0.09); +} diff --git a/docs/css/version-badge.css b/docs/css/version-badge.css new file mode 100644 index 000000000..daff22177 --- /dev/null +++ b/docs/css/version-badge.css @@ -0,0 +1,39 @@ +/* Version badge -- display a badge with the current version of the documentation */ +.version-badge { + display: inline-block; + align-items: center; + gap: 0.3em; + font-size: 1em; + margin-top: 0px; + margin-bottom: 0px; + padding-top: 6px; + padding-bottom: 6px; + padding-left: 20px; + padding-right: 20px; + font-family: "Inter", sans-serif; + color: #ff5400; + background: #fef2f2; + border: 1px solid rgba(220, 38, 38, 0.3); + border-radius: 12px; + box-shadow: none; + vertical-align: middle; + position: relative; + transition: box-shadow 0.2s, transform 0.15s; +} + +.version-badge-container { + margin: 0; + padding: 0; +} + +.version-badge:hover { + box-shadow: 0 2px 8px 0 rgba(160, 132, 252, 0.1); + transform: translateY(-1px) scale(1.03); +} + +.dark .version-badge { + color: #f1f5f9; + background: #334155; + border: 1px solid #64748b; +} +