Skip to content
Merged
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
12 changes: 12 additions & 0 deletions website/src/components/HomepageFeatures/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,19 @@
padding: 4.5rem 0;
width: 100%;
background-color: var(--ifm-background-color);
background-image:
linear-gradient(to right, rgba(38, 59, 170, 0.035) 1px, transparent 1px),
linear-gradient(to bottom, rgba(38, 59, 170, 0.035) 1px, transparent 1px);
background-size: 40px 40px;
background-position: center top;
border-top: 1px solid var(--border-subtle);
position: relative;
}

[data-theme='dark'] .featuresSection {
background-image:
linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
}

.sectionHeader {
Expand Down
25 changes: 24 additions & 1 deletion website/src/pages/index.module.css
Original file line number Diff line number Diff line change
@@ -1,14 +1,37 @@
.heroBanner {
padding: 4.5rem 0 3.5rem;
padding: 5rem 0 4rem;
background-color: var(--hero-bg);
background-image:
linear-gradient(to right, rgba(38, 59, 170, 0.05) 1px, transparent 1px),
linear-gradient(to bottom, rgba(38, 59, 170, 0.05) 1px, transparent 1px);
background-size: 40px 40px;
background-position: center top;
border-bottom: 1px solid var(--border-subtle);
position: relative;
overflow: hidden;
}

.heroBanner::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(circle at 50% 35%, transparent 25%, var(--hero-bg) 85%);
pointer-events: none;
}

[data-theme='dark'] .heroBanner {
background-image:
linear-gradient(to right, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
linear-gradient(to bottom, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
}

.heroContent {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
position: relative;
z-index: 1;
}

.versionBadge {
Expand Down
Loading