Skip to content

Instantly share code, notes, and snippets.

@nataliaconde
Created February 4, 2025 12:26
Show Gist options
  • Save nataliaconde/d893a8e4b8219325d6f9da9668a02600 to your computer and use it in GitHub Desktop.
Save nataliaconde/d893a8e4b8219325d6f9da9668a02600 to your computer and use it in GitHub Desktop.
/**/
.card{
display: flex;
flex-direction: column;
gap: 2rem;
padding: 1rem;
border-radius: 12px;
background-color: #ffffff;
margin-block-start: 2rem;
}
.card p{
font-weight: bold;
color: #e2e2e2;
font-size: 14px;
}
.card:hover{
filter: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04));
cursor: pointer;
}
.card-text{
display: flex;
flex-direction: column;
gap: 2rem;
align-items: center;
}
.buttons{
display: flex;
justify-content: center;
align-items: center;
}
.section{
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.section > * {
flex: 0 0 32%;
box-sizing: border-box;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment