Skip to content

Commit

Permalink
better tarot site
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelpadilla committed Sep 22, 2024
1 parent 3322f3f commit 8343e09
Show file tree
Hide file tree
Showing 80 changed files with 242 additions and 93 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Projects/Academic_Tarot_Cards/allcards/Chaos.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Projects/Academic_Tarot_Cards/allcards/Death.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Projects/Academic_Tarot_Cards/allcards/Growth.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Projects/Academic_Tarot_Cards/allcards/Hope.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Projects/Academic_Tarot_Cards/allcards/Life.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Projects/Academic_Tarot_Cards/allcards/Love.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Projects/Academic_Tarot_Cards/allcards/Time.jpg
317 changes: 226 additions & 91 deletions Projects/Academic_Tarot_Cards/index.html

Large diffs are not rendered by default.

18 changes: 16 additions & 2 deletions Source/CSS/style_new.css
Original file line number Diff line number Diff line change
Expand Up @@ -520,16 +520,30 @@ footer {
min-width: 150px; /* Ensure that each card has at least a minimum width */
max-width: 200px; /* Optional: Ensure cards don't get too large on wide screens */
margin: 0; /* Remove any additional margin */
transition: transform 0.3s ease, box-shadow 0.3s ease;
border-radius: 10px;
}
.tarot-card-wrapper:hover {
border-radius: 10px;
transform: scale(1.3); /* Zoom the card slightly */
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6); /* Add shadow */
}

.tarot-card {
border: 1px solid rgba(0, 0, 0, 0.2);
/* border: 1px solid rgba(0, 0, 0, 0.2); */
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
/* box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); */
max-width: 100%;
height: auto;
}

.more-cards {
display: none;
}
/* Ensure cursor changes to pointer on hover */
#loadMoreBtn {
cursor: pointer;
}



Expand Down

0 comments on commit 8343e09

Please sign in to comment.