Created
February 4, 2025 12:26
-
-
Save nataliaconde/d893a8e4b8219325d6f9da9668a02600 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/**/ | |
.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