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
45 changes: 45 additions & 0 deletions apps/web/src/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -68,3 +68,48 @@ a {
a:hover {
color: var(--primary-dark);
}


.premium-card {
background: #ffffff;
border-radius: 16px;
padding: 20px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
transition: all 0.3s ease;
}

.premium-card:hover {
transform: translateY(-5px);
box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.card-wrapper {
display: flex;
justify-content: center;
align-items: center;
padding: 40px;
}

.page-container {
background: #f9fafb;
min-height: 100vh;
}

.brand-text {
font-weight: 600;
font-size: 16px;
color: #374151;
}


button {
border-radius: 8px;
padding: 10px 16px;
background: #4f46e5;
color: white;
transition: 0.3s;
}

button:hover {
background: #4338ca;
}
44 changes: 44 additions & 0 deletions apps/web/src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,15 @@
padding: 3rem 0;
}

@media (max-width: 640px) {
.features {
display: grid;
grid-template-columns: 1fr; /* single column */
gap: 16px;
padding: 0 12px;
}
}

.feature-card {
background: var(--bg-card);
border: 1px solid var(--border);
Expand All @@ -266,6 +275,41 @@
border-color 0.2s ease;
}

.feature-card {
min-height: 140px;
padding: 16px;
}

.feature-card {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: 2rem;
min-height: 140px;

/* normal shadow (very light) */
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);

/* smooth transition */
transition: all 0.25s ease;
}



.feature-card:hover {
/* halka lift */
transform: translateY(-3px);

/* stronger but soft shadow */
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

@media (max-width: 640px) {
.feature-card {
margin-bottom: 12px;
}
}

.feature-card:hover {
transform: translateY(-4px);
border-color: var(--primary);
Expand Down