Merge branch 'master' of ssh://gitlab-fnwi.uva.nl:1337/11166932/WebDB into marijn-chat

This commit is contained in:
Marijn Jansen
2017-01-11 15:26:46 +01:00
6 changed files with 203 additions and 0 deletions

View File

@@ -35,6 +35,7 @@ body {
}
.content {
padding: 20px;
margin-top: 80px;
margin-left: 256px;
min-height: 100%;
@@ -117,3 +118,26 @@ td {
text-align: left;
font-weight: normal;
}
/* Custom title box, appears instantaneously */
a:hover {
position: relative;
}
a[data-title]:hover:after {
content: attr(data-title);
padding: 4px 4px;
color: #FFFFFF;
position: absolute;
left: 0;
top: 100%;
z-index: 20;
white-space: nowrap;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
-moz-box-shadow: 0px 0px 4px #222;
-webkit-box-shadow: 0px 0px 4px #222;
box-shadow: 0px 0px 4px #222;
background-color: #333;
}