Merge pull request #18568 from overleaf/jel-cms-cards

[web] Add 2 new card style options for CMS

GitOrigin-RevId: d784d3f4860abf9553f1ab68e3edd29b93355a52
This commit is contained in:
Jessica Lawshe 2024-06-03 09:34:50 -05:00 committed by Copybot
parent c22802eac9
commit 9e99683915

View file

@ -94,3 +94,30 @@
border-radius: 24px;
}
}
.card {
&.card-dark-green-bg {
background: var(--dark-jungle-green);
border-radius: 16px;
color: white;
a:not(.btn) {
color: var(--mint-green);
&:hover {
color: var(--mint-green);
}
}
}
&.card-purple-top-border {
background-color: white;
border-radius: 8px;
height: 100%;
box-shadow:
0px 2px 4px 0px #1e253014,
0px 4px 12px 0px #1e25301f;
border-top: 8px solid var(--sapphire-blue);
padding: 32px 40px 32px 40px;
}
}