documentation structure

This commit is contained in:
David Haz
2025-07-08 23:34:52 +03:00
parent 9ddb731258
commit 660e4fd701
46 changed files with 3488 additions and 79 deletions

View File

@@ -11,7 +11,7 @@
padding: 0 4em;
height: 160px;
margin: 0 auto;
background: linear-gradient(to bottom, #0e0e0e, transparent);
background: linear-gradient(to bottom, #0b0b0b, transparent);
}
.header-container {
@@ -125,7 +125,7 @@
}
.cta-button span {
background-color: #0e0e0e;
background-color: #0b0b0b;
margin-left: 1em;
margin-right: calc(1em - 8px);
padding-top: .1em;

View File

@@ -175,7 +175,7 @@
.feature-card {
user-select: none;
background: #0e0e0e;
background: #0b0b0b;
border: 1px solid rgba(148, 184, 154, 0.2);
border-radius: 16px;
padding: 2rem;
@@ -357,7 +357,7 @@
left: 0;
right: 0;
height: 20%;
background: linear-gradient(to top, #0e0e0e 0%, transparent 100%);
background: linear-gradient(to top, #0b0b0b 0%, transparent 100%);
border-radius: 0 0 8px 8px;
pointer-events: none;
z-index: 2;
@@ -370,7 +370,7 @@
left: 0;
right: 0;
height: 20%;
background: linear-gradient(to bottom, #0e0e0e 0%, transparent 100%);
background: linear-gradient(to bottom, #0b0b0b 0%, transparent 100%);
border-radius: 8px 8px 0 0;
pointer-events: none;
z-index: 2;
@@ -410,7 +410,7 @@
left: 0;
right: 0;
height: 20%;
background: linear-gradient(to top, #0e0e0e 0%, transparent 100%);
background: linear-gradient(to top, #0b0b0b 0%, transparent 100%);
border-radius: 0 0 8px 8px;
pointer-events: none;
z-index: 2;
@@ -423,7 +423,7 @@
left: 0;
right: 0;
height: 20%;
background: linear-gradient(to bottom, #0e0e0e 0%, transparent 100%);
background: linear-gradient(to bottom, #0b0b0b 0%, transparent 100%);
border-radius: 8px 8px 0 0;
pointer-events: none;
z-index: 2;
@@ -462,7 +462,7 @@
left: 0;
right: 0;
height: 20%;
background: linear-gradient(to top, #0e0e0e 0%, transparent 100%);
background: linear-gradient(to top, #0b0b0b 0%, transparent 100%);
border-radius: 0 0 8px 8px;
pointer-events: none;
z-index: 2;
@@ -475,7 +475,7 @@
left: 0;
right: 0;
height: 20%;
background: linear-gradient(to bottom, #0e0e0e 0%, transparent 100%);
background: linear-gradient(to bottom, #0b0b0b 0%, transparent 100%);
border-radius: 8px 8px 0 0;
pointer-events: none;
z-index: 2;

View File

@@ -3,7 +3,7 @@
margin-top: 8rem;
padding: 2.4rem;
border-top: 1px solid rgba(149, 184, 148, 0.1);
background: linear-gradient(to bottom, transparent, #0e0e0e);
background: linear-gradient(to bottom, transparent, #0b0b0b);
z-index: 220;
}

View File

@@ -16,7 +16,7 @@
<span>Browse Components</span>
<div class="button-arrow-circle">
<svg width="16" height="16" viewBox="0 0 16 16" fill="#ffffff" xmlns="http://www.w3.org/2000/svg">
<path d="M6 12L10 8L6 4" stroke="#4c1d95" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
<path d="M6 12L10 8L6 4" stroke="#0b0b0b" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</div>
</router-link>

View File

@@ -57,7 +57,7 @@
}
.start-building-title {
color: #0e0e0e;
color: #0b0b0b;
font-size: 2.6rem;
font-weight: 600;
margin: 0;
@@ -65,7 +65,7 @@
}
.start-building-subtitle {
color: #0e0e0e;
color: #0b0b0b;
font-size: 1.2rem;
font-weight: 500;
margin: -1rem 0 0 0;
@@ -76,8 +76,8 @@
.start-building-button {
background: transparent;
color: #0e0e0e;
border: 2px solid #0e0e0e;
color: #0b0b0b;
border: 2px solid #0b0b0b;
padding: .6rem 1.6rem;
font-size: 1.1rem;
font-weight: 600;
@@ -87,7 +87,7 @@
}
.start-building-button:hover {
background: #0e0e0e;
background: #0b0b0b;
color: #27FF64;
}