Skip to content

Commit

Permalink
mod paper data
Browse files Browse the repository at this point in the history
  • Loading branch information
atsuyaw committed Oct 16, 2023
1 parent 8e7a857 commit 6d44dfa
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions static/sass/custom.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
.tooltip {
position: relative;
cursor: pointer;
}

.tooltip-text {
visibility: hidden;
position: absolute;
left: 50%;
bottom: -6ex;
padding: 1ex 1em;
font-size: 1rem;
background: #000000aa;
color: #fff;
border-radius: .5em;
transition: 0.3s ease-in;
}

.tooltip:hover .tooltip-text {
visibility: visible;
}

0 comments on commit 6d44dfa

Please sign in to comment.