Skip to content

Commit

Permalink
Created necessary CSS for pop up boxes that provide post identifiers.
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtoLabs committed Sep 14, 2018
1 parent 2286986 commit 3ac423c
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions website/css/info.css
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,27 @@ h1 {
padding-left: 3px;
padding-right: 3px;
}
.tooltip {

}
.tooltip .tooltiptext {
visibility: hidden;
background-color: #2d2d2d;
color: #fff;
border-radius: 3px;
width: 220px;
position: absolute;
z-index: 1;
padding: 10px;
font-weight: 300;
font-size: 13px;
opacity: 0;
transition: opacity 1s;
}
.tooltip:hover .tooltiptext {
visibility: visible;
opacity: 1;
}
#clearit {
clear: none;
}
Expand Down

0 comments on commit 3ac423c

Please sign in to comment.