Docs Cleanup

This commit is contained in:
David Haz
2025-07-12 15:28:52 +03:00
parent 62cdbc2dba
commit 056d2c0330
21 changed files with 365 additions and 588 deletions

View File

@@ -25,8 +25,28 @@ body {
}
.back-to-top {
background: #0b0b0b !important;
background: #0b0b0b;
aspect-ratio: 1;
font-weight: 500;
border-radius: 0.75rem;
border: 1px solid #142216;
width: 50px;
position: fixed;
right: 2.3em;
z-index: 98;
box-shadow: 10px 0 25px rgba(0, 0, 0, 0.2);
transition:
opacity 0.3s ease,
bottom 0.3s ease;
opacity: 0;
bottom: 1em;
cursor: default;
}
.back-to-top.visible {
opacity: 1;
bottom: 2.5em;
cursor: pointer;
}
@media (max-width: 640px) {

View File

@@ -212,6 +212,106 @@ div:has(> .props-table) {
background-color: #222;
}
.tabbed-layout {
width: 100%;
}
.tab-header {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.5rem 1rem;
border: 1px solid #142216;
border-radius: 10px;
font-size: 14px;
height: 36px;
color: #ffffff;
background: transparent;
transition: all 0.3s ease;
}
.tab-header:hover {
background: #142216;
}
.code-example {
margin: 1.2rem 0;
}
.code-section {
margin-bottom: 2rem;
}
.code-container {
position: relative;
margin-bottom: 1.2rem;
}
.code-wrapper {
position: relative;
overflow: hidden;
border: 1px solid #142216;
border-radius: 15px;
}
.code-wrapper.collapsed {
max-height: 600px;
}
.code-block {
overflow: hidden;
border: none;
border-radius: 15px;
}
.fade-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 60%;
background: linear-gradient(to bottom, transparent, #0b0b0b);
pointer-events: none;
z-index: 1;
}
.expand-button {
position: absolute;
bottom: 0.75rem;
right: 0.75rem;
padding: 0.5rem 1rem;
border-radius: 12px;
height: 2.5rem;
font-size: 14px;
font-weight: 500;
background-color: #0b0b0b;
border: 1px solid #142216;
color: white;
cursor: pointer;
z-index: 2;
transition: background-color 0.3s ease;
}
.expand-button:hover {
background-color: #111;
}
.expand-button:active {
background-color: #111;
}
.no-code {
display: flex;
align-items: center;
gap: 0.5rem;
color: #a1a1aa;
font-style: italic;
padding: 2rem;
background: #0b0b0b;
border: 1px solid #142216;
border-radius: 15px;
}
.demo-title {
font-weight: 900;
font-size: 1.6rem;