Added tooltips to roundend traitor purchase logs

This commit is contained in:
oranges
2018-01-14 16:43:11 -06:00
committed by CitadelStationBot
parent f9b7d872e6
commit ef200d44c5
4 changed files with 298 additions and 67 deletions
+25
View File
@@ -64,4 +64,29 @@ li {
body {
background-color: #272727;
color: #efefef;
}
.tooltip_container {
position: relative;
font-size: 24px;
}
.tooltip_hover {
visibility: hidden;
position: absolute;
background-color: black;
z-index: 1;
width: 220px;
font-size: 14px;
border-width: 4px;
border-style: solid;
border-color: #272727;
background: #363636;
color: white;
top: 100%;
left: 30px;
}
.tooltip_container:hover .tooltip_hover {
visibility: visible;
}