Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
108 changes: 106 additions & 2 deletions assets/scss/_browser.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
.browser-shell {
position: relative;
max-width: 980px;
height:600px;
margin: 48px auto 0;
border-radius: 22px;
overflow: hidden;
Expand Down Expand Up @@ -75,7 +76,7 @@

.browser-body {
position: relative;
min-height: 440px;
min-height: 540px;
padding: 64px 32px;
display: grid;
place-items: center;
Expand Down Expand Up @@ -281,4 +282,107 @@
// box-shadow: inset 0 0 10px rgba(250, 250, 250, 0.45);
background: linear-gradient(to right,rgba(170, 204, 172, 0.082),color-mix(in srgb,#000 88%,#fff),rgba(170, 204, 172, 0.082));

}
}

.hero-visual {
display: grid;
gap: 24px;
}

.canvas-preview {
padding: 22px;
display: grid;
gap: 16px;
}

.canvas-header {
display: flex;
justify-content: space-between;
font-size: 0.95rem;
color: var(--muted);
}

.status {
padding: 4px 10px;
border-radius: 999px;
border: 1px solid rgba(255, 255, 255, 0.2);
background: rgba(0, 211, 169, 0.15);
color: var(--accent-3);
font-size: 0.75rem;
}

.canvas-grid {
position: relative;
height: 450px;
border-radius: 16px;
background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
background-size: 48px 48px;
overflow: hidden;
}

.node {
position: absolute;
width: 34px;
height: 34px;
border-radius: 12px;
background: linear-gradient(120deg, rgba(0, 179, 159, 0.9), rgba(0, 211, 169, 0.9));
box-shadow: 0 12px 28px rgba(0, 22, 24, 0.5);
}

.node--a {
top: 24px;
left: 32px;
}

.node--b {
top: 48px;
right: 168px;
background: linear-gradient(120deg, rgba(158, 255, 236, 0.9), rgba(0, 179, 159, 0.9));
}

.node--c {
bottom: 36px;
left: 64px;
background: radial-gradient( circle at 30% 130%, rgba(23, 36, 33, 0.9), rgba(91, 24, 1, 0.9));
}

.node--d {
bottom: 68px;
right: 106px;
}

.node--e {
top: 96px;
left: 50%;
transform: translateX(-50%);
background: linear-gradient(120deg, rgba(0, 179, 159, 0.9), rgba(158, 255, 236, 0.9));
}

.connector {
position: absolute;
height: 2px;
background: linear-gradient(90deg, rgba(0, 179, 159, 0.8), rgba(0, 211, 169, 0.2));
opacity: 0.8;
}

.connector--one {
top: 52px;
left: 60px;
width: 180px;
transform: rotate(6deg);
}

.connector--two {
top: 138px;
left: 90px;
width: 140px;
transform: rotate(-24deg);
}

.connector--three {
bottom: 62px;
left: 80px;
width: 220px;
transform: rotate(-10deg);
}
125 changes: 121 additions & 4 deletions assets/scss/_customers.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,9 @@
}

.customers-title {
color: $casper;
color: $white;
font-family: $font-qanelas;
font-size: $font-size-base * .875;
margin-bottom: $spacer * 2;
text-transform: uppercase;
}

.marquee-viewport {
Expand All @@ -36,4 +34,123 @@
backface-visibility: hidden;
}
}
}
}

.header-bottom-content-wrp {
width: 95%;
margin-bottom: 0;
padding-left: 3rem;
}

.header-bottom-left-content-wrapper {
grid-column-gap: 1.875rem;
grid-row-gap: 1.875rem;
flex-flow: column;
justify-content: flex-start;
align-items: flex-start;
max-width: 38%;
display: flex;
}

.number-item {
-webkit-backdrop-filter: blur(5px);
backdrop-filter: blur(5px);
background-color: #0101011a;
border: 1px solid #ffffff1a;
border-radius: .75rem;
padding: 1.0625rem 4rem 1.0625rem 1.875rem;
position: relative;
overflow: hidden;
max-width: 70px;

&::after {
content: "";
position: absolute;
bottom: -220%;
width: 300px;
height: 300px;
background: radial-gradient(
circle,
rgba(0, 179, 159, 0.6) 40%,
rgba(0, 179, 159, 0.35) 40%,
rgba(0, 179, 159, 0.15) 55%,
transparent 70%
);
pointer-events: none;
z-index: 0;
}
}

.number-content {
grid-column-gap: .875rem;
grid-row-gap: .875rem;
flex-flow: column;
justify-content: flex-start;
align-items: flex-start;
display: flex;
}

.heading-style-h3 {
background-clip: text;
margin-top: 0;
margin-bottom: 0;
font-weight: 600;
font-size: 2rem;
}

.text-size-small.text-color-white {
background-image: linear-gradient(180deg, var(#ffffff));
-webkit-background-clip: text;
background-clip: text;
font-weight: 400;
}

.bg-coloer-image {
position: absolute;
bottom: 0;
right: 0;
}

.number-line {
background-color: #00b39f;
width: 2px;
height: 48px;
position: absolute;
top: 6px;
left: 0;
border-start-end-radius: 2px;
}

.text-size-regular.text-color-white-200 {
color: $casper;
}

.stat-animate-out {
animation: floatOut 0.4s ease forwards;
}

.stat-animate-in {
animation: floatIn 0.6s ease forwards;
}

@keyframes floatOut {
0% {
opacity: 1;
transform: translateY(0);
}
100% {
opacity: 0;
transform: translateY(-20px);
}
}

@keyframes floatIn {
0% {
opacity: 0;
transform: translateY(20px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
Loading