11
0
Fork 0
mirror of https://github.com/ChaosChemnitz/interfug15 synced 2025-06-28 13:36:07 +02:00

jetzt mit 100% mehr Tooltips und in hübsch

This commit is contained in:
root 2015-07-23 14:49:41 +02:00
parent 26667fe239
commit 958fa1173d
2 changed files with 38 additions and 2 deletions

View file

@ -184,6 +184,42 @@
overflow:hidden;
}
.quicktip{
display: inline;
position: relative;
}
.quicktip:hover:after{
background: #333;
background: rgba(0,0,0,.8);
border-radius: 5px;
bottom: 26px;
color: #ff0;
font-weight: bold;
content: attr(title);
left: 20%;
padding: 5px 15px;
position: absolute;
z-index: 98;
width: 220px;
}
.quicktip:hover:before{
border: solid;
border-color: #333 transparent;
border-width: 6px 6px 0 6px;
bottom: 20px;
content: "";
left: 50%;
position: absolute;
z-index: 99;
}
/*********************************************************************************/