Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
add: search page styles for sutta finder button
  • Loading branch information
DylanAustin-TheDreamer committed Mar 24, 2026
commit c38ae12faab76f02a7d2dfcce4612eb7a7c8d842
16 changes: 16 additions & 0 deletions assets/css/search.scss
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,21 @@
.instructions {
font-family: $base-font-family;
}
/* Dylan's edit - line 28 - 44 */
.sutta-finder{
border: 2px solid black;
padding: 20px;
}
.btn{
border-radius: 8px;
background-color: $banner-color;
padding: 10px;
color: white;
transition: transform ease-in-out 0.3s, box-shadow ease-in-out 0.3s;
}
.btn:hover{
transform: translateY(-4px);
box-shadow: 0px 12px 5px -6px rgba(0,0,0, 0.3);
}
}