Skip to content

Commit

Permalink
create downloadable button
Browse files Browse the repository at this point in the history
  • Loading branch information
sarbanandabhikkhu committed Apr 10, 2024
1 parent 1e8cb24 commit dbb8608
Show file tree
Hide file tree
Showing 8 changed files with 115,476 additions and 12 deletions.
50 changes: 49 additions & 1 deletion css/dictionary.css
Original file line number Diff line number Diff line change
@@ -1,11 +1,56 @@
@font-face {
font-family: "Roman-Script";
src: url("../fonts/Verajja-Regular.ttf") format("truetype");
}

*,
::before,
::after {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Roman-Script";
}
* {
-ms-overflow-style: none; /* Internet Explorer 10+ */
scrollbar-width: none; /* Firefox */
}
*::-webkit-scrollbar {
display: none; /* Safari and Chrome */
}

/* Action Panel */
.action-btn {
position: fixed;
top: 25px;
right: 5%;
padding: 5px;
border-radius: 5px;
background-color: transparent;

img {
width: 20px;
height: 20px;
}
}

.get-raw-xml {
position: absolute;
top: 55px;
right: 5%;
padding: 8px 12px;
border-radius: 5px;
box-shadow: 0px 2px 3px #0174fd;
}

/* dictionary panel */
#dic-panel {
position: fixed;
z-index: 100;
bottom: 0;
left: 0;
width: 100%;
height: 45%;
height: 50%;
background: rgba(252, 252, 252, 0.99);
box-shadow: 0 0 9px rgba(9, 9, 9, 0.3);
display: none;
Expand Down Expand Up @@ -51,7 +96,10 @@
}

#dic-body {
width: 100%;
height: 100%;
padding: 5px 10px;
overflow-y: scroll;

h3 {
color: #0174fd;
Expand Down
Loading

0 comments on commit dbb8608

Please sign in to comment.