mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
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:
parent
c22802eac9
commit
9e99683915
1 changed files with 27 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue