Skip to content

Commit

Permalink
Merge pull request #77 from KastroWalker/favorite-cards
Browse files Browse the repository at this point in the history
Função para adicionar card como favorito
  • Loading branch information
levxyca authored Nov 8, 2023
2 parents fc8d116 + 31ab39d commit d411299
Show file tree
Hide file tree
Showing 6 changed files with 441 additions and 71 deletions.
50 changes: 50 additions & 0 deletions assets/css/cookies.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
.cookies-message {
margin: 10px 0px;
font-size: 16px;
}

.cookies-container {
position: fixed;
width: 100%;
bottom: 2rem;
z-index: 1000;
display: none;
}

.cookies-content {
box-shadow: 0 1px 3px #6e6197;
background-color: #fff;
border: 1px solid #6e6197;
max-width: 520px;
border-radius: 5px;
padding: 1rem;
margin: 0 auto;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
opacity: 0;
transform: translateY(1rem);
animation: slideUp 0.5s forwards;
}

@keyframes slideUp {
to {
transform: initial;
opacity: initial;
}
}

.cookies-accept-button {
background-color: #6e6197;
color: #fff;
font-size: 16px;
padding: 10px 10px;
border-radius: 5px;
border: none;
margin: 0 10px;
}

.cookies-accept-button:hover {
cursor: pointer;
}
14 changes: 13 additions & 1 deletion assets/css/style.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit d411299

Please sign in to comment.